Our solution is described in here
bash bin/extract_data.sh
bash bin/extract_features.sh
bash bin/extract_target.sh
seed=17493
depth=12 #11, 12 for Bert base, 23, 24 for Bert large
maxlen=220
batch_size=32
accumulation_steps=4
model_name=bert #gpt2, xlnet
CUDA_VISIBLE_DEVICES=3 python main_catalyst.py train --seed=$seed \
--depth=$depth \
--maxlen=$maxlen \
--batch_size=$batch_size \
--accumulation_steps=$accumulation_steps \
--model_name=$model_name
Change the settings as same as training phase. Ex:
seed=17493
depth=12
maxlen=220
batch_size=32
accumulation_steps=4
model_name=bert
Then
python make_submission.py