diff options
author | Chris Dyer <redpony@gmail.com> | 2010-02-18 17:06:59 -0500 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2010-02-18 17:06:59 -0500 |
commit | 4d47dbd7da0434de67ac619392d516c678e1f2ca (patch) | |
tree | fdb327696aa30e79983602c0e7d5fde372efbde5 /decoder/lexalign.h | |
parent | c97b8a8b58f7385fb48b74e2cf1ea9610cd1202f (diff) |
add generative word alignment model and primitive EM trainer. Model 1 and HMM are supported, without NULL source words
Diffstat (limited to 'decoder/lexalign.h')
-rw-r--r-- | decoder/lexalign.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/decoder/lexalign.h b/decoder/lexalign.h new file mode 100644 index 00000000..30c89c57 --- /dev/null +++ b/decoder/lexalign.h @@ -0,0 +1,18 @@ +#ifndef _LEXALIGN_H_ +#define _LEXALIGN_H_ + +#include "translator.h" +#include "lattice.h" + +struct LexicalAlignImpl; +struct LexicalAlign : public Translator { + LexicalAlign(const boost::program_options::variables_map& conf); + bool Translate(const std::string& input, + SentenceMetadata* smeta, + const std::vector<double>& weights, + Hypergraph* forest); + private: + boost::shared_ptr<LexicalAlignImpl> pimpl_; +}; + +#endif |