Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Error:"configs[0]" must be of type object

YAML Metadata Error:"configs[1]" must be of type object

YAML Metadata Error:"configs[2]" must be of type object

YAML Metadata Error:"configs[3]" must be of type object

Balloons

The Balloons dataset from the UCI ML repository. 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

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.
Downloads last month
72