Commit
·
76a3c6e
1
Parent(s):
d521b1b
remove validation split
Browse files- wine_ratings.py +7 -7
wine_ratings.py
CHANGED
@@ -54,13 +54,13 @@ class WineRatings(datasets.GeneratorBasedBuilder):
|
|
54 |
"split": "train",
|
55 |
},
|
56 |
),
|
57 |
-
datasets.SplitGenerator(
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
),
|
64 |
datasets.SplitGenerator(
|
65 |
name=datasets.Split.TEST,
|
66 |
gen_kwargs={
|
|
|
54 |
"split": "train",
|
55 |
},
|
56 |
),
|
57 |
+
#datasets.SplitGenerator(
|
58 |
+
# name=datasets.Split.VALIDATION,
|
59 |
+
# gen_kwargs={
|
60 |
+
# "filepath": "validate.csv",
|
61 |
+
# "split": "validation",
|
62 |
+
# },
|
63 |
+
#),
|
64 |
datasets.SplitGenerator(
|
65 |
name=datasets.Split.TEST,
|
66 |
gen_kwargs={
|