diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-04-26 21:19:56 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-04-26 21:19:56 -0400 |
commit | dfa5e38fa20814c41caf8a94d0f8ad5cbc8f4229 (patch) | |
tree | 0b2ab543f16f6a8b4b29b10f04a63c5ffbf4fa29 /rampion/rampion.pl | |
parent | d80ea9772e7d23e47bf144df8e8d8032d305c09b (diff) |
working rampion, gimpel&smith (2012)
Diffstat (limited to 'rampion/rampion.pl')
-rwxr-xr-x | rampion/rampion.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rampion/rampion.pl b/rampion/rampion.pl index fda2bac2..d29c02b3 100755 --- a/rampion/rampion.pl +++ b/rampion/rampion.pl @@ -301,10 +301,13 @@ while (1){ my $score = 0; my $icc = 0; my $inweights="$dir/weights.$im1"; + my $outweights="$dir/weights.$iteration"; $cmd="$MAPINPUT $dir/hgs > $dir/agenda.$im1"; print STDERR "COMMAND:\n$cmd\n"; check_call($cmd); - die "PLEASE IMPL"; + $cmd="$MAPPER $refs_comma_sep -m $metric -i $dir/agenda.$im1 -w $inweights > $outweights"; + check_call($cmd); + $lastWeightsFile = $outweights; $iteration++; print STDERR "\n==========\n"; } |