| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This proto represents a machine learning model which is used to compute | 5 // This proto represents a machine learning model which is used to compute |
| 6 // the probability that a particular page visited by Chrome is phishing. | 6 // the probability that a particular page visited by Chrome is phishing. |
| 7 // | 7 // |
| 8 // Note: sine the machine learning model is trained on the server-side and then | 8 // Note: sine the machine learning model is trained on the server-side and then |
| 9 // downloaded onto the client it is important that this proto file stays in | 9 // downloaded onto the client it is important that this proto file stays in |
| 10 // sync with the server-side copy. Otherwise, the client may not be able to | 10 // sync with the server-side copy. Otherwise, the client may not be able to |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 // Murmur hash seed that was used to hash the page words. | 89 // Murmur hash seed that was used to hash the page words. |
| 90 optional fixed32 murmur_hash_seed = 8; | 90 optional fixed32 murmur_hash_seed = 8; |
| 91 | 91 |
| 92 // Maximum number of unique shingle hashes per page. | 92 // Maximum number of unique shingle hashes per page. |
| 93 optional int32 max_shingles_per_page = 9 [default = 200]; | 93 optional int32 max_shingles_per_page = 9 [default = 200]; |
| 94 | 94 |
| 95 // The number of words in a shingle. | 95 // The number of words in a shingle. |
| 96 optional int32 shingle_size = 10 [default = 4]; | 96 optional int32 shingle_size = 10 [default = 4]; |
| 97 } | 97 } |
| OLD | NEW |