Datasets:
Tasks:
Text Classification
Sub-tasks:
natural-language-inference
Languages:
Japanese
Size:
10K - 100K
License:
:memo: Update documents
Browse files
janli.py
CHANGED
|
@@ -10,9 +10,7 @@ _CITATION = """\
|
|
| 10 |
}
|
| 11 |
"""
|
| 12 |
|
| 13 |
-
_DESCRIPTION = ""
|
| 14 |
-
|
| 15 |
-
"""
|
| 16 |
|
| 17 |
_HOMEPAGE = "https://github.com/verypluming/JaNLI"
|
| 18 |
|
|
@@ -23,19 +21,18 @@ _DOWNLOAD_URL = "https://raw.githubusercontent.com/verypluming/JaNLI/main/janli.
|
|
| 23 |
|
| 24 |
class JaNLIDataset(ds.GeneratorBasedBuilder):
|
| 25 |
VERSION = ds.Version("1.0.0")
|
| 26 |
-
|
| 27 |
DEFAULT_CONFIG_NAME = "base"
|
| 28 |
|
| 29 |
BUILDER_CONFIGS = [
|
| 30 |
ds.BuilderConfig(
|
| 31 |
name="base",
|
| 32 |
version=VERSION,
|
| 33 |
-
description="
|
| 34 |
),
|
| 35 |
ds.BuilderConfig(
|
| 36 |
name="original",
|
| 37 |
version=VERSION,
|
| 38 |
-
description="
|
| 39 |
),
|
| 40 |
]
|
| 41 |
|
|
|
|
| 10 |
}
|
| 11 |
"""
|
| 12 |
|
| 13 |
+
_DESCRIPTION = "The JaNLI (Japanese Adversarial NLI) dataset, inspired by the English HANS dataset, is designed to necessitate an understanding of Japanese linguistic phenomena and to illuminate the vulnerabilities of models."
|
|
|
|
|
|
|
| 14 |
|
| 15 |
_HOMEPAGE = "https://github.com/verypluming/JaNLI"
|
| 16 |
|
|
|
|
| 21 |
|
| 22 |
class JaNLIDataset(ds.GeneratorBasedBuilder):
|
| 23 |
VERSION = ds.Version("1.0.0")
|
|
|
|
| 24 |
DEFAULT_CONFIG_NAME = "base"
|
| 25 |
|
| 26 |
BUILDER_CONFIGS = [
|
| 27 |
ds.BuilderConfig(
|
| 28 |
name="base",
|
| 29 |
version=VERSION,
|
| 30 |
+
description="A version adopting the column names of a typical NLI dataset.",
|
| 31 |
),
|
| 32 |
ds.BuilderConfig(
|
| 33 |
name="original",
|
| 34 |
version=VERSION,
|
| 35 |
+
description="The original version retaining the unaltered column names.",
|
| 36 |
),
|
| 37 |
]
|
| 38 |
|