mosesdecoder/moses/FF/DistortionScoreProducer.h

49 lines
1.2 KiB
C
Raw Normal View History

#pragma once
#include <stdexcept>
#include <string>
#include "StatefulFeatureFunction.h"
#include "util/check.hh"
namespace Moses
{
class FFState;
class ScoreComponentCollection;
class Hypothesis;
class ChartHypothesis;
class WordsRange;
/** Calculates Distortion scores
*/
class DistortionScoreProducer : public StatefulFeatureFunction
{
public:
2013-05-29 21:16:15 +04:00
DistortionScoreProducer(const std::string &line)
: StatefulFeatureFunction("Distortion", 1, line) {
CHECK(m_args.size() == 0);
}
2013-05-30 15:51:40 +04:00
bool IsUseable(const FactorMask &mask) const {
return true;
}
static float CalculateDistortionScore(const Hypothesis& hypo,
2013-05-29 21:16:15 +04:00
const WordsRange &prev, const WordsRange &curr, const int FirstGapPosition);
virtual const FFState* EmptyHypothesisState(const InputType &input) const;
virtual FFState* Evaluate(
const Hypothesis& cur_hypo,
const FFState* prev_state,
ScoreComponentCollection* accumulator) const;
virtual FFState* EvaluateChart(
const ChartHypothesis& /* cur_hypo */,
int /* featureID - used to index the state in the previous hypotheses */,
ScoreComponentCollection*) const {
2013-05-29 21:16:15 +04:00
throw std::logic_error("DistortionScoreProducer not supported in chart decoder, yet");
}
};
}