mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "FeatureFunction.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
/** base class for all stateless feature functions.
|
|
* eg. phrase table, word penalty, phrase penalty
|
|
*/
|
|
class StatelessFeatureFunction: public FeatureFunction
|
|
{
|
|
//All stateless FFs, except those that cache scores in T-Option
|
|
static std::vector<const StatelessFeatureFunction*> m_statelessFFs;
|
|
|
|
public:
|
|
static const std::vector<const StatelessFeatureFunction*>& GetStatelessFeatureFunctions() {
|
|
return m_statelessFFs;
|
|
}
|
|
|
|
StatelessFeatureFunction(const std::string &line);
|
|
StatelessFeatureFunction(size_t numScoreComponents, const std::string &line);
|
|
/**
|
|
* This should be implemented for features that apply to phrase-based models.
|
|
**/
|
|
virtual void EvaluateWhenApplied(const Hypothesis& hypo,
|
|
ScoreComponentCollection* accumulator) const = 0;
|
|
|
|
/**
|
|
* Same for chart-based features.
|
|
**/
|
|
virtual void EvaluateWhenApplied(const ChartHypothesis &hypo,
|
|
ScoreComponentCollection* accumulator) const = 0;
|
|
|
|
virtual bool IsStateless() const {
|
|
return true;
|
|
}
|
|
|
|
};
|
|
|
|
|
|
} // namespace
|
|
|