HugoLaurencon
commited on
Commit
•
437986b
1
Parent(s):
744dc75
fix bug
Browse files- IIIT-5K.py +4 -4
IIIT-5K.py
CHANGED
@@ -74,15 +74,15 @@ class IIIT5K(datasets.GeneratorBasedBuilder):
|
|
74 |
datasets.SplitGenerator(
|
75 |
name=datasets.Split.TRAIN,
|
76 |
gen_kwargs={
|
77 |
-
"archive_path": archive_path,
|
78 |
-
"info_path": Path(archive_path) / "traindata.mat",
|
79 |
},
|
80 |
),
|
81 |
datasets.SplitGenerator(
|
82 |
name=datasets.Split.TEST,
|
83 |
gen_kwargs={
|
84 |
-
"archive_path": archive_path,
|
85 |
-
"info_path": Path(archive_path) / "testdata.mat",
|
86 |
},
|
87 |
),
|
88 |
]
|
|
|
74 |
datasets.SplitGenerator(
|
75 |
name=datasets.Split.TRAIN,
|
76 |
gen_kwargs={
|
77 |
+
"archive_path": Path(archive_path) / "IIIT5K",
|
78 |
+
"info_path": Path(archive_path) / "IIIT5K/traindata.mat",
|
79 |
},
|
80 |
),
|
81 |
datasets.SplitGenerator(
|
82 |
name=datasets.Split.TEST,
|
83 |
gen_kwargs={
|
84 |
+
"archive_path": Path(archive_path) / "IIIT5K",
|
85 |
+
"info_path": Path(archive_path) / "IIIT5K/testdata.mat",
|
86 |
},
|
87 |
),
|
88 |
]
|