Update files from the datasets library (from 1.5.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.5.0
- simple_questions_v2.py +3 -3
simple_questions_v2.py
CHANGED
@@ -52,9 +52,9 @@ class SimpleQuestionsV2Config(datasets.BuilderConfig):
|
|
52 |
|
53 |
class SimpleQuestionsV2(datasets.GeneratorBasedBuilder):
|
54 |
BUILDER_CONFIGS = [
|
55 |
-
SimpleQuestionsV2Config(name="annotated", data_type="annotated", description=
|
56 |
-
SimpleQuestionsV2Config(name="freebase2m", data_type="freebase2m", description=
|
57 |
-
SimpleQuestionsV2Config(name="freebase5m", data_type="freebase5m", description=
|
58 |
]
|
59 |
BUILDER_CONFIG_CLASS = SimpleQuestionsV2Config
|
60 |
DEFAULT_CONFIG_NAME = "annotated"
|
|
|
52 |
|
53 |
class SimpleQuestionsV2(datasets.GeneratorBasedBuilder):
|
54 |
BUILDER_CONFIGS = [
|
55 |
+
SimpleQuestionsV2Config(name="annotated", data_type="annotated", description="Annotated dataset"),
|
56 |
+
SimpleQuestionsV2Config(name="freebase2m", data_type="freebase2m", description="Freebase subset 2M"),
|
57 |
+
SimpleQuestionsV2Config(name="freebase5m", data_type="freebase5m", description="Freebase subset 5M"),
|
58 |
]
|
59 |
BUILDER_CONFIG_CLASS = SimpleQuestionsV2Config
|
60 |
DEFAULT_CONFIG_NAME = "annotated"
|