-
Notifications
You must be signed in to change notification settings - Fork 1
/
detection.sh
12 lines (12 loc) · 957 Bytes
/
detection.sh
1
2
3
4
5
6
7
8
9
10
11
12
username=$1
python scripts/detection.py --benchmark gsm8k --type rephrase --username $username &
python scripts/detection.py --benchmark gsm8k --type synthetic --username $username &
python scripts/detection.py --benchmark gsm8k --type reference --username $username &
python scripts/detection.py --benchmark arc --type rephrase --username $username &
python scripts/detection.py --benchmark arc --type synthetic --username $username &
python scripts/detection.py --benchmark arc --type reference --username $username &
python scripts/detection.py --benchmark mmlu --type rephrase --username $username &
python scripts/detection.py --benchmark mmlu --type synthetic --username $username &
python scripts/detection.py --benchmark hellaswag --type rephrase --username $username &
python scripts/detection.py --benchmark hellaswag --type synthetic --username $username &
python scripts/detection.py --benchmark hellaswag --type reference --username $username &