Datasets:
Commit
·
26e349b
1
Parent(s):
32e5983
Update ASCEND.py
Browse files
ASCEND.py
CHANGED
|
@@ -51,7 +51,7 @@ _URLS = {
|
|
| 51 |
class ASCENDConfig(datasets.BuilderConfig):
|
| 52 |
"""BuilderConfig for ASCEND."""
|
| 53 |
|
| 54 |
-
def __init__(self, name, **kwargs):
|
| 55 |
"""
|
| 56 |
Args:
|
| 57 |
**kwargs: keyword arguments forwarded to super.
|
|
@@ -64,20 +64,10 @@ class ASCEND(datasets.GeneratorBasedBuilder):
|
|
| 64 |
|
| 65 |
BUILDER_CONFIGS = [
|
| 66 |
ASCENDConfig(
|
| 67 |
-
name="
|
| 68 |
version=datasets.Version("1.0.0", ""),
|
| 69 |
description=_DESCRIPTION,
|
| 70 |
-
)
|
| 71 |
-
ASCENDConfig(
|
| 72 |
-
name="validation",
|
| 73 |
-
version=datasets.Version("1.0.0", ""),
|
| 74 |
-
description=_DESCRIPTION,
|
| 75 |
-
),
|
| 76 |
-
ASCENDConfig(
|
| 77 |
-
name="test",
|
| 78 |
-
version=datasets.Version("1.0.0", ""),
|
| 79 |
-
description=_DESCRIPTION,
|
| 80 |
-
),
|
| 81 |
]
|
| 82 |
|
| 83 |
def _info(self):
|
|
|
|
| 51 |
class ASCENDConfig(datasets.BuilderConfig):
|
| 52 |
"""BuilderConfig for ASCEND."""
|
| 53 |
|
| 54 |
+
def __init__(self, name="main", **kwargs):
|
| 55 |
"""
|
| 56 |
Args:
|
| 57 |
**kwargs: keyword arguments forwarded to super.
|
|
|
|
| 64 |
|
| 65 |
BUILDER_CONFIGS = [
|
| 66 |
ASCENDConfig(
|
| 67 |
+
name="main",
|
| 68 |
version=datasets.Version("1.0.0", ""),
|
| 69 |
description=_DESCRIPTION,
|
| 70 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
]
|
| 72 |
|
| 73 |
def _info(self):
|