|
|
--- |
|
|
configs: |
|
|
- config_name: twonorm |
|
|
data_files: |
|
|
- path: twonorm/train.csv |
|
|
split: train |
|
|
default: true |
|
|
language: en |
|
|
license: unknown |
|
|
pretty_name: Twonorm |
|
|
size_categories: 1M<n<10M |
|
|
tags: |
|
|
- tabular_classification |
|
|
- binary_classification |
|
|
- multiclass_classification |
|
|
task_categories: |
|
|
- tabular-classification |
|
|
--- |
|
|
# TwoNorm |
|
|
The [TwoNorm dataset](https://www.openml.org/search?type=data&status=active&id=1507) from the [OpenML repository](https://www.openml.org/). |
|
|
|
|
|
# Configurations and tasks |
|
|
| **Configuration** | **Task** | |
|
|
|-------------------|---------------------------| |
|
|
| twonorm | Binary classification | |
|
|
|
|
|
|
|
|
# Usage |
|
|
```python |
|
|
from datasets import load_dataset |
|
|
|
|
|
dataset = load_dataset("mstz/twonorm")["train"] |
|
|
``` |
|
|
|