diff options
Diffstat (limited to 'extractor/scorer.h')
-rw-r--r-- | extractor/scorer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extractor/scorer.h b/extractor/scorer.h index c31db0ca..af8a3b10 100644 --- a/extractor/scorer.h +++ b/extractor/scorer.h @@ -14,14 +14,19 @@ namespace features { class FeatureContext; } // namespace features +/** + * Computes the feature scores for a source-target phrase pair. + */ class Scorer { public: Scorer(const vector<shared_ptr<features::Feature> >& features); virtual ~Scorer(); + // Computes the feature score for the given context. virtual vector<double> Score(const features::FeatureContext& context) const; + // Returns the set of feature names used to score any context. virtual vector<string> GetFeatureNames() const; protected: |