mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/*
|
|
* FeatureFunctions.h
|
|
*
|
|
* Created on: 27 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#ifndef FEATUREFUNCTIONS_H_
|
|
#define FEATUREFUNCTIONS_H_
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include "moses/Parameter.h"
|
|
|
|
class System;
|
|
class FeatureFunction;
|
|
class StatefulFeatureFunction;
|
|
class PhraseTable;
|
|
class Manager;
|
|
class PhraseBase;
|
|
class Phrase;
|
|
class TargetPhrase;
|
|
class Scores;
|
|
|
|
class FeatureFunctions {
|
|
public:
|
|
FeatureFunctions(System &system);
|
|
virtual ~FeatureFunctions();
|
|
|
|
const std::vector<const PhraseTable*> &GetPhraseTables() const
|
|
{ return m_phraseTables; }
|
|
|
|
const std::vector<const StatefulFeatureFunction*> &GetStatefulFeatureFunctions() const
|
|
{ return m_statefulFeatureFunctions; }
|
|
|
|
size_t GetNumScores() const
|
|
{ return m_ffStartInd; }
|
|
|
|
void Create();
|
|
void Load();
|
|
|
|
const FeatureFunction &FindFeatureFunction(const std::string &name) const;
|
|
|
|
virtual void
|
|
EvaluateInIsolation(const System &system,
|
|
const PhraseBase &source, const TargetPhrase &targetPhrase,
|
|
Scores &scores,
|
|
Scores *estimatedFutureScores) const;
|
|
|
|
protected:
|
|
std::vector<const FeatureFunction*> m_featureFunctions;
|
|
std::vector<const StatefulFeatureFunction*> m_statefulFeatureFunctions;
|
|
std::vector<const PhraseTable*> m_phraseTables;
|
|
|
|
System &m_system;
|
|
size_t m_ffStartInd;
|
|
|
|
FeatureFunction *Create(const std::string &line);
|
|
|
|
};
|
|
|
|
#endif /* FEATUREFUNCTIONS_H_ */
|