ionosphere / README.md
mstz's picture
Update README.md
28354db
|
raw
history blame contribute delete
No virus
955 Bytes
---
language:
- en
tags:
- ionosphere
- tabular_classification
- binary_classification
- UCI
pretty_name: Ionosphere
size_categories:
- n<1K
task_categories:
- tabular-classification
configs:
- ionosphere
license: cc
---
# Ionosphere
The [Ionosphere dataset](https://archive.ics.uci.edu/ml/datasets/Ionosphere) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Census dataset including personal characteristic of a person, and their ionosphere threshold.
# Configurations and tasks
| **Configuration** | **Task** | **Description** |
|-------------------|---------------------------|---------------------------------------------------------------|
| ionosphere | Binary classification | Does the received signal indicate electrons in the ionosphere?|
# Usage
```python
from datasets import load_dataset
dataset = load_dataset("mstz/ionosphere")["train"]
```