From febfe724175350d6b38d474be6658c72d4388d97 Mon Sep 17 00:00:00 2001 From: Yang Zhang Date: Fri, 7 Feb 2020 13:34:06 -0800 Subject: [PATCH] update doc Signed-off-by: Yang Zhang --- examples/nlp/question_answering/question_answering_squad.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/nlp/question_answering/question_answering_squad.py b/examples/nlp/question_answering/question_answering_squad.py index f2de80ab513d..a683752c8912 100755 --- a/examples/nlp/question_answering/question_answering_squad.py +++ b/examples/nlp/question_answering/question_answering_squad.py @@ -249,10 +249,10 @@ def create_pipeline( if __name__ == "__main__": args = parse_args() if not os.path.exists(args.dev_file): - raise FileNotFoundError("eval data not found. Datasets can be " "obtained using examples/scripts/get_squad.py") + raise FileNotFoundError("eval data not found. Datasets can be " "obtained using examples/nlp/scripts/get_squad.py") if not args.evaluation_only and not os.path.exists(args.train_file): raise FileNotFoundError( - "train data not found. Datasets can be " "obtained using examples/scripts/get_squad.py" + "train data not found. Datasets can be " "obtained using examples/nlp/scripts/get_squad.py" ) # Instantiate neural factory with supported backend