diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-11-05 21:34:22 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-11-05 21:34:22 -0500 |
commit | 709bf16fbf7e88d15c9a9f3356c63e9ff38fa05d (patch) | |
tree | 3ec67e4084b6be65555d70766ebfe5d2b18cd410 /decoder/ff_rules.h | |
parent | 782fb27af98ed98256cc25c832131c59c8e9ce9c (diff) | |
parent | 2eb77b77d28f6d9dc88ecb6ca999994bdb555445 (diff) |
Merge branch 'master' of https://github.com/redpony/cdec
Diffstat (limited to 'decoder/ff_rules.h')
-rw-r--r-- | decoder/ff_rules.h | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/decoder/ff_rules.h b/decoder/ff_rules.h index 7f5e1dfa..b100ec34 100644 --- a/decoder/ff_rules.h +++ b/decoder/ff_rules.h @@ -5,6 +5,7 @@ #include <map> #include "trule.h" #include "ff.h" +#include "hg.h" #include "array2d.h" #include "wordid.h" @@ -23,9 +24,24 @@ class RuleIdentityFeatures : public FeatureFunction { mutable std::map<const TRule*, int> rule2_fid_; }; -class RuleNgramFeatures : public FeatureFunction { +class RuleSourceBigramFeatures : public FeatureFunction { public: - RuleNgramFeatures(const std::string& param); + RuleSourceBigramFeatures(const std::string& param); + 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* context) const; + virtual void PrepareForInput(const SentenceMetadata& smeta); + private: + mutable std::map<const TRule*, SparseVector<double> > rule2_feats_; +}; + +class RuleTargetBigramFeatures : public FeatureFunction { + public: + RuleTargetBigramFeatures(const std::string& param); protected: virtual void TraversalFeaturesImpl(const SentenceMetadata& smeta, const HG::Edge& edge, |