From c879318cc59cba27ad2f0d178ee03b924c3882c6 Mon Sep 17 00:00:00 2001 From: Alan Ji <3140102143@zju.edu.cn> Date: Tue, 25 Jul 2023 20:11:56 +0800 Subject: [PATCH] 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 --- examples/pytorch/multiple-choice/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pytorch/multiple-choice/README.md b/examples/pytorch/multiple-choice/README.md index 735d1f5f33..8d56ccfe3d 100644 --- a/examples/pytorch/multiple-choice/README.md +++ b/examples/pytorch/multiple-choice/README.md @@ -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 ```