mirror of
https://github.com/wassname/Castor.git
synced 2026-09-25 13:10:11 +08:00
+ renamed sm_model + faster bridge by obtaining the IDF scores of a term directly from the Java server
10 lines
233 B
Bash
Executable File
10 lines
233 B
Bash
Executable File
#!/bin/csh -f
|
|
|
|
exp_dir=$1
|
|
judgement=${exp_dir}/gold.txt
|
|
output=${exp_dir}/submission.txt
|
|
|
|
./trec_eval-8.0/trec_eval -q -c ${judgement} ${output} > ${output}.treceval
|
|
tail -29 ${output}.treceval | grep -e 'map' -e 'recip_rank'
|
|
exit 0
|