Skip to content

Commit

Permalink
remove default path
Browse files Browse the repository at this point in the history
  • Loading branch information
sharathns93 committed May 15, 2018
1 parent 964ea8b commit 1f74629
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions examples/reading_comprehension/prepare_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,14 +197,11 @@ def get_ids_list(data_lists, vocab):
# parse the command line arguments
parser = argparse.ArgumentParser()

parser.add_argument('--data_path', default='',
help='enter path where training data and the \
parser.add_argument('--data_path',help='enter path where training data and the \
glove embeddings were downloaded',
type=str,action=check_size(1,1000))

parser.add_argument(
'--no_preprocess_glove',
action="store_true",
parser.add_argument('--no_preprocess_glove',action="store_true",
help='Chose whether or not to preprocess glove embeddings')

parser.set_defaults()
Expand Down

0 comments on commit 1f74629

Please sign in to comment.