Update dataset URLs to use versioned tags and bump version to 1.1.0 (#22)
Browse files* Update dataset URLs to use versioned tags and bump version to 1.1.0
* Fix formatting in JGLUE.py for dataset URLs
- JGLUE.py +8 -8
- pyproject.toml +1 -1
JGLUE.py
CHANGED
|
@@ -121,20 +121,20 @@ _URLS = {
|
|
| 121 |
},
|
| 122 |
},
|
| 123 |
"JSTS": {
|
| 124 |
-
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 125 |
-
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 126 |
},
|
| 127 |
"JNLI": {
|
| 128 |
-
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 129 |
-
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 130 |
},
|
| 131 |
"JSQuAD": {
|
| 132 |
-
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 133 |
-
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 134 |
},
|
| 135 |
"JCommonsenseQA": {
|
| 136 |
-
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 137 |
-
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.
|
| 138 |
},
|
| 139 |
}
|
| 140 |
|
|
|
|
| 121 |
},
|
| 122 |
},
|
| 123 |
"JSTS": {
|
| 124 |
+
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jsts-v1.1/train-v1.1.json",
|
| 125 |
+
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jsts-v1.1/valid-v1.1.json",
|
| 126 |
},
|
| 127 |
"JNLI": {
|
| 128 |
+
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jnli-v1.1/train-v1.1.json",
|
| 129 |
+
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jnli-v1.1/valid-v1.1.json",
|
| 130 |
},
|
| 131 |
"JSQuAD": {
|
| 132 |
+
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jsquad-v1.1/train-v1.1.json",
|
| 133 |
+
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jsquad-v1.1/valid-v1.1.json",
|
| 134 |
},
|
| 135 |
"JCommonsenseQA": {
|
| 136 |
+
"train": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jcommonsenseqa-v1.1/train-v1.1.json",
|
| 137 |
+
"valid": "https://raw.githubusercontent.com/yahoojapan/JGLUE/refs/tags/v1.1.0/datasets/jcommonsenseqa-v1.1/valid-v1.1.json",
|
| 138 |
},
|
| 139 |
}
|
| 140 |
|
pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[tool.poetry]
|
| 2 |
name = "huggingface-datasets-jglue"
|
| 3 |
-
version = "1.
|
| 4 |
description = "Dataset loading script for JGLUE: Japanese General Language Understanding Evaluation"
|
| 5 |
authors = ["Shunsuke KITADA <shunsuke.kitada.0831@gmail.com>"]
|
| 6 |
readme = "README.md"
|
|
|
|
| 1 |
[tool.poetry]
|
| 2 |
name = "huggingface-datasets-jglue"
|
| 3 |
+
version = "1.1.0"
|
| 4 |
description = "Dataset loading script for JGLUE: Japanese General Language Understanding Evaluation"
|
| 5 |
authors = ["Shunsuke KITADA <shunsuke.kitada.0831@gmail.com>"]
|
| 6 |
readme = "README.md"
|