2013-05-25 02:57:06 +04:00
|
|
|
#pragma once
|
|
|
|
|
2013-05-25 03:25:20 +04:00
|
|
|
#include <string>
|
|
|
|
#include "StatelessFeatureFunction.h"
|
|
|
|
|
2013-05-25 02:57:06 +04:00
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
class TargetPhrase;
|
|
|
|
class ScoreComponentCollection;
|
|
|
|
|
|
|
|
class WordPenaltyProducer : public StatelessFeatureFunction
|
|
|
|
{
|
2013-12-06 19:57:49 +04:00
|
|
|
protected:
|
|
|
|
static WordPenaltyProducer *s_instance;
|
|
|
|
|
2013-05-25 02:57:06 +04:00
|
|
|
public:
|
2013-12-06 19:57:49 +04:00
|
|
|
static const WordPenaltyProducer& Instance() {
|
|
|
|
return *s_instance;
|
|
|
|
}
|
|
|
|
static WordPenaltyProducer& InstanceNonConst() {
|
|
|
|
return *s_instance;
|
|
|
|
}
|
|
|
|
|
2013-06-20 15:50:41 +04:00
|
|
|
WordPenaltyProducer(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
|
|
|
|
2014-07-10 01:35:59 +04:00
|
|
|
virtual void EvaluateInIsolation(const Phrase &source
|
2013-05-29 21:16:15 +04:00
|
|
|
, const TargetPhrase &targetPhrase
|
|
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
|
|
, ScoreComponentCollection &estimatedFutureScore) const;
|
2014-07-10 02:41:08 +04:00
|
|
|
void EvaluateWhenApplied(const Hypothesis& hypo,
|
2013-09-27 12:35:24 +04:00
|
|
|
ScoreComponentCollection* accumulator) const
|
2013-08-30 18:49:00 +04:00
|
|
|
{}
|
2014-07-10 02:54:16 +04:00
|
|
|
void EvaluateWhenApplied(const ChartHypothesis &hypo,
|
2013-09-27 12:35:24 +04:00
|
|
|
ScoreComponentCollection* accumulator) const
|
2013-08-30 18:49:00 +04:00
|
|
|
{}
|
2014-07-10 02:06:54 +04:00
|
|
|
void EvaluateWithSourceContext(const InputType &input
|
2013-09-27 12:35:24 +04:00
|
|
|
, const InputPath &inputPath
|
|
|
|
, const TargetPhrase &targetPhrase
|
2014-05-08 20:51:45 +04:00
|
|
|
, const StackVec *stackVec
|
2013-12-03 19:50:41 +04:00
|
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
|
|
, ScoreComponentCollection *estimatedFutureScore = NULL) const
|
2013-08-30 18:49:00 +04:00
|
|
|
{}
|
2013-05-25 02:57:06 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|