From 8edc898f63eb9fe3739c2d8f518788a7a5f13ce0 Mon Sep 17 00:00:00 2001 From: nhatchan <46347328+nhatchan@users.noreply.github.com> Date: Sun, 13 Jan 2019 21:23:19 +0900 Subject: [PATCH] Fix documentation (missing backslashes) This PR adds missing backslashes in LM Fine-tuning subsection in README.md. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 915ccf635a..4c35e8b274 100644 --- a/README.md +++ b/README.md @@ -506,13 +506,13 @@ Training one epoch on this corpus takes about 1:20h on 4 x NVIDIA Tesla P100 wit ```shell python run_lm_finetuning.py \ - --bert_model bert-base-cased - --do_train - --train_file samples/sample_text.txt - --output_dir models - --num_train_epochs 5.0 - --learning_rate 3e-5 - --train_batch_size 32 + --bert_model bert-base-cased \ + --do_train \ + --train_file samples/sample_text.txt \ + --output_dir models \ + --num_train_epochs 5.0 \ + --learning_rate 3e-5 \ + --train_batch_size 32 \ --max_seq_length 128 ```