2013-05-25 02:57:06 +04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
#include "StatefulFeatureFunction.h"
|
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
class FFState;
|
|
|
|
class ScoreComponentCollection;
|
|
|
|
class Hypothesis;
|
|
|
|
class ChartHypothesis;
|
|
|
|
class WordsRange;
|
|
|
|
|
|
|
|
/** Calculates Distortion scores
|
|
|
|
*/
|
|
|
|
class DistortionScoreProducer : public StatefulFeatureFunction
|
|
|
|
{
|
|
|
|
public:
|
2013-06-20 15:50:41 +04:00
|
|
|
DistortionScoreProducer(const std::string &line);
|
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-08-30 18:49:00 +04:00
|
|
|
|
|
|
|
void Evaluate(const InputType &input
|
2013-09-27 12:35:24 +04:00
|
|
|
, const InputPath &inputPath
|
|
|
|
, const TargetPhrase &targetPhrase
|
2013-12-03 19:50:41 +04:00
|
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
|
|
, ScoreComponentCollection *estimatedFutureScore = NULL) const
|
2013-08-30 18:49:00 +04:00
|
|
|
{}
|
|
|
|
void Evaluate(const Phrase &source
|
2013-09-27 12:35:24 +04:00
|
|
|
, const TargetPhrase &targetPhrase
|
|
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
|
|
, ScoreComponentCollection &estimatedFutureScore) const
|
2013-08-30 18:49:00 +04:00
|
|
|
{}
|
|
|
|
|
2013-05-25 02:57:06 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|