-
Notifications
You must be signed in to change notification settings - Fork 0
/
do.sh
executable file
·43 lines (37 loc) · 1.24 KB
/
do.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
echo Indexing collections
python3 run.py prepare \
--repo osirrc2019/olddog \
--collections robust04=/export/data/ir/robust04=trectext core18=/export/data/ir/WashingtonPost.v2/data=json
echo Robust04 \(conjunctive\)
python3 run.py search \
--repo osirrc2019/olddog \
--output $(pwd)/out \
--qrels qrels/qrels.robust04.txt \
--topic topics/topics.robust04.txt \
--collection robust04 \
--opts out_file_name="robust04-conj" mode="conjunctive"
echo Robust04 \(disjunctive\)
python3 run.py search \
--repo osirrc2019/olddog \
--output $(pwd)/out \
--qrels qrels/qrels.robust04.txt \
--topic topics/topics.robust04.txt \
--collection robust04 \
--opts out_file_name="robust04-disj" mode="disjunctive"
echo Core18 \(conjunctive\)
python3 run.py search \
--repo osirrc2019/olddog \
--output $(pwd)/out \
--qrels qrels/qrels.core18.txt \
--topic topics/topics.core18.txt \
--collection core18 \
--opts out_file_name="core18-conj" mode="conjunctive"
echo Core18 \(disjunctive\)
python3 run.py search \
--repo osirrc2019/olddog \
--output $(pwd)/out \
--qrels qrels/qrels.core18.txt \
--topic topics/topics.core18.txt \
--collection core18 \
--opts out_file_name="core18-disj" mode="disjunctive"