mirror of
https://github.com/wassname/Castor.git
synced 2026-08-30 11:13:52 +08:00
* Add TrecQA dataset and modularize MP-CNN infra * Stylistic improvements * Fix and warn about trec_eval path issue * Update README for MP-CNN * Update incorrect map/mrr * MP-CNN: address code review comments * Create common Castor pair Dataset class * Move map and mrr computation to Castor utils * Make map mrr utility trec_eval path more general
12 lines
198 B
Bash
Executable File
12 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
VERSION=9.0.5
|
|
|
|
wget https://github.com/usnistgov/trec_eval/archive/v${VERSION}.tar.gz
|
|
tar -xvzf v${VERSION}.tar.gz
|
|
cd trec_eval-${VERSION}
|
|
make
|
|
cd ..
|
|
|
|
rm -rf v${VERSION}.tar.gz
|