replace per_gpu_eval_batch_size with per_device_eval_batch_size in readme of multiple-choice task (#25078)

replace `per_gpu_eval_batch_size` with `per_device_eval_batch_size`
in readme of multiple-choice
This commit is contained in:
Alan Ji 2023-07-25 20:11:56 +08:00 committed by GitHub
parent 25e443c0d4
commit c879318cc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ python examples/multiple-choice/run_swag.py \
--learning_rate 5e-5 \
--num_train_epochs 3 \
--output_dir /tmp/swag_base \
--per_gpu_eval_batch_size=16 \
--per_device_eval_batch_size=16 \
--per_device_train_batch_size=16 \
--overwrite_output
```