mstz commited on
Commit
53b6493
·
1 Parent(s): 22d7564

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -36
README.md CHANGED
@@ -2,54 +2,29 @@
2
  language:
3
  - en
4
  tags:
5
- - adult
6
  - tabular_classification
7
  - binary_classification
8
- - multiclass_classification
9
- pretty_name: Adult
10
  size_categories:
11
- - 10K<n<100K
12
  task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
13
  - tabular-classification
14
  configs:
15
- - encoding
16
- - income
17
- - income-no race
18
- - race
19
  ---
20
- # Adult
21
- The [Adult dataset](https://archive.ics.uci.edu/ml/datasets/Adult) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
22
- Census dataset including personal characteristic of a person, and their income threshold.
23
 
24
  # Configurations and tasks
25
- | **Configuration** | **Task** | **Description** |
26
- |-------------------|---------------------------|---------------------------------------------------------------|
27
- | encoding | | Encoding dictionary |
28
- | income | Binary classification | Classify the person's income as over or under the threshold. |
29
- | income-no race | Binary classification | As `income`, but the `race` feature is removed. |
30
- | race | Multiclass classification | Predict the race of the individual. |
31
 
32
  # Usage
33
  ```python
34
  from datasets import load_dataset
35
 
36
- dataset = load_dataset("mstz/adult", "income")["train"]
37
  ```
38
-
39
- # Features
40
- |**Feature** |**Type** | **Description** |
41
- |-------------------|-----------|-----------------------------------------------------------|
42
- |`age` |`[int64]` | Age of the person |
43
- |`capital_gain` |`[float64]`| Capital gained by the person |
44
- |`capital_loss` |`[float64]`| Capital lost by the person |
45
- |`education` |`[int8]` | Education level: the higher, the more educated the person |
46
- |`final_weight` |`[int64]` | |
47
- |`hours_per_week` |`[int64]` | Hours worked per week |
48
- |`marital_status` |`[string]` | Marital status of the person |
49
- |`native_country` |`[string]` | Native country of the person |
50
- |`occupation` |`[string]` | Job of the person |
51
- |`race` |`[string]` | Race of the person |
52
- |`relationship` |`[string]` | |
53
- |`sex` |`[int8]` | Sex of the person |
54
- |`workclass` |`[string]` | Type of job of the person |
55
- |`over_threshold` |`int8` |`1` for income `>= 50k$`, `0` otherwise |
 
2
  language:
3
  - en
4
  tags:
5
+ - mushroom
6
  - tabular_classification
7
  - binary_classification
8
+ pretty_name: Mushroom
 
9
  size_categories:
10
+ - 1K<n<10K
11
  task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
12
  - tabular-classification
13
  configs:
14
+ - mushroom
15
+
 
 
16
  ---
17
+ # Mushroom
18
+ The [Mushroom dataset](https://archive.ics.uci.edu/ml/datasets/Mushroom) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
 
19
 
20
  # Configurations and tasks
21
+ | **Configuration** | **Task** | **Description** |
22
+ |-------------------|---------------------------|---------------------------|
23
+ | mushroom | Binary classification | Is the mushroom poisonous?|
 
 
 
24
 
25
  # Usage
26
  ```python
27
  from datasets import load_dataset
28
 
29
+ dataset = load_dataset("mstz/mushroom", "mushroom")["train"]
30
  ```