From 4d47dbd7da0434de67ac619392d516c678e1f2ca Mon Sep 17 00:00:00 2001 From: Chris Dyer Date: Thu, 18 Feb 2010 17:06:59 -0500 Subject: add generative word alignment model and primitive EM trainer. Model 1 and HMM are supported, without NULL source words --- decoder/lexcrf.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 decoder/lexcrf.h (limited to 'decoder/lexcrf.h') 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& weights, - Hypergraph* forest); - private: - boost::shared_ptr pimpl_; -}; - -#endif -- cgit v1.2.3