Commit 8edc898f authored by nhatchan's avatar nhatchan
Browse files

Fix documentation (missing backslashes)

This PR adds missing backslashes in LM Fine-tuning subsection in README.md.
parent 35becc6d
...@@ -506,13 +506,13 @@ Training one epoch on this corpus takes about 1:20h on 4 x NVIDIA Tesla P100 wit ...@@ -506,13 +506,13 @@ Training one epoch on this corpus takes about 1:20h on 4 x NVIDIA Tesla P100 wit
```shell ```shell
python run_lm_finetuning.py \ python run_lm_finetuning.py \
--bert_model bert-base-cased --bert_model bert-base-cased \
--do_train --do_train \
--train_file samples/sample_text.txt --train_file samples/sample_text.txt \
--output_dir models --output_dir models \
--num_train_epochs 5.0 --num_train_epochs 5.0 \
--learning_rate 3e-5 --learning_rate 3e-5 \
--train_batch_size 32 --train_batch_size 32 \
--max_seq_length 128 --max_seq_length 128
``` ```
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment