From eb3e6cb04fc79c2e23b95c4833e2e10530e76abb Mon Sep 17 00:00:00 2001 From: Lysandre Date: Mon, 9 Mar 2020 10:54:18 -0400 Subject: [PATCH] cased -> uncased in BERT SQuAD example closes #3183 --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index 17b4c2f7f..b2391b03c 100644 --- a/examples/README.md +++ b/examples/README.md @@ -379,7 +379,7 @@ export SQUAD_DIR=/path/to/SQUAD python run_squad.py \ --model_type bert \ - --model_name_or_path bert-base-cased \ + --model_name_or_path bert-base-uncased \ --do_train \ --do_eval \ --do_lower_case \