hayes_roth / README.md
mstz's picture
Upload 3 files
5f3e34e
|
raw
history blame
1.15 kB
---
language:
- en
tags:
- hayes
- tabular_classification
- binary_classification
- multiclass_classification
pretty_name: Hayes evaluation
size_categories:
- n<1k
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
- tabular-classification
configs:
- hayes
- hayes_1
- hayes_2
- hayes_3
---
# Hayes
The [Hayes-Roth dataset](https://archive-beta.ics.uci.edu/dataset/44/hayes+roth) from the [UCI repository](https://archive-beta.ics.uci.edu).
# Configurations and tasks
| **Configuration** | **Task** | **Description** |
|-------------------|---------------------------|--------------------------------|
| hayes | Multiclass classification | Classify hayes type. |
| hayes_1 | Binary classification | Is this instance of class 1? |
| hayes_2 | Binary classification | Is this instance of class 2? |
| hayes_3 | Binary classification | Is this instance of class 3? |
# Usage
```python
from datasets import load_dataset
dataset = load_dataset("mstz/hayes", "hayes")["train"]
```