mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
/*
|
|
* PhraseTable.h
|
|
*
|
|
* Created on: 23 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
#pragma once
|
|
#include <string>
|
|
#include <boost/unordered_map.hpp>
|
|
#include "../TargetPhrases.h"
|
|
#include "../Word.h"
|
|
#include "../FF/StatelessFeatureFunction.h"
|
|
#include "moses/Util.h"
|
|
|
|
class System;
|
|
class InputPaths;
|
|
class InputPath;
|
|
class Manager;
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
class PhraseTable : public StatelessFeatureFunction
|
|
{
|
|
public:
|
|
PhraseTable(size_t startInd, const std::string &line);
|
|
virtual ~PhraseTable();
|
|
|
|
virtual void SetParameter(const std::string& key, const std::string& value);
|
|
virtual void Lookup(const Manager &mgr, InputPaths &inputPaths) const;
|
|
virtual TargetPhrases::shared_const_ptr Lookup(const Manager &mgr, InputPath &inputPath) const;
|
|
|
|
void SetPtInd(size_t ind)
|
|
{ m_ptInd = ind; }
|
|
size_t GetPtInd() const
|
|
{ return m_ptInd; }
|
|
|
|
virtual void
|
|
EvaluateInIsolation(const System &system,
|
|
const Phrase &source, const TargetPhrase &targetPhrase,
|
|
Scores &scores,
|
|
Scores *estimatedScores) const;
|
|
|
|
protected:
|
|
std::string m_path;
|
|
size_t m_ptInd;
|
|
|
|
};
|
|
|