magic
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
17 lines
535 B
17 lines
535 B
2 years ago
|
CUDA_VISIBLE_DEVICES=0 python train.py\
|
||
|
--model_name gpt2\
|
||
|
--train_path ../data/mscoco/mscoco_train.json\
|
||
|
--dev_path ../data/mscoco/mscoco_val.json\
|
||
|
--test_path ../data/mscoco/mscoco_test.json\
|
||
|
--add_eos_token_to_data True\
|
||
|
--margin 0.5\
|
||
|
--max_len 64\
|
||
|
--number_of_gpu 1\
|
||
|
--batch_size_per_gpu 32\
|
||
|
--gradient_accumulation_steps 4\
|
||
|
--effective_batch_size 128\
|
||
|
--total_steps 20000\
|
||
|
--print_every 100\
|
||
|
--save_every 500\
|
||
|
--learning_rate 2e-5\
|
||
|
--save_path_prefix ./magic_mscoco/
|