"...src/components/nav/slideNav/ExperimentSummaryPanel.tsx" did not exist on "4668fc088ab66798be6cc998cba24986f8611848"
finetune_tpu.sh 435 Bytes
Newer Older
Suraj Patil's avatar
Suraj Patil committed
1
2
3
4
5
6
7
export TPU_NUM_CORES=8

# the proper usage is documented in the README, you need to specify data_dir, output_dir and model_name_or_path
# run ./builtin_trainer/finetune_tpu.sh --help to see all the possible options
python xla_spawn.py --num_cores $TPU_NUM_CORES \
    finetune_trainer.py \
    --learning_rate=3e-5 \
8
9
    --do_train --do_eval \
    --evaluation_strategy steps \
Suraj Patil's avatar
Suraj Patil committed
10
11
12
    --prediction_loss_only \
    --n_val 1000 \
    "$@"