From 9b69986e8a37d5ad4200ddee1130c37a7bde4dd7 Mon Sep 17 00:00:00 2001 From: Fanli Lin Date: Wed, 12 Feb 2025 02:31:12 +0800 Subject: [PATCH] [docs] minor doc fix (#36127) fix --- 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 118234002c..91e28a51c8 100644 --- a/examples/pytorch/multiple-choice/README.md +++ b/examples/pytorch/multiple-choice/README.md @@ -21,7 +21,7 @@ limitations under the License. `run_swag` allows you to fine-tune any model from our [hub](https://huggingface.co/models) (as long as its architecture as a `ForMultipleChoice` version in the library) on the SWAG dataset or your own csv/jsonlines files as long as they are structured the same way. To make it works on another dataset, you will need to tweak the `preprocess_function` inside the script. ```bash -python examples/multiple-choice/run_swag.py \ +python examples/pytorch/multiple-choice/run_swag.py \ --model_name_or_path FacebookAI/roberta-base \ --do_train \ --do_eval \