mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
86 lines
2.1 KiB
C++
86 lines
2.1 KiB
C++
// $Id$
|
|
|
|
#ifndef moses_ConfusionNet_h
|
|
#define moses_ConfusionNet_h
|
|
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include "Word.h"
|
|
#include "InputType.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
class FactorCollection;
|
|
class TranslationOptionCollection;
|
|
class Sentence;
|
|
|
|
/** An input to the decoder where each position can be 1 of a number of words,
|
|
* each with an associated probability. Compared with a sentence, where each position is a word
|
|
*/
|
|
class ConfusionNet : public InputType
|
|
{
|
|
public:
|
|
typedef std::vector<std::pair<Word,std::vector<float> > > Column;
|
|
|
|
protected:
|
|
std::vector<Column> data;
|
|
|
|
bool ReadFormat0(std::istream&,const std::vector<FactorType>& factorOrder);
|
|
bool ReadFormat1(std::istream&,const std::vector<FactorType>& factorOrder);
|
|
void String2Word(const std::string& s,Word& w,const std::vector<FactorType>& factorOrder);
|
|
|
|
public:
|
|
ConfusionNet();
|
|
virtual ~ConfusionNet();
|
|
|
|
ConfusionNet(Sentence const& s);
|
|
|
|
InputTypeEnum GetType() const {
|
|
return ConfusionNetworkInput;
|
|
}
|
|
|
|
const Column& GetColumn(size_t i) const {
|
|
CHECK(i<data.size());
|
|
return data[i];
|
|
}
|
|
const Column& operator[](size_t i) const {
|
|
return GetColumn(i);
|
|
}
|
|
virtual size_t GetColumnIncrement(size_t i, size_t j) const; //! returns 1 for CNs
|
|
|
|
bool Empty() const {
|
|
return data.empty();
|
|
}
|
|
size_t GetSize() const {
|
|
return data.size();
|
|
}
|
|
void Clear() {
|
|
data.clear();
|
|
}
|
|
|
|
bool ReadF(std::istream&,const std::vector<FactorType>& factorOrder,int format=0);
|
|
virtual void Print(std::ostream&) const;
|
|
|
|
int Read(std::istream& in,const std::vector<FactorType>& factorOrder);
|
|
|
|
Phrase GetSubString(const WordsRange&) const; //TODO not defined
|
|
std::string GetStringRep(const std::vector<FactorType> factorsToPrint) const; //TODO not defined
|
|
const Word& GetWord(size_t pos) const;
|
|
|
|
TranslationOptionCollection* CreateTranslationOptionCollection() const;
|
|
|
|
const NonTerminalSet &GetLabelSet(size_t /*startPos*/, size_t /*endPos*/) const {
|
|
CHECK(false);
|
|
return *(new NonTerminalSet());
|
|
}
|
|
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream& out,const ConfusionNet& cn);
|
|
|
|
|
|
}
|
|
|
|
#endif
|