From eed255a58db17cf9dda9fee75f1fa813b45c934d Mon Sep 17 00:00:00 2001 From: thomwolf Date: Tue, 20 Nov 2018 10:02:57 +0100 Subject: [PATCH] fixing CLI typo in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 707818b4456..f2137a218c5 100644 --- a/README.md +++ b/README.md @@ -497,9 +497,9 @@ Here is an example of the conversion process for a pre-trained `BERT-Base Uncase export BERT_BASE_DIR=/path/to/bert/uncased_L-12_H-768_A-12 pytorch_pretrained_bert convert_tf_checkpoint_to_pytorch \ - --tf_checkpoint_path $BERT_BASE_DIR/bert_model.ckpt \ - --bert_config_file $BERT_BASE_DIR/bert_config.json \ - --pytorch_dump_path $BERT_BASE_DIR/pytorch_model.bin + $BERT_BASE_DIR/bert_model.ckpt \ + $BERT_BASE_DIR/bert_config.json \ + $BERT_BASE_DIR/pytorch_model.bin ``` You can download Google's pre-trained models for the conversion [here](https://github.com/google-research/bert#pre-trained-models).