diff options
author | philblunsom <philblunsom@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-08 04:08:19 +0000 |
---|---|---|
committer | philblunsom <philblunsom@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-08 04:08:19 +0000 |
commit | cea8791b9c517a1ab7e29c34fa6bf52843a3ab55 (patch) | |
tree | 0334653d4c50b644094438ea1ddea98941438e0c /gi/pipeline/evaluation-pipeline.pl | |
parent | bad2c94cac45d8362e85dc06149c56b2d0403021 (diff) |
Fixed up evaluation pipeline. Should work now ...
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@183 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'gi/pipeline/evaluation-pipeline.pl')
-rwxr-xr-x | gi/pipeline/evaluation-pipeline.pl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gi/pipeline/evaluation-pipeline.pl b/gi/pipeline/evaluation-pipeline.pl index 8414308d..619e2699 100755 --- a/gi/pipeline/evaluation-pipeline.pl +++ b/gi/pipeline/evaluation-pipeline.pl @@ -10,6 +10,9 @@ my $SCRIPT_DIR; BEGIN { use Cwd qw/ abs_path /; use File::Basename; $SCRIPT_DIR # the key in this map is the extractor name, the value is a list of the extracted features my $feat_map = { "LogRuleCount" => [ "LogRuleCount", "SingletonRule" ] , +# "XFeatures" => [ "XFE","XEF" ] , + "XFeatures" => [ "XFE","XEF","LabelledEF","LabelledFE"] , + "LabelledRuleConditionals" => [ "LabelledFE","LabelledEF" ] , "LexProb" => [ "LexE2F", "LexF2E" ] , }; @@ -24,11 +27,15 @@ my %init_weights = qw( LogECount -0.129853 LogFCount -0.194037 LogRuleCount 0.256706 + XFE -0.256706 + XEF -0.256706 + LabelledFE -0.256706 + LabelledEF -0.256706 PassThrough -0.9304905 SingletonE -3.04161 SingletonF 0.0714027 SingletonRule -0.889377 - WordPenalty -7.99495 + WordPenalty -1.99495 ); |