Datasets:

ArXiv:
License:
testb / testb.py
suolyer's picture
Update testb.py
b918a18
raw
history blame
470 Bytes
import json
import os
import datasets
class TestB(datasets.GeneratorBasedBuilder):
"""The SuperGLUE benchmark."""
VERSION = datasets.Version("1.1.0")
BUILDER_CONFIGS = [
datasets.BuilderConfig(name="data1", version=VERSION, description="This part of my dataset covers a first domain"),
datasets.BuilderConfig(name="data2", version=VERSION, description="This part of my dataset covers a second domain"),
]
DEFAULT_CONFIG_NAME = "data1"