mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 13:23:25 +03:00
38 lines
941 B
C++
38 lines
941 B
C++
//
|
|
// PhraseDictionaryALSuffixArray.h
|
|
// moses
|
|
//
|
|
// Created by Hieu Hoang on 06/11/2011.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#ifndef moses_PhraseDictionaryALSuffixArray_h
|
|
#define moses_PhraseDictionaryALSuffixArray_h
|
|
|
|
#include "moses/TranslationModel/PhraseDictionaryMemory.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
/** Implementation of in-memory phrase table for use with Adam Lopez's suffix array.
|
|
* Does 2 things that the normal in-memory pt doesn't do:
|
|
* 1. Loads grammar for a sentence to be decoded only when the sentence is being decoded. Unload afterwards
|
|
2. Format of the pt file follows Hiero, rather than Moses
|
|
*/
|
|
class PhraseDictionaryALSuffixArray : public PhraseDictionaryMemory
|
|
{
|
|
public:
|
|
PhraseDictionaryALSuffixArray(const std::string &line);
|
|
void Load();
|
|
void InitializeForInput(InputType const& source);
|
|
void CleanUpAfterSentenceProcessing(const InputType& source);
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif
|