File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
examples/machine_reading_comprehension/SQuAD Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ def run(args):
236
236
237
237
if args .do_train :
238
238
if args .train_file :
239
- train_ds = load_dataset ('sqaud ' , data_files = args .train_file )
239
+ train_ds = load_dataset ('squad ' , data_files = args .train_file )
240
240
elif args .version_2_with_negative :
241
241
train_ds = load_dataset ('squad' , splits = 'train_v2' )
242
242
else :
@@ -320,7 +320,7 @@ def run(args):
320
320
321
321
if args .do_predict and rank == 0 :
322
322
if args .predict_file :
323
- dev_ds = load_dataset ('sqaud ' , data_files = args .predict_file )
323
+ dev_ds = load_dataset ('squad ' , data_files = args .predict_file )
324
324
elif args .version_2_with_negative :
325
325
dev_ds = load_dataset ('squad' , splits = 'dev_v2' )
326
326
else :
You can’t perform that action at this time.
0 commit comments