-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
23 lines (18 loc) · 840 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CUDA_VISIBLE_DEVICES=0 python inference_local.py --model_name=openai-community/gpt2 --dataset_type=time_t --sanity_check
CUDA_VISIBLE_DEVICES=0 python inference_nli.py --model_name=facebook/bart-large-mnli --dataset_type=time_t --sanity_check
python inference.py \
--model_name="gpt-35-turbo" \
--dataset_type=time_t \
--prompt_mode=ZS_vanilla \
--api=azure \
--model_on_api \
--sanity_check
CUDA_VISIBLE_DEVICES=0 python inference_local.py --model_name=openai-community/gpt2 --dataset_type=time_t1 --sanity_check
CUDA_VISIBLE_DEVICES=0 python inference_nli.py --model_name=facebook/bart-large-mnli --dataset_type=time_t1 --sanity_check
python inference.py \
--model_name="gpt-35-turbo" \
--dataset_type=time_t1 \
--prompt_mode=ZS_vanilla \
--api=azure \
--model_on_api \
--sanity_check