summaryrefslogtreecommitdiff
path: root/decoder/lexcrf.h
diff options
context:
space:
mode:
authorChris Dyer <redpony@gmail.com>2010-02-18 17:06:59 -0500
committerChris Dyer <redpony@gmail.com>2010-02-18 17:06:59 -0500
commit4d47dbd7da0434de67ac619392d516c678e1f2ca (patch)
treefdb327696aa30e79983602c0e7d5fde372efbde5 /decoder/lexcrf.h
parentc97b8a8b58f7385fb48b74e2cf1ea9610cd1202f (diff)
add generative word alignment model and primitive EM trainer. Model 1 and HMM are supported, without NULL source words
Diffstat (limited to 'decoder/lexcrf.h')
-rw-r--r--decoder/lexcrf.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/decoder/lexcrf.h b/decoder/lexcrf.h
deleted file mode 100644
index 99362c81..00000000
--- a/decoder/lexcrf.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _LEXCRF_H_
-#define _LEXCRF_H_
-
-#include "translator.h"
-#include "lattice.h"
-
-struct LexicalCRFImpl;
-struct LexicalCRF : public Translator {
- LexicalCRF(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<LexicalCRFImpl> pimpl_;
-};
-
-#endif