diff options
| author | Chris Dyer <redpony@gmail.com> | 2013-08-08 13:32:44 -0700 | 
|---|---|---|
| committer | Chris Dyer <redpony@gmail.com> | 2013-08-08 13:32:44 -0700 | 
| commit | 14b6b5a397dad46080732e8345ba2b1e5593d4cb (patch) | |
| tree | fc8ddf1a6d87d83d574ceedce4c70db45dd3a4ab /decoder/cdec_ff.cc | |
| parent | 3c495d2b8664f292aedda8235eb8bf375830700c (diff) | |
| parent | 7609df7a5fc4fc084c92200653b7750a16ee0555 (diff) | |
Merge pull request #24 from pks/master
current dtrain version
Diffstat (limited to 'decoder/cdec_ff.cc')
| -rw-r--r-- | decoder/cdec_ff.cc | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/decoder/cdec_ff.cc b/decoder/cdec_ff.cc index 0bf441d4..e7b31f50 100644 --- a/decoder/cdec_ff.cc +++ b/decoder/cdec_ff.cc @@ -14,8 +14,18 @@  #include "ff_rules.h"  #include "ff_ruleshape.h"  #include "ff_bleu.h" +#include "ff_soft_syntax.h" +#include "ff_soft_syntax2.h"  #include "ff_source_path.h" + + +#include "ff_parse_match.h"  #include "ff_source_syntax.h" +#include "ff_source_syntax_p.h" +#include "ff_source_syntax2.h" +#include "ff_source_syntax2_p.h" + +  #include "ff_register.h"  #include "ff_charset.h"  #include "ff_wordset.h" @@ -48,8 +58,23 @@ void register_feature_functions() {    ff_registry.Register("NgramFeatures", new FFFactory<NgramDetector>());    ff_registry.Register("RuleContextFeatures", new FFFactory<RuleContextFeatures>());    ff_registry.Register("RuleIdentityFeatures", new FFFactory<RuleIdentityFeatures>()); + + +  ff_registry.Register("ParseMatchFeatures", new FFFactory<ParseMatchFeatures>); + +  ff_registry.Register("SoftSyntacticFeatures", new FFFactory<SoftSyntacticFeatures>); +  ff_registry.Register("SoftSyntacticFeatures2", new FFFactory<SoftSyntacticFeatures2>); +    ff_registry.Register("SourceSyntaxFeatures", new FFFactory<SourceSyntaxFeatures>); +  ff_registry.Register("SourceSyntaxFeatures2", new FFFactory<SourceSyntaxFeatures2>); +    ff_registry.Register("SourceSpanSizeFeatures", new FFFactory<SourceSpanSizeFeatures>); + +  //ff_registry.Register("PSourceSyntaxFeatures", new FFFactory<PSourceSyntaxFeatures>); +  //ff_registry.Register("PSourceSpanSizeFeatures", new FFFactory<PSourceSpanSizeFeatures>); +  //ff_registry.Register("PSourceSyntaxFeatures2", new FFFactory<PSourceSyntaxFeatures2>); + +    ff_registry.Register("CMR2008ReorderingFeatures", new FFFactory<CMR2008ReorderingFeatures>());    ff_registry.Register("RuleSourceBigramFeatures", new FFFactory<RuleSourceBigramFeatures>());    ff_registry.Register("RuleTargetBigramFeatures", new FFFactory<RuleTargetBigramFeatures>()); | 
