Update webpage URL
Browse files- README.md +1 -1
- reuters21578.py +3 -1
README.md
CHANGED
@@ -151,7 +151,7 @@ dataset_info:
|
|
151 |
|
152 |
## Dataset Description
|
153 |
|
154 |
-
- **Homepage:**
|
155 |
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
156 |
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
157 |
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
|
|
151 |
|
152 |
## Dataset Description
|
153 |
|
154 |
+
- **Homepage:** https://archive.ics.uci.edu/dataset/137/reuters+21578+text+categorization+collection
|
155 |
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
156 |
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
157 |
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
reuters21578.py
CHANGED
@@ -22,6 +22,8 @@ from textwrap import dedent
|
|
22 |
import datasets
|
23 |
|
24 |
|
|
|
|
|
25 |
_CITATION = """\
|
26 |
@article{APTE94,
|
27 |
author = {Chidanand Apt{\'{e}} and Fred Damerau and Sholom M. Weiss},
|
@@ -247,7 +249,7 @@ class Reuters21578(datasets.GeneratorBasedBuilder):
|
|
247 |
# No default supervised_keys (as we have to pass both premise
|
248 |
# and hypothesis as input).
|
249 |
supervised_keys=None,
|
250 |
-
homepage=
|
251 |
citation=_CITATION,
|
252 |
)
|
253 |
|
|
|
22 |
import datasets
|
23 |
|
24 |
|
25 |
+
_HOMEPAGE = "https://archive.ics.uci.edu/dataset/137/reuters+21578+text+categorization+collection"
|
26 |
+
|
27 |
_CITATION = """\
|
28 |
@article{APTE94,
|
29 |
author = {Chidanand Apt{\'{e}} and Fred Damerau and Sholom M. Weiss},
|
|
|
249 |
# No default supervised_keys (as we have to pass both premise
|
250 |
# and hypothesis as input).
|
251 |
supervised_keys=None,
|
252 |
+
homepage=_HOMEPAGE,
|
253 |
citation=_CITATION,
|
254 |
)
|
255 |
|