mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "FeatureFunction.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
/** base class for all stateful feature functions.
|
|
* eg. LM, distortion penalty
|
|
*/
|
|
class StatefulFeatureFunction: public FeatureFunction
|
|
{
|
|
//All statefull FFs
|
|
static std::vector<const StatefulFeatureFunction*> m_statefulFFs;
|
|
|
|
public:
|
|
static const std::vector<const StatefulFeatureFunction*>& GetStatefulFeatureFunctions() {
|
|
return m_statefulFFs;
|
|
}
|
|
|
|
StatefulFeatureFunction(const std::string& description, const std::string &line);
|
|
StatefulFeatureFunction(const std::string& description, size_t numScoreComponents, const std::string &line);
|
|
|
|
/**
|
|
* \brief This interface should be implemented.
|
|
* Notes: When evaluating the value of this feature function, you should avoid
|
|
* calling hypo.GetPrevHypo(). If you need something from the "previous"
|
|
* hypothesis, you should store it in an FFState object which will be passed
|
|
* in as prev_state. If you don't do this, you will get in trouble.
|
|
*/
|
|
virtual FFState* Evaluate(
|
|
const Hypothesis& cur_hypo,
|
|
const FFState* prev_state,
|
|
ScoreComponentCollection* accumulator) const = 0;
|
|
|
|
virtual FFState* EvaluateChart(
|
|
const ChartHypothesis& /* cur_hypo */,
|
|
int /* featureID - used to index the state in the previous hypotheses */,
|
|
ScoreComponentCollection* accumulator) const = 0;
|
|
|
|
//! return the state associated with the empty hypothesis for a given sentence
|
|
virtual const FFState* EmptyHypothesisState(const InputType &input) const = 0;
|
|
|
|
bool IsStateless() const {
|
|
return false;
|
|
}
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|