diff options
Diffstat (limited to 'extractor/scorer.cc')
-rw-r--r-- | extractor/scorer.cc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extractor/scorer.cc b/extractor/scorer.cc new file mode 100644 index 00000000..f28b3181 --- /dev/null +++ b/extractor/scorer.cc @@ -0,0 +1,26 @@ +#include "scorer.h" + +#include "features/feature.h" + +Scorer::Scorer(const vector<shared_ptr<Feature> >& features) : + features(features) {} + +Scorer::Scorer() {} + +Scorer::~Scorer() {} + +vector<double> Scorer::Score(const FeatureContext& context) const { + vector<double> scores; + for (auto feature: features) { + scores.push_back(feature->Score(context)); + } + return scores; +} + +vector<string> Scorer::GetFeatureNames() const { + vector<string> feature_names; + for (auto feature: features) { + feature_names.push_back(feature->GetName()); + } + return feature_names; +} |