Skip to content

Commit

Permalink
Fix typo in language-modeling README.md (#8287)
Browse files Browse the repository at this point in the history
  • Loading branch information
gpengzhi authored Nov 4, 2020
1 parent 7a7e2c2 commit 734afa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/language-modeling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ python run_mlm.py \
To run on your own training and validation files, use the following command:

```bash
python run_clm.py \
python run_mlm.py \
--model_name_or_path roberta-base \
--train_file path_to_train_file \
--validation_file path_to_validation_file \
--do_train \
--do_eval \
--output_dir /tmp/test-clm
--output_dir /tmp/test-mlm
```

If your dataset is organized with one sample per line, you can use the `--line_by_line` flag (otherwise the script
Expand Down

0 comments on commit 734afa3

Please sign in to comment.