|
|
--- |
|
|
configs: |
|
|
- config_name: ionosphere |
|
|
data_files: |
|
|
- path: ionosphere/train.csv |
|
|
split: train |
|
|
default: true |
|
|
language: en |
|
|
license: cc |
|
|
pretty_name: Ionosphere |
|
|
size_categories: 1M<n<10M |
|
|
tags: |
|
|
- tabular_classification |
|
|
- binary_classification |
|
|
- multiclass_classification |
|
|
task_categories: |
|
|
- tabular-classification |
|
|
--- |
|
|
# 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"] |
|
|
``` |