2013-05-25 02:57:06 +04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
#include "StatefulFeatureFunction.h"
|
2013-06-11 04:46:04 +04:00
|
|
|
#include "util/check.hh"
|
2013-05-25 02:57:06 +04:00
|
|
|
|
|
|
|
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)
|
2013-06-10 21:11:55 +04:00
|
|
|
: StatefulFeatureFunction("Distortion", 1, line) {
|
2013-06-11 04:46:04 +04:00
|
|
|
CHECK(m_args.size() == 0);
|
2013-06-10 21:11:55 +04:00
|
|
|
}
|
2013-05-25 02:57:06 +04:00
|
|
|
|
2013-05-30 15:51:40 +04:00
|
|
|
bool IsUseable(const FactorMask &mask) const {
|
|
|
|
return true;
|
|
|
|
}
|
2013-05-30 15:41:08 +04:00
|
|
|
|
2013-05-25 02:57:06 +04:00
|
|
|
static float CalculateDistortionScore(const Hypothesis& hypo,
|
2013-05-29 21:16:15 +04:00
|
|
|
const WordsRange &prev, const WordsRange &curr, const int FirstGapPosition);
|
2013-05-25 02:57:06 +04:00
|
|
|
|
|
|
|
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");
|
|
|
|
}
|
2013-05-25 02:57:06 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|