Datasets:
Commit ·
edf6e9f
1
Parent(s): 3b3d5d0
Update xnli_parallel.py
Browse files- xnli_parallel.py +3 -3
xnli_parallel.py
CHANGED
|
@@ -84,9 +84,9 @@ class XnliParallel(datasets.GeneratorBasedBuilder):
|
|
| 84 |
# data = datasets.load_dataset('my_dataset', 'second_domain')
|
| 85 |
|
| 86 |
BUILDER_CONFIGS = [
|
| 87 |
-
datasets.BuilderConfig(
|
| 88 |
-
datasets.BuilderConfig(
|
| 89 |
-
datasets.BuilderConfig(
|
| 90 |
]
|
| 91 |
|
| 92 |
DEFAULT_CONFIG_NAME = "en" # It's not mandatory to have a default configuration. Just use one if it make sense.
|
|
|
|
| 84 |
# data = datasets.load_dataset('my_dataset', 'second_domain')
|
| 85 |
|
| 86 |
BUILDER_CONFIGS = [
|
| 87 |
+
datasets.BuilderConfig("en", version=VERSION, description="English"),
|
| 88 |
+
datasets.BuilderConfig("de", version=VERSION, description="German"),
|
| 89 |
+
datasets.BuilderConfig("fr", version=VERSION, description="French"),
|
| 90 |
]
|
| 91 |
|
| 92 |
DEFAULT_CONFIG_NAME = "en" # It's not mandatory to have a default configuration. Just use one if it make sense.
|