From c3d6f33918bd67fd624865c3431dc2977d15450a Mon Sep 17 00:00:00 2001 From: Yoshitomo Matsubara Date: Fri, 23 Apr 2021 04:48:42 -0700 Subject: [PATCH] fixed typos (#11391) --- examples/pytorch/text-classification/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/pytorch/text-classification/README.md b/examples/pytorch/text-classification/README.md index 0ca82e0335..3952dd0fa5 100644 --- a/examples/pytorch/text-classification/README.md +++ b/examples/pytorch/text-classification/README.md @@ -110,7 +110,7 @@ export TASK_NAME=mrpc python run_glue_no_trainer.py \ --model_name_or_path bert-base-cased \ --task_name $TASK_NAME \ - --max_seq_length 128 \ + --max_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 2e-5 \ --num_train_epochs 3 \ @@ -137,7 +137,7 @@ export TASK_NAME=mrpc accelerate launch run_glue_no_trainer.py \ --model_name_or_path bert-base-cased \ --task_name $TASK_NAME \ - --max_seq_length 128 \ + --max_length 128 \ --per_device_train_batch_size 32 \ --learning_rate 2e-5 \ --num_train_epochs 3 \