mosesdecoder/moses/TargetBigramFeature.h

67 lines
1.8 KiB
C++

#ifndef moses_TargetBigramFeature_h
#define moses_TargetBigramFeature_h
#include <string>
#include <map>
#include <boost/unordered_set.hpp>
#include "FactorCollection.h"
#include "FeatureFunction.h"
#include "FFState.h"
#include "Word.h"
namespace Moses
{
class TargetBigramState : public FFState {
public:
TargetBigramState(const Word& word): m_word(word) {}
const Word& GetWord() const {return m_word;}
virtual int Compare(const FFState& other) const;
private:
Word m_word;
};
/** Sets the features of observed bigrams.
*/
class TargetBigramFeature : public StatefulFeatureFunction {
public:
TargetBigramFeature(FactorType factorType = 0):
StatefulFeatureFunction("dlmb", ScoreProducer::unlimited),
m_factorType(factorType)
{
FactorCollection& factorCollection = FactorCollection::Instance();
const Factor* bosFactor =
factorCollection.AddFactor(Output,m_factorType,BOS_);
m_bos.SetFactor(m_factorType,bosFactor);
}
bool Load(const std::string &filePath);
std::string GetScoreProducerWeightShortName(unsigned) const;
size_t GetNumInputScores() const;
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 */,
ScoreComponentCollection* ) const
{
abort();
}
private:
FactorType m_factorType;
Word m_bos;
boost::unordered_set<std::string> m_vocab;
};
}
#endif // moses_TargetBigramFeature_h