| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DISTILLABLE_PAGE_DETECTOR_H_ | 5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DISTILLABLE_PAGE_DETECTOR_H_ |
| 6 #define COMPONENTS_DOM_DISTILLER_CORE_DISTILLABLE_PAGE_DETECTOR_H_ | 6 #define COMPONENTS_DOM_DISTILLER_CORE_DISTILLABLE_PAGE_DETECTOR_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "components/dom_distiller/core/proto/adaboost.pb.h" | 12 #include "components/dom_distiller/core/proto/adaboost.pb.h" |
| 12 | 13 |
| 13 namespace dom_distiller { | 14 namespace dom_distiller { |
| 14 | 15 |
| 15 // DistillablePageDetector provides methods to identify whether or not a page is | 16 // DistillablePageDetector provides methods to identify whether or not a page is |
| 16 // likely to be distillable based on a vector of derived features (see | 17 // likely to be distillable based on a vector of derived features (see |
| 17 // dom_distiller::CalculateDerivedFeatures). It uses a simple AdaBoost-trained | 18 // dom_distiller::CalculateDerivedFeatures). It uses a simple AdaBoost-trained |
| 18 // model. | 19 // model. |
| 19 class DistillablePageDetector { | 20 class DistillablePageDetector { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 private: | 33 private: |
| 33 scoped_ptr<AdaBoostProto> proto_; | 34 scoped_ptr<AdaBoostProto> proto_; |
| 34 double threshold_; | 35 double threshold_; |
| 35 DISALLOW_COPY_AND_ASSIGN(DistillablePageDetector); | 36 DISALLOW_COPY_AND_ASSIGN(DistillablePageDetector); |
| 36 }; | 37 }; |
| 37 | 38 |
| 38 | 39 |
| 39 } // namespace dom_distiller | 40 } // namespace dom_distiller |
| 40 | 41 |
| 41 #endif // COMPONENTS_DOM_DISTILLER_CORE_DISTILLABLE_PAGE_DETECTOR_H_ | 42 #endif // COMPONENTS_DOM_DISTILLER_CORE_DISTILLABLE_PAGE_DETECTOR_H_ |
| OLD | NEW |