-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevaluate.sh
35 lines (32 loc) · 1.72 KB
/
evaluate.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
echo "TFIDF-GPT2"
python ./evaluator.py tfidf-gpt2 ./data/webtext.test.jsonl 0
python ./evaluator.py tfidf-gpt2 ./data/sim.test.jsonl 1
python ./evaluator.py tfidf-gpt2 ./data/adv.test.jsonl 1
python ./evaluator.py tfidf-gpt2 ./data/adv-tfidf.test.jsonl 1
python ./evaluator.py tfidf-gpt2 ./data/gpt-3-175.test.jsonl 1
python ./evaluator.py tfidf-gpt2 ./data/sim-neo.test.jsonl 1
python ./evaluator.py tfidf-gpt2 ./data/pile.test.jsonl 0
echo "TFIDF-GPT-NEO"
python ./evaluator.py tfidf-gpt-neo ./data/webtext.test.jsonl 0
python ./evaluator.py tfidf-gpt-neo ./data/sim.test.jsonl 1
python ./evaluator.py tfidf-gpt-neo ./data/adv.test.jsonl 1
python ./evaluator.py tfidf-gpt-neo ./data/adv-tfidf.test.jsonl 1
python ./evaluator.py tfidf-gpt-neo ./data/gpt-3-175.test.jsonl 1
python ./evaluator.py tfidf-gpt-neo ./data/sim-neo.test.jsonl 1
python ./evaluator.py tfidf-gpt-neo ./data/pile.test.jsonl 0
echo "RoBERTa"
python ./evaluator.py roberta ./data/webtext.test.jsonl 0
python ./evaluator.py roberta ./data/sim.test.jsonl 1
python ./evaluator.py roberta ./data/adv.test.jsonl 1
python ./evaluator.py roberta ./data/adv-tfidf.test.jsonl 1
python ./evaluator.py roberta ./data/gpt-3-175.test.jsonl 1
python ./evaluator.py roberta ./data/sim-neo.test.jsonl 1
python ./evaluator.py roberta ./data/pile.test.jsonl 0
echo "RoBERTa-Adv"
python ./evaluator.py roberta-adv ./data/webtext.test.jsonl 0
python ./evaluator.py roberta-adv ./data/sim.test.jsonl 1
python ./evaluator.py roberta-adv ./data/adv.test.jsonl 1
python ./evaluator.py roberta-adv ./data/adv-tfidf.test.jsonl 1
python ./evaluator.py roberta-adv ./data/gpt-3-175.test.jsonl 1
python ./evaluator.py roberta-adv ./data/sim-neo.test.jsonl 1
python ./evaluator.py roberta-adv ./data/pile.test.jsonl 0