lcolonn commited on
Commit
caa450f
1 Parent(s): 4bd5cd3

fix: wrong path

Browse files
Files changed (1) hide show
  1. patfig.py +1 -1
patfig.py CHANGED
@@ -63,7 +63,7 @@ class PatFig(GeneratorBasedBuilder):
63
  name=datasets.Split.TRAIN, gen_kwargs={"images_dir": f'{downloaded_files["train_images"]}/train', "annotations_dir": f'{downloaded_files["annotations_train"]}/annotations_train.json'}
64
  ),
65
  datasets.SplitGenerator(
66
- name=datasets.Split.TEST, gen_kwargs={"images_dir": f'{downloaded_files["test_images"]}/train', "annotations_dir": f'{downloaded_files["annotations_test"]}/annotations_test.json'}
67
  ),
68
  ]
69
 
 
63
  name=datasets.Split.TRAIN, gen_kwargs={"images_dir": f'{downloaded_files["train_images"]}/train', "annotations_dir": f'{downloaded_files["annotations_train"]}/annotations_train.json'}
64
  ),
65
  datasets.SplitGenerator(
66
+ name=datasets.Split.TEST, gen_kwargs={"images_dir": f'{downloaded_files["test_images"]}/test', "annotations_dir": f'{downloaded_files["annotations_test"]}/annotations_test.json'}
67
  ),
68
  ]
69