adult / README.md
mstz's picture
Upload README.md
69b7192
|
raw
history blame
2.41 kB
metadata
language:
  - en
tags:
  - adult
  - tabular_classification
  - binary_classification
pretty_name: Adult
size_categories:
  - 10K<n<100K
task_categories:
  - tabular-classification
configs:
  - encoding
  - income
  - income-no race
  - race

Adult

The Adult dataset from the UCI ML repository. Census dataset including income threshold.

Configurations and tasks

The dataset has four configurations:

  • encoding, which holds the encoding dictionaries mapping binary and ordinal features to their value;
  • income, for binary classification of the individual's income;
  • income-no race, as income, but the race feature is removed;
  • race, multiclass classification to predict the race of the individual.

Features

Feature Type Description
age [int64] Age of the person
capital_gain [float64] Capital gained by the person
capital_loss [float64] Capital lost by the person
education [int8] Education level: the higher, the more educated the person
final_weight [int64]
hours_per_week [int64] Hours worked per week
marital_status [string] Marital status of the person
native_country [string] Native country of the person
occupation [string] Job of the person
race [string] Race of the person
relationship [string]
sex [int8] Sex of the person
workclass [string] Type of job of the person
over_threshold int8 1 for income >= 50k$, 0 otherwise