Datasets:
Dennis Aumiller
commited on
Commit
·
33f69b3
1
Parent(s):
03fb08e
Should really pay attention..
Browse files- eur-lex-sum.py +3 -3
eur-lex-sum.py
CHANGED
@@ -130,19 +130,19 @@ class EurLexSum(datasets.GeneratorBasedBuilder):
|
|
130 |
datasets.SplitGenerator(
|
131 |
name=datasets.Split.TRAIN,
|
132 |
gen_kwargs={
|
133 |
-
"filepath":
|
134 |
},
|
135 |
),
|
136 |
datasets.SplitGenerator(
|
137 |
name=datasets.Split.VALIDATION,
|
138 |
gen_kwargs={
|
139 |
-
"filepath":
|
140 |
},
|
141 |
),
|
142 |
datasets.SplitGenerator(
|
143 |
name=datasets.Split.TEST,
|
144 |
gen_kwargs={
|
145 |
-
"filepath":
|
146 |
},
|
147 |
),
|
148 |
]
|
|
|
130 |
datasets.SplitGenerator(
|
131 |
name=datasets.Split.TRAIN,
|
132 |
gen_kwargs={
|
133 |
+
"filepath": data_dir["train"],
|
134 |
},
|
135 |
),
|
136 |
datasets.SplitGenerator(
|
137 |
name=datasets.Split.VALIDATION,
|
138 |
gen_kwargs={
|
139 |
+
"filepath": data_dir["validation"],
|
140 |
},
|
141 |
),
|
142 |
datasets.SplitGenerator(
|
143 |
name=datasets.Split.TEST,
|
144 |
gen_kwargs={
|
145 |
+
"filepath": data_dir["test"],
|
146 |
},
|
147 |
),
|
148 |
]
|