-
Notifications
You must be signed in to change notification settings - Fork 314
/
run_inference.sh
47 lines (44 loc) · 1.99 KB
/
run_inference.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
43
44
45
46
47
# base
CUDA_VISIBLE_DEVICES=0 python main_central.py \
--data_root data/ScienceQA/data \
--caption_file data/instruct_captions.json \
--model declare-lab/flan-alpaca-base \
--user_msg rationale --img_type vit \
--bs 8 --eval_bs 8 --epoch 20 --lr 8e-5 --output_len 512 \
--use_caption --use_generate --final_eval --prompt_format QCM-E \
--output_dir experiments \
--evaluate_dir models/mm-cot-base-rationale
CUDA_VISIBLE_DEVICES=0 python main_central.py \
--data_root data/ScienceQA/data \
--caption_file data/instruct_captions.json \
--model declare-lab/flan-alpaca-base \
--user_msg rationale --img_type vit \
--bs 8 --eval_bs 8 --epoch 20 --lr 8e-5 --output_len 64 \
--use_caption --use_generate --prompt_format QCMG-A \
--output_dir experiments \
--eval_le models/mm-cot-base-rationale/predictions_ans_eval.json \
--test_le models/mm-cot-base-rationale/predictions_ans_test.json \
--evaluate_dir models/mm-cot-base-answer
# large
# rationale generation
CUDA_VISIBLE_DEVICES=0,1,2,3 python main.py \
--data_root data/ScienceQA/data \
--caption_file data/instruct_captions.json \
--model declare-lab/flan-alpaca-large \
--user_msg rationale --img_type vit \
--bs 2 --eval_bs 4 --epoch 50 --lr 5e-5 --output_len 512 \
--use_caption --use_generate --prompt_format QCM-E \
--output_dir experiments \
--evaluate_dir models/mm-cot-large-rationale
# answer inference
CUDA_VISIBLE_DEVICES=0,1,2,3 python main_central.py \
--data_root data/ScienceQA/data \
--caption_file data/instruct_captions.json \
--model declare-lab/flan-alpaca-large \
--user_msg answer --img_type vit \
--bs 4 --eval_bs 8 --epoch 50 --lr 5e-5 --output_len 64 \
--use_caption --use_generate --prompt_format QCMG-A \
--output_dir experiments \
--eval_le models/mm-cot-large-rationale/predictions_ans_eval.json \
--test_le models/mm-cot-large-rationale/predictions_ans_test.json \
--evaluate_dir models/mm-cot-large-answer