Datasets:
Update covertype.py
Browse files- covertype.py +17 -3
covertype.py
CHANGED
@@ -11,7 +11,15 @@ VERSION = datasets.Version("1.0.0")
|
|
11 |
DESCRIPTION = "Covertype dataset from the UCI ML repository."
|
12 |
_HOMEPAGE = "https://archive-beta.ics.uci.edu/dataset/31/covertype"
|
13 |
_URLS = ("https://archive-beta.ics.uci.edu/dataset/31/covertype")
|
14 |
-
_CITATION = """
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
# Dataset info
|
17 |
urls_per_split = {
|
@@ -546,8 +554,14 @@ class Covertype(datasets.GeneratorBasedBuilder):
|
|
546 |
# dataset versions
|
547 |
DEFAULT_CONFIG = "covertype"
|
548 |
BUILDER_CONFIGS = [
|
549 |
-
CovertypeConfig(name="covertype",
|
550 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
]
|
552 |
|
553 |
|
|
|
11 |
DESCRIPTION = "Covertype dataset from the UCI ML repository."
|
12 |
_HOMEPAGE = "https://archive-beta.ics.uci.edu/dataset/31/covertype"
|
13 |
_URLS = ("https://archive-beta.ics.uci.edu/dataset/31/covertype")
|
14 |
+
_CITATION = """
|
15 |
+
@misc{misc_covertype_31,
|
16 |
+
author = {Blackard,Jock},
|
17 |
+
title = {{Covertype}},
|
18 |
+
year = {1998},
|
19 |
+
howpublished = {UCI Machine Learning Repository},
|
20 |
+
note = {{DOI}: \\url{10.24432/C50K5N}}
|
21 |
+
}
|
22 |
+
"""
|
23 |
|
24 |
# Dataset info
|
25 |
urls_per_split = {
|
|
|
554 |
# dataset versions
|
555 |
DEFAULT_CONFIG = "covertype"
|
556 |
BUILDER_CONFIGS = [
|
557 |
+
CovertypeConfig(name="covertype", description="Covertype for multiclass classification."),
|
558 |
+
CovertypeConfig(name="covertype_0", description="Covertype for binary classification."),
|
559 |
+
CovertypeConfig(name="covertype_1", description="Covertype for binary classification."),
|
560 |
+
CovertypeConfig(name="covertype_2", description="Covertype for binary classification."),
|
561 |
+
CovertypeConfig(name="covertype_3", description="Covertype for binary classification."),
|
562 |
+
CovertypeConfig(name="covertype_4", description="Covertype for binary classification."),
|
563 |
+
CovertypeConfig(name="covertype_5", description="Covertype for binary classification."),
|
564 |
+
CovertypeConfig(name="covertype_6", description="Covertype for binary classification."),
|
565 |
]
|
566 |
|
567 |
|