abalone / README.md
mstz's picture
Upload 3 files
1f0ab33
|
raw
history blame
1.42 kB
metadata
language:
  - en
tags:
  - abalone
  - tabular_regression
  - regression
pretty_name: Abalone
size_categories:
  - 1K<n<10K
task_categories:
  - tabular-regression
configs:
  - abalone

Abalone

The Abalone dataset from the UCI ML repository. Predict the age of the given abalone.

Configurations and tasks

Configuration Task Description
Abalon Regression Predict the age of the abalone.

Usage

from datasets import load_dataset
from sklearn.tree import DecisionTreeClassifier

dataset = load_dataset("mstz/abalone", "abalone")["train"]

Features

Feature Type
sex [string]
length [float64]
diameter [float64]
height [float64]
whole_weight [float64]
shucked_weight [float64]
viscera_weight [float64]
shell_weight [float64]
number_of_rings [int8]