Update goodwiki_long_toy.py
Browse files- goodwiki_long_toy.py +2 -2
goodwiki_long_toy.py
CHANGED
@@ -47,7 +47,7 @@ class GoodWikiLongToyDatasetConfig(datasets.BuilderConfig):
|
|
47 |
Args:
|
48 |
**kwargs: keyword arguments forwarded to super.
|
49 |
"""
|
50 |
-
super(
|
51 |
|
52 |
@property
|
53 |
def features(self):
|
@@ -66,7 +66,7 @@ class GoodWikiLongToyDataset(datasets.GeneratorBasedBuilder):
|
|
66 |
"""WikiLongDataset Classification dataset. Version 1.0."""
|
67 |
|
68 |
BUILDER_CONFIGS = [
|
69 |
-
|
70 |
version=datasets.Version("1.0.0", ""), description="Goodwiki Long Articles"
|
71 |
)
|
72 |
]
|
|
|
47 |
Args:
|
48 |
**kwargs: keyword arguments forwarded to super.
|
49 |
"""
|
50 |
+
super(GoodWikiLongToyDatasetConfig, self).__init__(**kwargs)
|
51 |
|
52 |
@property
|
53 |
def features(self):
|
|
|
66 |
"""WikiLongDataset Classification dataset. Version 1.0."""
|
67 |
|
68 |
BUILDER_CONFIGS = [
|
69 |
+
GoodWikiLongToyDatasetConfig(
|
70 |
version=datasets.Version("1.0.0", ""), description="Goodwiki Long Articles"
|
71 |
)
|
72 |
]
|