replace runtime with decaNLP

This commit is contained in:
Bryan Marcus McCann 2018-06-24 14:34:48 +00:00
parent faa1ad382e
commit fbf94815c8
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ def parse():
Returns the arguments from the command line.
"""
parser = ArgumentParser()
parser.add_argument('--data', default='/runtime/.data/', type=str, help='where to load data from.')
parser.add_argument('--save', default='/runtime/results', type=str, help='where to save results.')
parser.add_argument('--embeddings', default='/runtime/.embeddings', type=str, help='where to save embeddings.')
parser.add_argument('--data', default='/decaNLP/.data/', type=str, help='where to load data from.')
parser.add_argument('--save', default='/decaNLP/results', type=str, help='where to save results.')
parser.add_argument('--embeddings', default='/decaNLP/.embeddings', type=str, help='where to save embeddings.')
parser.add_argument('--train_tasks', nargs='+', type=str, help='tasks to use for training', required=True)
parser.add_argument('--train_iterations', nargs='+', type=int, help='number of iterations to focus on each task')