lightningdot
copied
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions
13 lines
301 B
13 lines
301 B
2 years ago
|
GQA_ANN='/db/raw_data/GQA/questions1.2/train_all_questions/'
|
||
|
SUFFIX="base-cased"
|
||
|
TXT_DB='/db/TXT_DB_v3'
|
||
|
SPLIT="train"
|
||
|
|
||
|
for i in 2 3 4 5 6 7 8 9; do
|
||
|
python prepro.py --task gqa \
|
||
|
--annotations $GQA_ANN/${SPLIT}_all_questions_$i.json \
|
||
|
--output $TXT_DB/pretrain_gqa_${SPLIT}_${i}_$SUFFIX.db
|
||
|
done
|
||
|
|
||
|
|