mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
#ifndef moses_PhraseLengthFeature_h
|
|
#define moses_PhraseLengthFeature_h
|
|
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <map>
|
|
|
|
#include "StatelessFeatureFunction.h"
|
|
#include "moses/FF/FFState.h"
|
|
#include "moses/Word.h"
|
|
#include "moses/FactorCollection.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
/** Sets the features for length of source phrase, target phrase, both.
|
|
*/
|
|
class PhraseLengthFeature : public StatelessFeatureFunction
|
|
{
|
|
public:
|
|
PhraseLengthFeature(const std::string &line);
|
|
|
|
bool IsUseable(const FactorMask &mask) const {
|
|
return true;
|
|
}
|
|
|
|
void EvaluateWhenApplied(const Hypothesis& hypo,
|
|
ScoreComponentCollection* accumulator) const
|
|
{}
|
|
|
|
void EvaluateChart(const ChartHypothesis& hypo,
|
|
ScoreComponentCollection*) const {
|
|
throw std::logic_error("PhraseLengthFeature not valid in chart decoder");
|
|
}
|
|
|
|
void EvaluateWithSourceContext(const InputType &input
|
|
, const InputPath &inputPath
|
|
, const TargetPhrase &targetPhrase
|
|
, const StackVec *stackVec
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
, ScoreComponentCollection *estimatedFutureScore = NULL) const
|
|
{}
|
|
|
|
virtual void EvaluateInIsolation(const Phrase &source
|
|
, const TargetPhrase &targetPhrase
|
|
, ScoreComponentCollection &scoreBreakdown
|
|
, ScoreComponentCollection &estimatedFutureScore) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // moses_PhraseLengthFeature_h
|