File size: 951 Bytes
af56577
 
 
 
 
 
 
45d8156
 
 
af56577
 
 
3a5d794
af56577
1e15d28
af56577
 
 
 
 
 
 
 
 
 
 
3a5d794
af56577
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
task_categories:
- tabular-classification
language:
- en
tags:
- biology
- UCI
- binary_classification
- multiclass_classification
pretty_name: Covertype
size_categories:
- 100K<n<1M
license: cc
---
# Covertype
Classification of pixels into 7 forest cover types based on attributes such as elevation, aspect, slope, hillshade, soil-type, and more.
The [Covertype dataset](https://archive-beta.ics.uci.edu/dataset/31/covertype) from the [UCI ML repository](https://archive-beta.ics.uci.edu).

| **Configuration** | **Task**                  | **Description**                                                 |
|-------------------|---------------------------|-----------------------------------------------------------------|
| covertype         | Multiclass classification | Classify the area as one of 7 cover classes.                    |

# Usage
```python
from datasets import load_dataset

dataset = load_dataset("mstz/covertype")["train"]
```