Datasets:
Upload 3 files
Browse files- README.md +1 -1
- basic_sentence_transforms.py +4 -4
README.md
CHANGED
@@ -8,7 +8,7 @@ language_creators:
|
|
8 |
license:
|
9 |
- other
|
10 |
multilinguality:
|
11 |
-
-
|
12 |
pretty_name: Active/Passive/Logical Transforms
|
13 |
size_categories:
|
14 |
- 10K<n<100K
|
|
|
8 |
license:
|
9 |
- other
|
10 |
multilinguality:
|
11 |
+
- monolingual
|
12 |
pretty_name: Active/Passive/Logical Transforms
|
13 |
size_categories:
|
14 |
- 10K<n<100K
|
basic_sentence_transforms.py
CHANGED
@@ -135,12 +135,12 @@ configs = [
|
|
135 |
]
|
136 |
|
137 |
class NcPatConfig(datasets.BuilderConfig):
|
138 |
-
"""BuilderConfig for
|
139 |
|
140 |
def __init__(self, features=None, **kwargs):
|
141 |
# Version history:
|
142 |
-
# 0.0.
|
143 |
-
super().__init__(version=datasets.Version("0.0.
|
144 |
|
145 |
self.features = features
|
146 |
self.label_classes = None
|
@@ -161,7 +161,7 @@ class NcPatConfig(datasets.BuilderConfig):
|
|
161 |
|
162 |
class NcPat(datasets.GeneratorBasedBuilder):
|
163 |
BUILDER_CONFIGS = [NcPatConfig(name=c["name"], description=c["desc"], features=c["features"]) for c in configs]
|
164 |
-
VERSION = datasets.Version("0.0.
|
165 |
|
166 |
def _info(self):
|
167 |
return datasets.DatasetInfo(
|
|
|
135 |
]
|
136 |
|
137 |
class NcPatConfig(datasets.BuilderConfig):
|
138 |
+
"""BuilderConfig for basic_sentence_transforms dataset."""
|
139 |
|
140 |
def __init__(self, features=None, **kwargs):
|
141 |
# Version history:
|
142 |
+
# 0.0.18: Initial version released to HF datasets
|
143 |
+
super().__init__(version=datasets.Version("0.0.18"), **kwargs)
|
144 |
|
145 |
self.features = features
|
146 |
self.label_classes = None
|
|
|
161 |
|
162 |
class NcPat(datasets.GeneratorBasedBuilder):
|
163 |
BUILDER_CONFIGS = [NcPatConfig(name=c["name"], description=c["desc"], features=c["features"]) for c in configs]
|
164 |
+
VERSION = datasets.Version("0.0.18")
|
165 |
|
166 |
def _info(self):
|
167 |
return datasets.DatasetInfo(
|