File size: 2,102 Bytes
912160e
d7411e8
 
 
 
 
 
b6407a1
d7411e8
 
180a8fd
 
d7411e8
 
 
 
 
 
180a8fd
912160e
d7411e8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b6407a1
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
language:
- en
tags:
- balloons
- tabular_classification
- binary_classification
- UCI
pretty_name: Balloons
size_categories:
- n<1K
task_categories:
- tabular-classification
configs:
- adult_or_stretch
- adult_and_stretch
- yellow_and_small
- yellow_and_small_or_adult_and_stretch
license: cc
---
# Balloons
The [Balloons dataset](https://archive.ics.uci.edu/ml/datasets/Balloons) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Predict if the given balloon is inflated.

# Configurations and tasks
| **Configuration**                          | **Task**                  | Description                                                                                      |
|--------------------------------------------|---------------------------|--------------------------------------------------------------------------------------------------|
| adult_or_stretch                           | Binary classification     | Balloons are inflated if age == adult or act == stretch.                                         |
| adult_and_stretch                          | Binary classification     | Balloons are inflated if age == adult and act == stretch.                                        |
| yellow_and_small                           | Binary classification     | Balloons are inflated if color == yellow and size == small.                                      |
| yellow_and_small_or_adult_and_stretch      | Binary classification     | Balloons are inflated if color == yellow and size == small or age == adult and act == stretch.   |

# Usage
```python
from datasets import load_dataset

dataset = load_dataset("mstz/balloons", "adult_or_stretch")["train"]
```

# Features
|**Feature**        |**Type**   | **Description**   |
|-------------------|-----------|-------------------|
|`color`            |`[string]` | Balloon's color.  |
|`size`             |`[string]` | Balloon's size.   |
|`act`              |`[string]` | Balloon's state.  |
|`age`              |`[string]` | Balloon's age.    |
|`is_inflated`      | `[int8]`| The inflation status of the baloon.|