transformers/examples/tensorflow/multiple-choice
2021-06-25 13:20:14 -07:00
..
README.md Examples reorg (#11350) 2021-04-21 11:11:20 -04:00
requirements.txt Examples reorg (#11350) 2021-04-21 11:11:20 -04:00
run_tf_multiple_choice.py remove extra white space from log format (#12360) 2021-06-25 13:20:14 -07:00
utils_multiple_choice.py Examples reorg (#11350) 2021-04-21 11:11:20 -04:00

Multiple Choice

Fine-tuning on SWAG

export SWAG_DIR=/path/to/swag_data_dir
python ./examples/multiple-choice/run_tf_multiple_choice.py \
--task_name swag \
--model_name_or_path bert-base-cased \
--do_train \
--do_eval \
--data_dir $SWAG_DIR \
--learning_rate 5e-5 \
--num_train_epochs 3 \
--max_seq_length 80 \
--output_dir models_bert/swag_base \
--per_gpu_eval_batch_size=16 \
--per_device_train_batch_size=16 \
--logging-dir logs \
--gradient_accumulation_steps 2 \
--overwrite_output