Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/moses-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Haddow <barry.haddow@gmail.com>2014-06-30 15:14:00 +0400
committerBarry Haddow <barry.haddow@gmail.com>2014-06-30 15:14:00 +0400
commit22cfd7be2c0ba5e068153184b0d9ded0536eab57 (patch)
tree6e32d98d456a74c54c696b0f85c9c3bfc5e37707
parente026a285b451935d0f9471b39db04416db1945cc (diff)
Test for sparse reo
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/cluster.en48
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/cluster.fr65
-rwxr-xr-xtests/phrase.lexicalized-reordering-sparse/filter-stderr.pl22
-rwxr-xr-xtests/phrase.lexicalized-reordering-sparse/filter-stdout.pl7
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/moses.ini33
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/results.txt11
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/to-translate.txt5
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/top10.en16
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/top10.fr17
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/truth/results.txt11
-rw-r--r--tests/phrase.lexicalized-reordering-sparse/weights.sparse459
11 files changed, 694 insertions, 0 deletions
diff --git a/tests/phrase.lexicalized-reordering-sparse/cluster.en b/tests/phrase.lexicalized-reordering-sparse/cluster.en
new file mode 100644
index 0000000..4b14123
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/cluster.en
@@ -0,0 +1,48 @@
+~ 9
+= 5
+, 1
+. 9
+12 4
+-1568.085 0
+-1994.346 7
+7 9
+-883.502 1
+-894.141 8
+-898.780 4
+a 8
+adversité 8
+all 6
+also 5
+and 2
+appliquent 9
+are 4
+article 9
+biarritz 6
+but 2
+citizens 7
+council 2
+countries 4
+dépit 9
+derniers 6
+devrons 8
+difference 1
+disposent 0
+droits 0
+each 6
+élaborent 1
+élus 8
+encourager 4
+essence 6
+european 6
+événements 9
+examiner 0
+for 0
+have 5
+in 2
+inclusion 5
+is 9
+issue 6
+it 4
+law 2
+little 4
+loin 0
diff --git a/tests/phrase.lexicalized-reordering-sparse/cluster.fr b/tests/phrase.lexicalized-reordering-sparse/cluster.fr
new file mode 100644
index 0000000..7e3d567
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/cluster.fr
@@ -0,0 +1,65 @@
+, 0
+. 6
+7 0
+à 2
+actuelle 9
+adversité 3
+appliquent 6
+article 7
+au 3
+aussi 5
+autant 9
+avons 4
+biarritz 5
+c' 3
+ce 2
+ces 5
+ceux 0
+chacun 8
+citoyens 0
+connaissent 6
+conseil 1
+d' 7
+dans 0
+de 7
+dépit 6
+derniers 1
+des 8
+deuxièmement 1
+devoir 2
+devrons 6
+disposent 3
+dont 8
+droit 5
+droits 0
+du 5
+également 8
+élaborent 9
+elle 8
+élus 2
+en 1
+encourager 6
+essence 0
+est 9
+et 1
+européen 5
+événements 8
+examiner 7
+faire 1
+heure 4
+ils 8
+inclusion 6
+justement 4
+l' 3
+la 4
+le 7
+les 6
+loin 9
+me 9
+mécanismes 6
+messages 4
+moins 7
+monsieur 8
+nos 5
+nous 4
+opinion 7
diff --git a/tests/phrase.lexicalized-reordering-sparse/filter-stderr.pl b/tests/phrase.lexicalized-reordering-sparse/filter-stderr.pl
new file mode 100755
index 0000000..2f6e176
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/filter-stderr.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/perl
+
+BEGIN { use Cwd qw/ abs_path /; use File::Basename; $script_dir = dirname(abs_path($0)); push @INC, "$script_dir/../perllib"; }
+use RegTestUtils;
+
+$x=0;
+while (<>) {
+ chomp;
+
+ if (/^Finished loading LanguageModels/) {
+ my $time = RegTestUtils::readTime($_);
+ print "LMLOAD_TIME ~ $time\n";
+ }
+ if (/^Finished loading phrase tables/) {
+ my $time = RegTestUtils::readTime($_);
+ print "PTLOAD_TIME ~ $time\n";
+ }
+ next unless /^BEST TRANSLATION:/;
+ my $pscore = RegTestUtils::readHypoScore($_);
+ $x++;
+ print "SCORE_$x = $pscore\n";
+}
diff --git a/tests/phrase.lexicalized-reordering-sparse/filter-stdout.pl b/tests/phrase.lexicalized-reordering-sparse/filter-stdout.pl
new file mode 100755
index 0000000..476ddf6
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/filter-stdout.pl
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+$x=0;
+while (<>) {
+ chomp;
+ $x++;
+ print "TRANSLATION_$x=$_\n";
+}
diff --git a/tests/phrase.lexicalized-reordering-sparse/moses.ini b/tests/phrase.lexicalized-reordering-sparse/moses.ini
new file mode 100644
index 0000000..9e599be
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/moses.ini
@@ -0,0 +1,33 @@
+#########################
+### MOSES CONFIG FILE ###
+#########################
+
+# input factors
+[input-factors]
+0
+
+# mapping steps
+[mapping]
+T 0
+
+[distortion-limit]
+6
+
+[feature]
+KENLM factor=0 order=5 num-features=1 lazyken=0 path=${MODEL_PATH}/lexicalized-reordering/europarl.lm
+Distortion
+LexicalReordering type=msd-bidirectional-fe input-factor=0 output-factor=0 num-features=6 path=${MODEL_PATH}/lexicalized-reordering/reordering-table.msd-bidirectional-fe.0.5.0-0.gz sparse-stack=1 sparse-phrase=1 sparse-between=1 sparse-words-source-topn=${TEST_PATH}/top10.fr sparse-words-target-topn=${TEST_PATH}/top10.en sparse-clusters-source-rand=${TEST_PATH}/cluster.fr sparse-clusters-target-rand=${TEST_PATH}/cluster.en
+WordPenalty
+UnknownWordPenalty
+PhraseDictionaryMemory input-factor=0 output-factor=0 path=${MODEL_PATH}/lexicalized-reordering/phrase-table.0-0.gz num-features=5 table-limit=20
+
+[weight-file]
+${TEST_PATH}/weights.sparse
+
+[weight]
+WordPenalty0= -1
+KENLM0= 0.5
+Distortion0= 0.1
+LexicalReordering0= 0.6 0.3 0.3 0.6 0.3 0.3
+PhraseDictionaryMemory0= 0.2 0.2 0.2 0.2 0.2
+
diff --git a/tests/phrase.lexicalized-reordering-sparse/results.txt b/tests/phrase.lexicalized-reordering-sparse/results.txt
new file mode 100644
index 0000000..1bdff1a
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/results.txt
@@ -0,0 +1,11 @@
+TRANSLATION_1=mr president , what we devrons but also do in biarritz , that is regarder a little more loin .
+TRANSLATION_2=the élus that we are the that have the difference the us of the encourager in progresser , in dépit of the adversité , that of the relayer messages that we recevons of the opinion each of all in our country .
+TRANSLATION_3=the prerequisites for the événements of these derniers time , the issue of sufficiently of the essence to it too in remarquable .
+TRANSLATION_4=in the , the council is in train of the examiner inclusion of such mécanismes in article 7 .
+TRANSLATION_5=secondly , in the transparency for the citizens , who are now the droits vis-à-vis of , they disposent those appliquent and élaborent law the european , and for looking and precisely appliquent élaborent this law the european .
+SCORE_1 = -875.923
+SCORE_2 = -1990.605
+SCORE_3 = -886.367
+SCORE_4 = -889.002
+SCORE_5 = -1560.266
+TOTAL_WALLTIME ~ 24
diff --git a/tests/phrase.lexicalized-reordering-sparse/to-translate.txt b/tests/phrase.lexicalized-reordering-sparse/to-translate.txt
new file mode 100644
index 0000000..d336d82
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/to-translate.txt
@@ -0,0 +1,5 @@
+monsieur le président , ce que nous devrons toutefois également faire à biarritz , c' est regarder un peu plus loin .
+les élus que nous sommes avons au moins autant le devoir de l' encourager à progresser , en dépit de l' adversité , que de relayer les messages que nous recevons de l' opinion publique dans chacun de nos pays .
+au regard des événements de ces derniers temps , la question du prix de l' essence me semble elle aussi particulièrement remarquable .
+à l' heure actuelle , le conseil est en train d' examiner l' inclusion de tels mécanismes dans l' article 7 .
+deuxièmement , dans la transparence pour les citoyens , qui connaissent à présent les droits dont ils disposent vis-à-vis de ceux qui appliquent et élaborent le droit européen , et pour ceux qui , justement , appliquent et élaborent ce droit européen .
diff --git a/tests/phrase.lexicalized-reordering-sparse/top10.en b/tests/phrase.lexicalized-reordering-sparse/top10.en
new file mode 100644
index 0000000..f56bea5
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/top10.en
@@ -0,0 +1,16 @@
+what
+we
+but
+to
+time
+of
+the
+countries
+in
+more
+this
+is
+which
+lawa
+now
+council
diff --git a/tests/phrase.lexicalized-reordering-sparse/top10.fr b/tests/phrase.lexicalized-reordering-sparse/top10.fr
new file mode 100644
index 0000000..26e8d5a
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/top10.fr
@@ -0,0 +1,17 @@
+ce
+que
+nous
+faire
+un
+peu
+l'
+dans
+chacun
+pays
+.
+que
+de
+et
+droit
+ceux
+qui
diff --git a/tests/phrase.lexicalized-reordering-sparse/truth/results.txt b/tests/phrase.lexicalized-reordering-sparse/truth/results.txt
new file mode 100644
index 0000000..f36ed72
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/truth/results.txt
@@ -0,0 +1,11 @@
+TRANSLATION_1=mr president , however , that we also devrons do to biarritz regarder , this is a little more loin .
+TRANSLATION_2=we are the have élus that the difference , the us of the dépit encourager to in the progresser , that to the adversité messages that we relayer recevons of the in all opinion each of our countries .
+TRANSLATION_3=the prerequisites for of événements derniers of these time , the issue of sufficiently of the to essence to a in to remarquable .
+TRANSLATION_4=to the is , in the council train of examiner the in the mécanismes inclusion of such article 7 .
+TRANSLATION_5=secondly , the citizens transparency in the to , which are to the droits s they disposent and vis-à-vis of those appliquent european law élaborent and , to those , appliquent stated law , and the european élaborent this .
+SCORE_1 = -875.373
+SCORE_2 = -1970.490
+SCORE_3 = -896.978
+SCORE_4 = -877.636
+SCORE_5 = -1558.790
+TOTAL_WALLTIME ~ 28
diff --git a/tests/phrase.lexicalized-reordering-sparse/weights.sparse b/tests/phrase.lexicalized-reordering-sparse/weights.sparse
new file mode 100644
index 0000000..04edbf8
--- /dev/null
+++ b/tests/phrase.lexicalized-reordering-sparse/weights.sparse
@@ -0,0 +1,459 @@
+LexicalReordering0_btn-src-first-rand-cluster_0-2 0.920141475888165
+LexicalReordering0_btn-src-first-rand-cluster_0-2 0.566663216049108
+LexicalReordering0_btn-src-first-rand-cluster_0-2 -0.0235387058162146
+LexicalReordering0_btn-src-first-rand-cluster_1-2 0.513618677568857
+LexicalReordering0_btn-src-first-rand-cluster_2-2 0.875336227263837
+LexicalReordering0_btn-src-first-rand-cluster_2-2 -0.473074878129438
+LexicalReordering0_btn-src-first-rand-cluster_3-2 0.419734934618354
+LexicalReordering0_btn-src-first-rand-cluster_3-2 -0.989918853074258
+LexicalReordering0_btn-src-first-rand-cluster_3-2 0.105750664585521
+LexicalReordering0_btn-src-first-rand-cluster_4-2 0.682814015659005
+LexicalReordering0_btn-src-first-rand-cluster_4-2 0.0227504526588618
+LexicalReordering0_btn-src-first-rand-cluster_4-2 -0.138543163911024
+LexicalReordering0_btn-src-first-rand-cluster_5-2 -0.373645178913669
+LexicalReordering0_btn-src-first-rand-cluster_6-2 0.641550629097338
+LexicalReordering0_btn-src-first-rand-cluster_6-2 0.580289358885231
+LexicalReordering0_btn-src-first-rand-cluster_6-2 0.348639112606392
+LexicalReordering0_btn-src-first-rand-cluster_7-2 0.0783210475361855
+LexicalReordering0_btn-src-first-rand-cluster_7-2 0.303707401964914
+LexicalReordering0_btn-src-first-rand-cluster_7-2 -0.572997241152827
+LexicalReordering0_btn-src-first-rand-cluster_8-2 -0.374600407054444
+LexicalReordering0_btn-src-first-rand-cluster_8-2 0.853095023561572
+LexicalReordering0_btn-src-first-rand-cluster_8-2 -0.82411180799582
+LexicalReordering0_btn-src-first-topn-ce-2 0.520250270215278
+LexicalReordering0_btn-src-first-topn-ceux-2 0.271533687097232
+LexicalReordering0_btn-src-first-topn-chacun-2 0.385453715309673
+LexicalReordering0_btn-src-first-topn-dans-2 -0.0159266068397983
+LexicalReordering0_btn-src-first-topn-dans-2 0.810650947693112
+LexicalReordering0_btn-src-first-topn-de-2 0.306819456901465
+LexicalReordering0_btn-src-first-topn-de-2 -0.36343598381827
+LexicalReordering0_btn-src-first-topn-de-2 0.0419461245770947
+LexicalReordering0_btn-src-first-topn-droit-2 0.901954587424932
+LexicalReordering0_btn-src-first-topn-et-2 -0.582969958455251
+LexicalReordering0_btn-src-first-topn-l'-2 -0.946647256604358
+LexicalReordering0_btn-src-first-topn-l'-2 -0.570525069432563
+LexicalReordering0_btn-src-first-topn-nous-2 0.0181763163250466
+LexicalReordering0_btn-src-first-topn-peu-2 -0.298952173959933
+LexicalReordering0_btn-src-first-topn-que-2 -0.177969049264526
+LexicalReordering0_btn-src-first-topn-que-2 0.595141529915253
+LexicalReordering0_btn-src-first-topn-qui-2 -0.170516180491241
+LexicalReordering0_btn-src-first-topn-un-2 0.619535083677349
+LexicalReordering0_phr-src-first-rand-cluster_0-0 0.134898782005685
+LexicalReordering0_phr-src-first-rand-cluster_0-0 0.793671696330193
+LexicalReordering0_phr-src-first-rand-cluster_0-2 0.60822554582122
+LexicalReordering0_phr-src-first-rand-cluster_0-2 -0.253050863579844
+LexicalReordering0_phr-src-first-rand-cluster_1-0 0.720356955430567
+LexicalReordering0_phr-src-first-rand-cluster_1-2 -0.875593534359922
+LexicalReordering0_phr-src-first-rand-cluster_1-2 0.768130382339443
+LexicalReordering0_phr-src-first-rand-cluster_2-0 0.417528273025241
+LexicalReordering0_phr-src-first-rand-cluster_2-0 0.962383061524527
+LexicalReordering0_phr-src-first-rand-cluster_2-2 -0.310757325609018
+LexicalReordering0_phr-src-first-rand-cluster_3-0 -0.735264771335871
+LexicalReordering0_phr-src-first-rand-cluster_3-2 -0.788954131725163
+LexicalReordering0_phr-src-first-rand-cluster_4-0 -0.37013919919351
+LexicalReordering0_phr-src-first-rand-cluster_4-2 0.420329463918591
+LexicalReordering0_phr-src-first-rand-cluster_4-2 0.191397255821862
+LexicalReordering0_phr-src-first-rand-cluster_5-0 -0.474287516862617
+LexicalReordering0_phr-src-first-rand-cluster_5-0 -0.723406291858105
+LexicalReordering0_phr-src-first-rand-cluster_5-1 -0.155366041338425
+LexicalReordering0_phr-src-first-rand-cluster_5-2 -0.313036972335375
+LexicalReordering0_phr-src-first-rand-cluster_6-0 0.0949273199106102
+LexicalReordering0_phr-src-first-rand-cluster_6-0 0.644357432468361
+LexicalReordering0_phr-src-first-rand-cluster_6-0 -0.105462027492734
+LexicalReordering0_phr-src-first-rand-cluster_6-2 -0.121312280217474
+LexicalReordering0_phr-src-first-rand-cluster_6-2 0.364219383451754
+LexicalReordering0_phr-src-first-rand-cluster_7-0 0.4449618891963
+LexicalReordering0_phr-src-first-rand-cluster_7-0 0.811501437291952
+LexicalReordering0_phr-src-first-rand-cluster_7-0 -0.176034982863008
+LexicalReordering0_phr-src-first-rand-cluster_7-2 -0.921496815537111
+LexicalReordering0_phr-src-first-rand-cluster_8-0 0.41027220267339
+LexicalReordering0_phr-src-first-rand-cluster_8-0 0.225480408222637
+LexicalReordering0_phr-src-first-rand-cluster_8-2 0.499732531875615
+LexicalReordering0_phr-src-first-rand-cluster_9-0 -0.557218061524807
+LexicalReordering0_phr-src-first-rand-cluster_9-2 -0.165009067238024
+LexicalReordering0_phr-src-first-rand-cluster_9-2 0.159421106944137
+LexicalReordering0_phr-src-first-topn-.-0 -0.0618006178937449
+LexicalReordering0_phr-src-first-topn-ce-0 -0.202008910335778
+LexicalReordering0_phr-src-first-topn-ce-2 -0.494500742198873
+LexicalReordering0_phr-src-first-topn-ceux-0 0.570219639244925
+LexicalReordering0_phr-src-first-topn-ceux-2 -0.852807464213136
+LexicalReordering0_phr-src-first-topn-chacun-2 0.165364746929058
+LexicalReordering0_phr-src-first-topn-dans-0 -0.924792808989757
+LexicalReordering0_phr-src-first-topn-de-0 0.190742895977166
+LexicalReordering0_phr-src-first-topn-de-0 0.914577276328963
+LexicalReordering0_phr-src-first-topn-de-0 -0.693644614218542
+LexicalReordering0_phr-src-first-topn-de-2 -0.0650618362612576
+LexicalReordering0_phr-src-first-topn-droit-0 0.00880283766090884
+LexicalReordering0_phr-src-first-topn-droit-1 -0.183234686983447
+LexicalReordering0_phr-src-first-topn-et-2 -0.549178931483041
+LexicalReordering0_phr-src-first-topn-faire-2 -0.58561295812347
+LexicalReordering0_phr-src-first-topn-l'-0 0.366567000449436
+LexicalReordering0_phr-src-first-topn-l'-2 -0.524577735091306
+LexicalReordering0_phr-src-first-topn-nous-2 0.675242591878103
+LexicalReordering0_phr-src-first-topn-pays-0 0.872408476212605
+LexicalReordering0_phr-src-first-topn-que-0 0.0772257686523119
+LexicalReordering0_phr-src-first-topn-que-0 0.48451511652285
+LexicalReordering0_phr-src-first-topn-un-2 -0.542276489029192
+LexicalReordering0_phr-src-last-rand-cluster_0-0 0.68083004856431
+LexicalReordering0_phr-src-last-rand-cluster_0-0 0.355524861844685
+LexicalReordering0_phr-src-last-rand-cluster_0-0 -0.481559597712454
+LexicalReordering0_phr-src-last-rand-cluster_0-2 -0.628712964441874
+LexicalReordering0_phr-src-last-rand-cluster_0-2 0.225907588097392
+LexicalReordering0_phr-src-last-rand-cluster_1-0 -0.0030372922640538
+LexicalReordering0_phr-src-last-rand-cluster_1-0 -0.605964050493249
+LexicalReordering0_phr-src-last-rand-cluster_1-2 -0.343406524968557
+LexicalReordering0_phr-src-last-rand-cluster_1-2 0.446963921417201
+LexicalReordering0_phr-src-last-rand-cluster_2-0 0.900250040427863
+LexicalReordering0_phr-src-last-rand-cluster_2-0 0.663943621394843
+LexicalReordering0_phr-src-last-rand-cluster_2-2 -0.224011653652539
+LexicalReordering0_phr-src-last-rand-cluster_3-0 0.86294281073399
+LexicalReordering0_phr-src-last-rand-cluster_3-0 0.523486302461862
+LexicalReordering0_phr-src-last-rand-cluster_3-2 0.441448277619877
+LexicalReordering0_phr-src-last-rand-cluster_3-2 0.510332580020062
+LexicalReordering0_phr-src-last-rand-cluster_4-0 0.92058255169048
+LexicalReordering0_phr-src-last-rand-cluster_4-2 0.542127363137126
+LexicalReordering0_phr-src-last-rand-cluster_5-0 0.27920973473433
+LexicalReordering0_phr-src-last-rand-cluster_5-0 0.0171905878694503
+LexicalReordering0_phr-src-last-rand-cluster_5-0 -0.595065728712562
+LexicalReordering0_phr-src-last-rand-cluster_5-1 0.213154819975756
+LexicalReordering0_phr-src-last-rand-cluster_5-2 -0.865879512123634
+LexicalReordering0_phr-src-last-rand-cluster_6-0 0.103737417656745
+LexicalReordering0_phr-src-last-rand-cluster_6-0 0.812534011753264
+LexicalReordering0_phr-src-last-rand-cluster_6-0 -0.346888150081782
+LexicalReordering0_phr-src-last-rand-cluster_6-2 -0.257997026808916
+LexicalReordering0_phr-src-last-rand-cluster_6-2 0.141520938970487
+LexicalReordering0_phr-src-last-rand-cluster_7-0 0.384450833176153
+LexicalReordering0_phr-src-last-rand-cluster_7-0 -0.652702653148111
+LexicalReordering0_phr-src-last-rand-cluster_7-2 0.499396832550126
+LexicalReordering0_phr-src-last-rand-cluster_7-2 -0.79444289321772
+LexicalReordering0_phr-src-last-rand-cluster_8-0 -0.0283089587473953
+LexicalReordering0_phr-src-last-rand-cluster_8-0 -0.805887952592514
+LexicalReordering0_phr-src-last-rand-cluster_8-2 -0.488080386660592
+LexicalReordering0_phr-src-last-rand-cluster_9-0 0.5809739589521
+LexicalReordering0_phr-src-last-rand-cluster_9-2 -0.743693128396295
+LexicalReordering0_phr-src-last-rand-cluster_9-2 -0.245719367397243
+LexicalReordering0_phr-src-last-topn-.-0 0.532504221338677
+LexicalReordering0_phr-src-last-topn-ce-0 0.451631246639565
+LexicalReordering0_phr-src-last-topn-ce-2 -0.0684478362292609
+LexicalReordering0_phr-src-last-topn-chacun-2 0.152635523869776
+LexicalReordering0_phr-src-last-topn-dans-0 0.697363869032948
+LexicalReordering0_phr-src-last-topn-de-0 0.853155597065737
+LexicalReordering0_phr-src-last-topn-de-0 0.26331336122437
+LexicalReordering0_phr-src-last-topn-de-2 -0.665205606728222
+LexicalReordering0_phr-src-last-topn-droit-0 -0.701799149925144
+LexicalReordering0_phr-src-last-topn-droit-1 -0.394776008629165
+LexicalReordering0_phr-src-last-topn-et-2 -0.321162796493233
+LexicalReordering0_phr-src-last-topn-faire-2 0.708097404297462
+LexicalReordering0_phr-src-last-topn-l'-0 -0.762400151941712
+LexicalReordering0_phr-src-last-topn-l'-0 0.483529231426488
+LexicalReordering0_phr-src-last-topn-l'-2 -0.520257642026273
+LexicalReordering0_phr-src-last-topn-nous-0 0.222545016515227
+LexicalReordering0_phr-src-last-topn-pays-0 0.63862027926762
+LexicalReordering0_phr-src-last-topn-peu-2 -0.819251906613047
+LexicalReordering0_phr-src-last-topn-que-0 0.932956596513982
+LexicalReordering0_phr-src-last-topn-qui-2 -0.168604050423141
+LexicalReordering0_phr-tgt-first-rand-cluster_0-0 0.563465999633273
+LexicalReordering0_phr-tgt-first-rand-cluster_0-2 -0.750665852497988
+LexicalReordering0_phr-tgt-first-rand-cluster_0-2 -0.509670417904452
+LexicalReordering0_phr-tgt-first-rand-cluster_1-0 -0.797999265420316
+LexicalReordering0_phr-tgt-first-rand-cluster_1-2 0.590155200753195
+LexicalReordering0_phr-tgt-first-rand-cluster_1-2 -0.890349111734977
+LexicalReordering0_phr-tgt-first-rand-cluster_2-0 -0.983750483975875
+LexicalReordering0_phr-tgt-first-rand-cluster_2-0 0.246062308628268
+LexicalReordering0_phr-tgt-first-rand-cluster_2-0 -0.343020896468694
+LexicalReordering0_phr-tgt-first-rand-cluster_2-1 0.018674991332901
+LexicalReordering0_phr-tgt-first-rand-cluster_2-2 0.109905434396218
+LexicalReordering0_phr-tgt-first-rand-cluster_2-2 0.256784456581244
+LexicalReordering0_phr-tgt-first-rand-cluster_4-0 0.0751157557378335
+LexicalReordering0_phr-tgt-first-rand-cluster_4-2 -0.417687681169426
+LexicalReordering0_phr-tgt-first-rand-cluster_5-0 -0.00159854361020706
+LexicalReordering0_phr-tgt-first-rand-cluster_5-2 0.461494697425906
+LexicalReordering0_phr-tgt-first-rand-cluster_6-0 -0.200804523387127
+LexicalReordering0_phr-tgt-first-rand-cluster_6-2 0.694608857640745
+LexicalReordering0_phr-tgt-first-rand-cluster_6-2 -0.691489597242047
+LexicalReordering0_phr-tgt-first-rand-cluster_8-0 -0.0632364235072771
+LexicalReordering0_phr-tgt-first-rand-cluster_8-2 -0.790712107486577
+LexicalReordering0_phr-tgt-first-rand-cluster_8-2 -0.282616778919433
+LexicalReordering0_phr-tgt-first-rand-cluster_9-0 0.214467545176269
+LexicalReordering0_phr-tgt-first-rand-cluster_9-0 0.934490383803961
+LexicalReordering0_phr-tgt-first-rand-cluster_9-0 0.977337697545543
+LexicalReordering0_phr-tgt-first-rand-cluster_9-2 0.0728847979801373
+LexicalReordering0_phr-tgt-first-topn-but-2 0.0791164409420517
+LexicalReordering0_phr-tgt-first-topn-in-0 0.608839198245136
+LexicalReordering0_phr-tgt-first-topn-in-0 0.654407877127191
+LexicalReordering0_phr-tgt-first-topn-in-0 0.290070219603464
+LexicalReordering0_phr-tgt-first-topn-in-2 0.484443477934015
+LexicalReordering0_phr-tgt-first-topn-is-0 -0.676508018044956
+LexicalReordering0_phr-tgt-first-topn-more-0 -0.0836642245063004
+LexicalReordering0_phr-tgt-first-topn-now-0 -0.216681340909119
+LexicalReordering0_phr-tgt-first-topn-of-0 0.369841526713437
+LexicalReordering0_phr-tgt-first-topn-of-0 0.595890344349669
+LexicalReordering0_phr-tgt-first-topn-of-0 -0.155040304713232
+LexicalReordering0_phr-tgt-first-topn-of-2 -0.606548294847371
+LexicalReordering0_phr-tgt-first-topn-the-0 0.403341595183072
+LexicalReordering0_phr-tgt-first-topn-the-0 0.270667685527258
+LexicalReordering0_phr-tgt-first-topn-the-2 0.00657231355923926
+LexicalReordering0_phr-tgt-first-topn-this-0 0.908614286606635
+LexicalReordering0_phr-tgt-first-topn-this-2 0.399810231317737
+LexicalReordering0_phr-tgt-first-topn-time-0 -0.289718160553576
+LexicalReordering0_phr-tgt-first-topn-to-0 0.631592708781845
+LexicalReordering0_phr-tgt-first-topn-to-2 0.611987492029286
+LexicalReordering0_phr-tgt-first-topn-we-2 -0.0757547538593641
+LexicalReordering0_phr-tgt-last-rand-cluster_0-0 0.180148193226159
+LexicalReordering0_phr-tgt-last-rand-cluster_0-2 -0.981238157245492
+LexicalReordering0_phr-tgt-last-rand-cluster_0-2 -0.639229745723739
+LexicalReordering0_phr-tgt-last-rand-cluster_1-0 0.687578757342159
+LexicalReordering0_phr-tgt-last-rand-cluster_1-0 -0.247202314813848
+LexicalReordering0_phr-tgt-last-rand-cluster_1-2 -0.0911524452963093
+LexicalReordering0_phr-tgt-last-rand-cluster_1-2 0.0539628779313119
+LexicalReordering0_phr-tgt-last-rand-cluster_2-0 0.122830208723038
+LexicalReordering0_phr-tgt-last-rand-cluster_2-0 -0.943553794172146
+LexicalReordering0_phr-tgt-last-rand-cluster_2-0 -0.571464872711296
+LexicalReordering0_phr-tgt-last-rand-cluster_2-1 0.644039403854109
+LexicalReordering0_phr-tgt-last-rand-cluster_2-2 0.943308526991395
+LexicalReordering0_phr-tgt-last-rand-cluster_2-2 0.174814867851268
+LexicalReordering0_phr-tgt-last-rand-cluster_4-0 0.132768900743763
+LexicalReordering0_phr-tgt-last-rand-cluster_4-2 -0.580314046075912
+LexicalReordering0_phr-tgt-last-rand-cluster_4-2 0.510357560353391
+LexicalReordering0_phr-tgt-last-rand-cluster_5-0 -0.374712501490535
+LexicalReordering0_phr-tgt-last-rand-cluster_5-2 0.417439866949017
+LexicalReordering0_phr-tgt-last-rand-cluster_6-0 0.244736605815504
+LexicalReordering0_phr-tgt-last-rand-cluster_6-0 0.61063802780982
+LexicalReordering0_phr-tgt-last-rand-cluster_6-2 -0.709014334877651
+LexicalReordering0_phr-tgt-last-rand-cluster_6-2 0.284374294852675
+LexicalReordering0_phr-tgt-last-rand-cluster_7-0 -0.825164862810325
+LexicalReordering0_phr-tgt-last-rand-cluster_8-0 0.553158019106156
+LexicalReordering0_phr-tgt-last-rand-cluster_8-2 0.679785697403247
+LexicalReordering0_phr-tgt-last-rand-cluster_9-0 0.173709847357735
+LexicalReordering0_phr-tgt-last-rand-cluster_9-0 0.562018276053678
+LexicalReordering0_phr-tgt-last-rand-cluster_9-2 0.291468247881234
+LexicalReordering0_phr-tgt-last-topn-but-2 -0.818350356603588
+LexicalReordering0_phr-tgt-last-topn-council-0 -0.202161027459233
+LexicalReordering0_phr-tgt-last-topn-in-0 0.853432024210562
+LexicalReordering0_phr-tgt-last-topn-in-0 0.160143399719864
+LexicalReordering0_phr-tgt-last-topn-in-0 0.878096014280572
+LexicalReordering0_phr-tgt-last-topn-in-2 -0.0147047861134197
+LexicalReordering0_phr-tgt-last-topn-is-0 -0.969914691285609
+LexicalReordering0_phr-tgt-last-topn-more-0 -0.453357342462617
+LexicalReordering0_phr-tgt-last-topn-now-0 -0.261350337936818
+LexicalReordering0_phr-tgt-last-topn-of-0 0.247647110101518
+LexicalReordering0_phr-tgt-last-topn-of-0 0.532492787044234
+LexicalReordering0_phr-tgt-last-topn-of-2 -0.184103545990745
+LexicalReordering0_phr-tgt-last-topn-the-0 -0.935613681727943
+LexicalReordering0_phr-tgt-last-topn-the-0 -0.200712829990472
+LexicalReordering0_phr-tgt-last-topn-the-0 0.881089210324504
+LexicalReordering0_phr-tgt-last-topn-the-2 0.637768319606529
+LexicalReordering0_phr-tgt-last-topn-this-0 0.185179326145629
+LexicalReordering0_phr-tgt-last-topn-this-2 0.176850637039074
+LexicalReordering0_phr-tgt-last-topn-to-0 0.600489460344804
+LexicalReordering0_phr-tgt-last-topn-to-2 -0.234594009791913
+LexicalReordering0_phr-tgt-last-topn-we-0 -0.406832951469937
+LexicalReordering0_phr-tgt-last-topn-which-2 0.416011025875342
+LexicalReordering0_stk-src-first-rand-cluster_0-0 -0.140650654629255
+LexicalReordering0_stk-src-first-rand-cluster_0-0 -0.339809664766697
+LexicalReordering0_stk-src-first-rand-cluster_0-0 0.839742453711011
+LexicalReordering0_stk-src-first-rand-cluster_0-2 -0.651032654018884
+LexicalReordering0_stk-src-first-rand-cluster_0-2 0.0843305917879746
+LexicalReordering0_stk-src-first-rand-cluster_1-0 -0.802470209226151
+LexicalReordering0_stk-src-first-rand-cluster_1-2 0.107724596739843
+LexicalReordering0_stk-src-first-rand-cluster_1-2 0.292702147881094
+LexicalReordering0_stk-src-first-rand-cluster_2-0 -0.87868267151508
+LexicalReordering0_stk-src-first-rand-cluster_2-0 0.214397457301096
+LexicalReordering0_stk-src-first-rand-cluster_2-2 -0.103741750541332
+LexicalReordering0_stk-src-first-rand-cluster_3-0 -0.0810593366416654
+LexicalReordering0_stk-src-first-rand-cluster_3-0 -0.995351146444435
+LexicalReordering0_stk-src-first-rand-cluster_3-2 0.727783473185646
+LexicalReordering0_stk-src-first-rand-cluster_3-2 0.756605913385556
+LexicalReordering0_stk-src-first-rand-cluster_4-0 -0.949180014972093
+LexicalReordering0_stk-src-first-rand-cluster_4-2 0.542052723391819
+LexicalReordering0_stk-src-first-rand-cluster_5-0 0.27290232848825
+LexicalReordering0_stk-src-first-rand-cluster_5-0 -0.443200999109166
+LexicalReordering0_stk-src-first-rand-cluster_5-1 -0.456025930868243
+LexicalReordering0_stk-src-first-rand-cluster_5-2 -0.503238662464142
+LexicalReordering0_stk-src-first-rand-cluster_5-2 0.647069063266493
+LexicalReordering0_stk-src-first-rand-cluster_6-0 -0.0721947833225727
+LexicalReordering0_stk-src-first-rand-cluster_6-0 -0.787304027159827
+LexicalReordering0_stk-src-first-rand-cluster_6-2 -0.302197666223933
+LexicalReordering0_stk-src-first-rand-cluster_6-2 0.22190542598927
+LexicalReordering0_stk-src-first-rand-cluster_6-2 0.980400238472697
+LexicalReordering0_stk-src-first-rand-cluster_7-0 -0.707056221150829
+LexicalReordering0_stk-src-first-rand-cluster_7-2 -0.235253618103982
+LexicalReordering0_stk-src-first-rand-cluster_7-2 -0.618527324438723
+LexicalReordering0_stk-src-first-rand-cluster_7-2 0.238506808046282
+LexicalReordering0_stk-src-first-rand-cluster_7-2 0.437351740629502
+LexicalReordering0_stk-src-first-rand-cluster_8-0 -0.0943965037758261
+LexicalReordering0_stk-src-first-rand-cluster_8-0 -0.808182580067658
+LexicalReordering0_stk-src-first-rand-cluster_8-2 0.200836426187976
+LexicalReordering0_stk-src-first-rand-cluster_9-0 -0.636516073688092
+LexicalReordering0_stk-src-first-rand-cluster_9-0 0.328658901682829
+LexicalReordering0_stk-src-first-rand-cluster_9-2 -0.600723679698369
+LexicalReordering0_stk-src-first-topn-ce-0 -0.261058876888285
+LexicalReordering0_stk-src-first-topn-ceux-0 0.581964672884645
+LexicalReordering0_stk-src-first-topn-ceux-2 -0.125340089601977
+LexicalReordering0_stk-src-first-topn-chacun-0 -0.262019722475621
+LexicalReordering0_stk-src-first-topn-dans-2 -0.581791626103751
+LexicalReordering0_stk-src-first-topn-de-0 0.0787291101332173
+LexicalReordering0_stk-src-first-topn-de-2 -0.520015678891994
+LexicalReordering0_stk-src-first-topn-de-2 -0.595155518511028
+LexicalReordering0_stk-src-first-topn-droit-0 -0.927885727969851
+LexicalReordering0_stk-src-first-topn-droit-2 -0.715401499431358
+LexicalReordering0_stk-src-first-topn-et-2 -0.239433333403937
+LexicalReordering0_stk-src-first-topn-faire-0 -0.307306930045137
+LexicalReordering0_stk-src-first-topn-l'-0 -0.11635831210171
+LexicalReordering0_stk-src-first-topn-l'-2 0.411089792469504
+LexicalReordering0_stk-src-first-topn-nous-2 0.378009330174322
+LexicalReordering0_stk-src-first-topn-pays-0 0.075061735626953
+LexicalReordering0_stk-src-first-topn-que-0 -0.323125551870987
+LexicalReordering0_stk-src-first-topn-que-2 0.445457223104448
+LexicalReordering0_stk-src-first-topn-que-2 -0.287710744141563
+LexicalReordering0_stk-src-first-topn-un-0 0.581914064089723
+LexicalReordering0_stk-src-last-rand-cluster_0-0 -0.0266512988843317
+LexicalReordering0_stk-src-last-rand-cluster_0-0 -0.631673336794343
+LexicalReordering0_stk-src-last-rand-cluster_0-2 -0.200134186701192
+LexicalReordering0_stk-src-last-rand-cluster_0-2 -0.17748669436542
+LexicalReordering0_stk-src-last-rand-cluster_1-0 -0.970018291266683
+LexicalReordering0_stk-src-last-rand-cluster_1-2 -0.0219387131697104
+LexicalReordering0_stk-src-last-rand-cluster_1-2 -0.636870527227686
+LexicalReordering0_stk-src-last-rand-cluster_2-0 0.384776305986499
+LexicalReordering0_stk-src-last-rand-cluster_2-0 0.987759449290849
+LexicalReordering0_stk-src-last-rand-cluster_2-2 0.977580707875738
+LexicalReordering0_stk-src-last-rand-cluster_3-0 0.199582422589273
+LexicalReordering0_stk-src-last-rand-cluster_3-2 -0.889383930528759
+LexicalReordering0_stk-src-last-rand-cluster_3-2 0.39355075709085
+LexicalReordering0_stk-src-last-rand-cluster_4-0 0.50838557070599
+LexicalReordering0_stk-src-last-rand-cluster_4-2 0.140739246133663
+LexicalReordering0_stk-src-last-rand-cluster_4-2 0.611319528262051
+LexicalReordering0_stk-src-last-rand-cluster_5-0 -0.286619615385945
+LexicalReordering0_stk-src-last-rand-cluster_5-0 -0.684093657399735
+LexicalReordering0_stk-src-last-rand-cluster_5-1 0.436556393430394
+LexicalReordering0_stk-src-last-rand-cluster_5-2 0.699423168004905
+LexicalReordering0_stk-src-last-rand-cluster_5-2 0.567439479302266
+LexicalReordering0_stk-src-last-rand-cluster_6-0 -0.680860644948474
+LexicalReordering0_stk-src-last-rand-cluster_6-0 0.757571557621716
+LexicalReordering0_stk-src-last-rand-cluster_6-2 -0.316393161655945
+LexicalReordering0_stk-src-last-rand-cluster_6-2 0.84949264318314
+LexicalReordering0_stk-src-last-rand-cluster_6-2 0.0612456043213498
+LexicalReordering0_stk-src-last-rand-cluster_7-0 0.301436325035624
+LexicalReordering0_stk-src-last-rand-cluster_7-2 0.866840981654725
+LexicalReordering0_stk-src-last-rand-cluster_7-2 -0.258140884837701
+LexicalReordering0_stk-src-last-rand-cluster_7-2 -0.231990925900938
+LexicalReordering0_stk-src-last-rand-cluster_8-0 -0.208014266357608
+LexicalReordering0_stk-src-last-rand-cluster_8-0 0.427660269637535
+LexicalReordering0_stk-src-last-rand-cluster_8-0 0.0287548077027111
+LexicalReordering0_stk-src-last-rand-cluster_8-2 -0.624327990383058
+LexicalReordering0_stk-src-last-rand-cluster_9-0 -0.202515226378821
+LexicalReordering0_stk-src-last-rand-cluster_9-0 -0.871487129660686
+LexicalReordering0_stk-src-last-rand-cluster_9-2 0.703685066818366
+LexicalReordering0_stk-src-last-topn-ce-0 -0.347174721860291
+LexicalReordering0_stk-src-last-topn-chacun-0 -0.118447479503104
+LexicalReordering0_stk-src-last-topn-dans-2 -0.881585097362311
+LexicalReordering0_stk-src-last-topn-de-0 -0.649771768171234
+LexicalReordering0_stk-src-last-topn-de-2 -0.416876679624586
+LexicalReordering0_stk-src-last-topn-de-2 0.028067630858331
+LexicalReordering0_stk-src-last-topn-droit-0 -0.729360303738069
+LexicalReordering0_stk-src-last-topn-droit-2 0.370650474152797
+LexicalReordering0_stk-src-last-topn-et-0 0.553255856046256
+LexicalReordering0_stk-src-last-topn-et-2 -0.276067521968216
+LexicalReordering0_stk-src-last-topn-faire-0 0.967156888020249
+LexicalReordering0_stk-src-last-topn-l'-0 0.0952961175650842
+LexicalReordering0_stk-src-last-topn-l'-2 0.0667330796117582
+LexicalReordering0_stk-src-last-topn-l'-2 0.495995385260287
+LexicalReordering0_stk-src-last-topn-nous-2 0.613522774063831
+LexicalReordering0_stk-src-last-topn-pays-0 0.91080781079495
+LexicalReordering0_stk-src-last-topn-peu-0 0.0477681939531394
+LexicalReordering0_stk-src-last-topn-que-0 0.817029351926706
+LexicalReordering0_stk-src-last-topn-que-2 0.200676328740634
+LexicalReordering0_stk-src-last-topn-qui-0 -0.388599337882368
+LexicalReordering0_stk-tgt-first-rand-cluster_0-0 -0.91373859429337
+LexicalReordering0_stk-tgt-first-rand-cluster_0-0 -0.361980510840127
+LexicalReordering0_stk-tgt-first-rand-cluster_0-2 -0.660369482122967
+LexicalReordering0_stk-tgt-first-rand-cluster_0-2 0.550346879669462
+LexicalReordering0_stk-tgt-first-rand-cluster_1-0 -0.113756429125125
+LexicalReordering0_stk-tgt-first-rand-cluster_1-0 -0.331051790223896
+LexicalReordering0_stk-tgt-first-rand-cluster_1-0 -0.0463683968268569
+LexicalReordering0_stk-tgt-first-rand-cluster_2-0 -0.774524284386786
+LexicalReordering0_stk-tgt-first-rand-cluster_2-0 -0.195983841650509
+LexicalReordering0_stk-tgt-first-rand-cluster_2-2 -0.502134821065695
+LexicalReordering0_stk-tgt-first-rand-cluster_2-2 -0.551494320192255
+LexicalReordering0_stk-tgt-first-rand-cluster_2-2 -0.418939288013121
+LexicalReordering0_stk-tgt-first-rand-cluster_4-0 -0.307232282955773
+LexicalReordering0_stk-tgt-first-rand-cluster_4-2 -0.930383748878896
+LexicalReordering0_stk-tgt-first-rand-cluster_5-2 0.0803873363214294
+LexicalReordering0_stk-tgt-first-rand-cluster_6-0 -0.511594483911352
+LexicalReordering0_stk-tgt-first-rand-cluster_6-0 -0.29195378553289
+LexicalReordering0_stk-tgt-first-rand-cluster_6-1 -0.416239778866739
+LexicalReordering0_stk-tgt-first-rand-cluster_6-2 -0.558154300618291
+LexicalReordering0_stk-tgt-first-rand-cluster_8-0 -0.950546001417081
+LexicalReordering0_stk-tgt-first-rand-cluster_8-2 -0.420237914248652
+LexicalReordering0_stk-tgt-first-rand-cluster_9-0 -0.0602476734121495
+LexicalReordering0_stk-tgt-first-rand-cluster_9-0 -0.310146148868476
+LexicalReordering0_stk-tgt-first-rand-cluster_9-2 0.0537931931566789
+LexicalReordering0_stk-tgt-first-rand-cluster_9-2 0.834279217418661
+LexicalReordering0_stk-tgt-first-topn-but-0 -0.838502817833458
+LexicalReordering0_stk-tgt-first-topn-in-0 0.195604308482707
+LexicalReordering0_stk-tgt-first-topn-in-2 0.14269180751262
+LexicalReordering0_stk-tgt-first-topn-in-2 0.17376101446515
+LexicalReordering0_stk-tgt-first-topn-is-0 0.259199326288538
+LexicalReordering0_stk-tgt-first-topn-more-2 -0.283378443061359
+LexicalReordering0_stk-tgt-first-topn-now-0 0.0587758567549201
+LexicalReordering0_stk-tgt-first-topn-of-0 0.714666787738672
+LexicalReordering0_stk-tgt-first-topn-of-2 -0.498355055792459
+LexicalReordering0_stk-tgt-first-topn-of-2 -0.358021838684515
+LexicalReordering0_stk-tgt-first-topn-of-2 -0.617710533194384
+LexicalReordering0_stk-tgt-first-topn-the-0 0.984780576018146
+LexicalReordering0_stk-tgt-first-topn-the-0 -0.37453827735861
+LexicalReordering0_stk-tgt-first-topn-the-2 -0.836050642920974
+LexicalReordering0_stk-tgt-first-topn-the-2 -0.998423787615963
+LexicalReordering0_stk-tgt-first-topn-the-2 0.816290808709077
+LexicalReordering0_stk-tgt-first-topn-this-0 -0.0703966850312128
+LexicalReordering0_stk-tgt-first-topn-time-0 0.862657883924335
+LexicalReordering0_stk-tgt-first-topn-to-2 0.394647616288808
+LexicalReordering0_stk-tgt-first-topn-we-2 -0.204634454363976
+LexicalReordering0_stk-tgt-last-rand-cluster_0-0 -0.895381322234172
+LexicalReordering0_stk-tgt-last-rand-cluster_0-0 0.788931782698093
+LexicalReordering0_stk-tgt-last-rand-cluster_0-2 -0.200066230758551
+LexicalReordering0_stk-tgt-last-rand-cluster_0-2 0.386775025041622
+LexicalReordering0_stk-tgt-last-rand-cluster_1-0 -0.0802272959941916
+LexicalReordering0_stk-tgt-last-rand-cluster_1-0 -0.0142614372014052
+LexicalReordering0_stk-tgt-last-rand-cluster_1-0 -0.751760442617353
+LexicalReordering0_stk-tgt-last-rand-cluster_1-2 0.802041534593194
+LexicalReordering0_stk-tgt-last-rand-cluster_2-0 0.210611250609091
+LexicalReordering0_stk-tgt-last-rand-cluster_2-0 -0.0525648152139055
+LexicalReordering0_stk-tgt-last-rand-cluster_2-2 0.966511832656778
+LexicalReordering0_stk-tgt-last-rand-cluster_2-2 -0.915763182048131
+LexicalReordering0_stk-tgt-last-rand-cluster_2-2 -0.0698110367944338
+LexicalReordering0_stk-tgt-last-rand-cluster_4-0 0.882200317096313
+LexicalReordering0_stk-tgt-last-rand-cluster_4-2 -0.869538845222678
+LexicalReordering0_stk-tgt-last-rand-cluster_5-2 -0.388960033724437
+LexicalReordering0_stk-tgt-last-rand-cluster_6-0 0.0852303639605481
+LexicalReordering0_stk-tgt-last-rand-cluster_6-0 0.0761589414725918
+LexicalReordering0_stk-tgt-last-rand-cluster_6-1 -0.34817040276468
+LexicalReordering0_stk-tgt-last-rand-cluster_6-2 -0.45459535509395
+LexicalReordering0_stk-tgt-last-rand-cluster_7-2 0.19155161411571
+LexicalReordering0_stk-tgt-last-rand-cluster_8-0 -0.926114775982676
+LexicalReordering0_stk-tgt-last-rand-cluster_8-2 -0.517143331104933
+LexicalReordering0_stk-tgt-last-rand-cluster_9-0 0.871804195431785
+LexicalReordering0_stk-tgt-last-rand-cluster_9-0 0.249960316509956
+LexicalReordering0_stk-tgt-last-rand-cluster_9-2 -0.138556737389045
+LexicalReordering0_stk-tgt-last-rand-cluster_9-2 -0.317778217884239
+LexicalReordering0_stk-tgt-last-topn-but-0 -0.86658274267797
+LexicalReordering0_stk-tgt-last-topn-council-0 -0.7553481902291
+LexicalReordering0_stk-tgt-last-topn-in-0 -0.506587508143006
+LexicalReordering0_stk-tgt-last-topn-in-2 0.621637023044855
+LexicalReordering0_stk-tgt-last-topn-in-2 -0.674074303605757
+LexicalReordering0_stk-tgt-last-topn-is-0 -0.337839249894088
+LexicalReordering0_stk-tgt-last-topn-is-2 0.529210798684154
+LexicalReordering0_stk-tgt-last-topn-more-2 0.659781374748405
+LexicalReordering0_stk-tgt-last-topn-now-0 0.507211434505614
+LexicalReordering0_stk-tgt-last-topn-of-0 0.662784503672455
+LexicalReordering0_stk-tgt-last-topn-of-2 -0.222510599728132
+LexicalReordering0_stk-tgt-last-topn-of-2 -0.658889865824278
+LexicalReordering0_stk-tgt-last-topn-the-0 -0.644200128949002
+LexicalReordering0_stk-tgt-last-topn-the-2 -0.768101892629247
+LexicalReordering0_stk-tgt-last-topn-the-2 0.887694886063095
+LexicalReordering0_stk-tgt-last-topn-the-2 -0.306805825399834
+LexicalReordering0_stk-tgt-last-topn-the-2 -0.632704402896543
+LexicalReordering0_stk-tgt-last-topn-this-0 -0.899192576422436
+LexicalReordering0_stk-tgt-last-topn-to-2 0.6285911522885
+LexicalReordering0_stk-tgt-last-topn-we-2 0.0308460611349801
+LexicalReordering0_stk-tgt-last-topn-which-0 -0.263568347650029