minor change to calling irst training

This commit is contained in:
Hieu Hoang 2012-10-14 19:51:46 +01:00
parent a0ce62e795
commit f3ec76ac56
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit a57b9ba58acc1e2791e5e581ee63dabd839cadd1
Subproject commit f0bb48dad05db4a12b41f5c8def9c2d097b2e3b4

View File

@ -71,11 +71,11 @@ print "extension is $ext\n";
if ($ext eq "gz")
{
$cmd = "$irstPath/compile-lm $tempPath/iarpa.gz --text yes /dev/stdout | gzip -c > $lmPath";
$cmd = "$irstPath/compile-lm --text $tempPath/iarpa.gz /dev/stdout | gzip -c > $lmPath";
}
else
{
$cmd = "$irstPath/compile-lm $tempPath/iarpa.gz --text yes $lmPath";
$cmd = "$irstPath/compile-lm --text $tempPath/iarpa.gz $lmPath";
}
print STDERR "EXECUTING $cmd\n";