From e8dd81dd30d03239e4ba5690b684c26788b2563e Mon Sep 17 00:00:00 2001 From: tianxin04 Date: Mon, 11 Mar 2019 15:39:19 +0800 Subject: [PATCH] fix typo --- BERT/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BERT/README.md b/BERT/README.md index 527bd22..0c3ff97 100644 --- a/BERT/README.md +++ b/BERT/README.md @@ -206,10 +206,10 @@ python -u run_squad.py --use_cuda true\ --epoch 2 \ --max_seq_len 384 \ --bert_config_path ${BERT_BASE_PATH}/bert_config.json \ - --predict_file S{SQUAD_PATH}/dev-v1.1.json \ + --predict_file ${SQUAD_PATH}/dev-v1.1.json \ --do_lower_case true \ --doc_stride 128 \ - --train_file S{SQUAD_PATH}/train-v1.1.json \ + --train_file ${SQUAD_PATH}/train-v1.1.json \ --learning_rate 3e-5 \ --lr_scheduler linear_warmup_decay \ --skip_steps 10 \ @@ -250,10 +250,10 @@ python -u run_squad.py --use_cuda true \ --epoch 2 \ --max_seq_len 384 \ --bert_config_path ${BERT_BASE_PATH}/bert_config.json \ - --predict_file S{SQUAD_PATH}/dev-v2.0.json \ + --predict_file ${SQUAD_PATH}/dev-v2.0.json \ --do_lower_case true \ --doc_stride 128 \ - --train_file S{SQUAD_PATH}/train-v2.0.json \ + --train_file ${SQUAD_PATH}/train-v2.0.json \ --learning_rate 3e-5 \ --skip_steps 10 \ --lr_scheduler linear_warmup_decay \ -- GitLab