dieineb commited on
Commit
86ab3d9
1 Parent(s): f81d9e4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -2
README.md CHANGED
@@ -37,7 +37,60 @@ dataset_info:
37
  num_examples: 32561
38
  download_size: 553790
39
  dataset_size: 5316802
 
 
 
 
 
 
40
  ---
41
- # Dataset Card for "adult_income.csv"
42
 
43
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  num_examples: 32561
38
  download_size: 553790
39
  dataset_size: 5316802
40
+ license: cc
41
+ language:
42
+ - en
43
+ pretty_name: adult-census-income
44
+ size_categories:
45
+ - 10K<n<100K
46
  ---
47
+ # adult-census-income
48
 
49
+ ## Overview
50
+
51
+ The adult-census-income dataset is used for prediction tasks to determine whether a person makes over $50K a year.
52
+
53
+ ## Dataset Details
54
+
55
+ The original dataset, the [Adult Census Income](https://www.kaggle.com/datasets/uciml/adult-census-income), was created by Barry Becker from the 1994 Census database (USA),
56
+ to explore biases in ML algorithms. The prediction task of this dataset is to determine whether a person makes over 50K a year.
57
+ This data was extracted from the 1994 [Census Bureau database](https://www.census.gov/en.html) by Ronny Kohavi and Barry Becker (Data Mining and Visualization, Silicon Graphics). A set of reasonably clean records was extracted using the following conditions: ((AAGE>16) && (AGI>100) && (AFNLWGT>1) && (HRSWK>0)).
58
+
59
+ - Dataset Name: adult-census-income
60
+ - Language: English
61
+ - Total Size: 32,561 demonstrations
62
+
63
+ ## Contents
64
+
65
+ The features and values that can be found in the adult census dataset are the following:
66
+
67
+ - **Income:** '>50K' (24,1%), '<=50K'(75,9%).
68
+ - **Age:** continuous.
69
+ - **Workclass:** Private, Self-emp-not-inc, Self-emp-inc, Federal-gov, Local-gov, State-gov, Without-pay, Never-worked.
70
+ - **fnlwgt:** continuous.
71
+ - **Education:** Bachelors, Some-college, 11th, HS-grad, Prof-school, Assoc-acdm, Assoc-voc, 9th, 7th-8th, 12th, Masters, 1st-4th, 10th, Doctorate, 5th-6th, Preschool.
72
+ - **Education.num:** continuous.
73
+ - **Marital.status:** Married-civ-spouse, Divorced, Never-married, Separated, Widowed, Married-spouse-absent, Married-AF-spouse.
74
+ - **Occupation:** Tech-support, Craft-repair, Other-service, Sales, Exec-managerial, Prof-specialty, Handlers-cleaners, Machine-op-inspect, Adm-clerical, Farming-fishing, Transport-moving, Priv-house-serv, Protective-serv, Armed-Forces.
75
+ - **Relationship:** Wife, Own-child, Husband, Not-in-family, Other-relative, Unmarried.
76
+ - **Race:** White, Asian-Pac-Islander, Amer-Indian--Eskimo, Other, Black.
77
+ - **Sex:** Female, Male.
78
+ - **Capital.gain:** continuous.
79
+ - **Capital.loss:** continuous.
80
+ - **Hours.per.week:** continuous.
81
+ - **Native.country:** United States, Cambodia, England, Puerto Rico, Canada, Germany, Outlying-US(Guam-USVI-etc), India, Japan, Greece, South, China, Cuba, Iran, Honduras,
82
+ Philippines, Italy, Poland, Jamaica, Vietnam, Mexico, Portugal, Ireland, France, Dominican Republic, Laos, Ecuador, Taiwan, Haiti, Columbia,
83
+ Hungary, Guatemala, Nicaragua, Scotland, Thailand, Yugoslavia, El-Salvador, Trinadad&Tobago, Peru, Hong, Holand-Netherlands.
84
+
85
+ ## How to use
86
+
87
+ ```python
88
+ from datasets import load_dataset
89
+
90
+ dataset = load_dataset("AiresPucrs/adult-census-income", split='train')
91
+
92
+ ```
93
+
94
+ ## License
95
+
96
+ The dataset is licensed under the [Creative Commons(CC)](https://creativecommons.org/publicdomain/zero/1.0/) License CC0 1.0.