2014-04-06 19:57:54 +04:00
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "StatelessFeatureFunction.h"
|
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
2014-04-11 00:34:34 +04:00
|
|
|
// the only thing this FF does is set TargetPhrase::m_ruleSource so that other FF can use it in Evaluate(Search).
|
2014-04-06 19:57:54 +04:00
|
|
|
class SetSourcePhrase : public StatelessFeatureFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SetSourcePhrase(const std::string &line);
|
|
|
|
|
|
|
|
virtual bool IsUseable(const FactorMask &mask) const
|
|
|
|
{ return true; }
|
|
|
|
|
2014-07-10 01:35:59 +04:00
|
|
|
virtual void EvaluateInIsolation(const Phrase &source
|
2014-04-06 19:57:54 +04:00
|
|
|
, const TargetPhrase &targetPhrase
|
|
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
|
|
, ScoreComponentCollection &estimatedFutureScore) const;
|
|
|
|
|
2014-07-10 02:06:54 +04:00
|
|
|
virtual void EvaluateWithSourceContext(const InputType &input
|
2014-04-06 19:57:54 +04:00
|
|
|
, const InputPath &inputPath
|
|
|
|
, const TargetPhrase &targetPhrase
|
2014-05-08 20:51:45 +04:00
|
|
|
, const StackVec *stackVec
|
2014-04-06 19:57:54 +04:00
|
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
|
|
, ScoreComponentCollection *estimatedFutureScore = NULL) const
|
|
|
|
{}
|
|
|
|
|
2014-07-10 02:41:08 +04:00
|
|
|
virtual void EvaluateWhenApplied(const Hypothesis& hypo,
|
2014-04-06 19:57:54 +04:00
|
|
|
ScoreComponentCollection* accumulator) const
|
|
|
|
{}
|
|
|
|
|
2014-07-10 02:54:16 +04:00
|
|
|
virtual void EvaluateWhenApplied(const ChartHypothesis &hypo,
|
2014-04-06 19:57:54 +04:00
|
|
|
ScoreComponentCollection* accumulator) const
|
|
|
|
{}
|
|
|
|
|
2014-04-07 15:00:13 +04:00
|
|
|
std::vector<float> DefaultWeights() const
|
|
|
|
{ return std::vector<float>(); }
|
|
|
|
|
2014-04-06 19:57:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|