summaryrefslogtreecommitdiff
path: root/decoder/ff_ngrams.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-07-06 19:54:58 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2011-07-06 19:54:58 -0400
commitf69c59716b161500011ea60892254c2701b9d63e (patch)
treeb4ab4a9877323150a3cb2a78016e2c13e622072a /decoder/ff_ngrams.h
parent3ccdb4dbdeed3704203c48fc5499bd06adb33fca (diff)
ngram count features
Diffstat (limited to 'decoder/ff_ngrams.h')
-rw-r--r--decoder/ff_ngrams.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/decoder/ff_ngrams.h b/decoder/ff_ngrams.h
new file mode 100644
index 00000000..82f61b33
--- /dev/null
+++ b/decoder/ff_ngrams.h
@@ -0,0 +1,29 @@
+#ifndef _NGRAMS_FF_H_
+#define _NGRAMS_FF_H_
+
+#include <vector>
+#include <map>
+#include <string>
+
+#include "ff.h"
+
+struct NgramDetectorImpl;
+class NgramDetector : public FeatureFunction {
+ public:
+ // param = "filename.lm [-o n]"
+ NgramDetector(const std::string& param);
+ ~NgramDetector();
+ virtual void FinalTraversalFeatures(const void* context,
+ SparseVector<double>* features) const;
+ protected:
+ virtual void TraversalFeaturesImpl(const SentenceMetadata& smeta,
+ const Hypergraph::Edge& edge,
+ const std::vector<const void*>& ant_contexts,
+ SparseVector<double>* features,
+ SparseVector<double>* estimated_features,
+ void* out_context) const;
+ private:
+ NgramDetectorImpl* pimpl_;
+};
+
+#endif