jhclark / multeval

Easy Bootstrap Resampling and Approximate Randomization for BLEU, METEOR, and TER using Multiple Optimizer Runs. This implements "Better Hypothesis Testing for Statistical Machine Translation: Controlling for Optimizer Instability" from ACL 2011.

Home Page:http://www.cs.cmu.edu/~jhclark

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Found existing METEOR installation at ./lib/meteor-1.4 Error: Could not find or load main class multeval.MultEval

Blues5 opened this issue · comments

commented

./multeval.sh eval --refs example/refs.test2010.lc.tok.en.*
--baseline example/hyps.lc.tok.en.baseline.opt*
--meteor.language en
I get the following error while trying to run the sample files-
Found existing METEOR installation at ./lib/meteor-1.4
Error: Could not find or load main class multeval.MultEval

commented

I also get the same errors. Have you solved this issue?

commented

I have solved this issue through replacing
java -Dfile.encoding=UTF8 $flags -cp $terJar:$meteorJar:$scriptDir/multeval-${version}.jar multeval.MultEval "$@"
using
java -Dfile.encoding=UTF8 $flags -cp $terJar:$meteorJar:$scriptDir/multeval-${version}/multeval-${version}.jar multeval.MultEval "$@"
in file multeval.sh

Hello, I'm having the same issue. Lidra's solution did not work for me. Is there any other way to fix this error?

Running into the same issue

same issue

@fafafafaya @calclavia you have to run ant as described in the Readme here:
https://github.com/jhclark/multeval#building