File size: 1,042 Bytes
becdc9b
7c844f9
 
 
 
 
 
 
 
 
 
 
 
 
becdc9b
7c844f9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
---
language:
- en
tags:
- balance_scale
- tabular_classification
- multiclass_classification
pretty_name: Balance scale
size_categories:
- 10K<n<100K
task_categories:  # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
- tabular-classification
configs:
- balance
---
# Balance scale
The [Balance scale dataset](https://archive.ics.uci.edu/ml/datasets/Balance scale) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Two weights are put on the arms of a scale. Is the scale balanced?

# Configurations and tasks
| **Configuration** | **Task**                  | Description                                                   |
|-------------------|---------------------------|---------------------------------------------------------------|
| balance           | Multiclass classification | Predict if the scale is balanced.                             |

# Usage
```python
from datasets import load_dataset

dataset = load_dataset("mstz/balance_scale", "balance")["train"]
```