mstz commited on
Commit
7341b63
1 Parent(s): 784970c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -5
README.md CHANGED
@@ -5,22 +5,27 @@ tags:
5
  - abalone
6
  - tabular_regression
7
  - regression
 
8
  pretty_name: Abalone
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-regression
 
13
  configs:
14
  - abalone
 
 
15
  ---
16
  # Abalone
17
- The [Abalone dataset](https://archive.ics.uci.edu/ml/datasets/Abalone) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
18
  Predict the age of the given abalone.
19
 
20
  # Configurations and tasks
21
- | **Configuration** | **Task** | **Description** |
22
- |-------------------|---------------------------|---------------------------------------------------------------|
23
- | abalone | Regression | Predict the age of the abalone. |
 
24
 
25
  # Usage
26
  ```python
@@ -31,6 +36,7 @@ dataset = load_dataset("mstz/abalone")["train"]
31
 
32
  # Features
33
  Target feature in bold.
 
34
  |**Feature** |**Type** |
35
  |-----------------------|---------------|
36
  | sex | `[string]` |
 
5
  - abalone
6
  - tabular_regression
7
  - regression
8
+ - binary_classification
9
  pretty_name: Abalone
10
  size_categories:
11
  - 1K<n<10K
12
+ task_categories:
13
  - tabular-regression
14
+ - tabular-classification
15
  configs:
16
  - abalone
17
+ - binary
18
+ license: cc
19
  ---
20
  # Abalone
21
+ The [Abalone dataset](https://archive-beta.ics.uci.edu/dataset/1/abalone) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
22
  Predict the age of the given abalone.
23
 
24
  # Configurations and tasks
25
+ | **Configuration** | **Task** | **Description** |
26
+ |-------------------|---------------------------|-----------------------------------------|
27
+ | abalone | Regression | Predict the age of the abalone. |
28
+ | binary | Binary classification | Does the abalone have more than 9 rings?|
29
 
30
  # Usage
31
  ```python
 
36
 
37
  # Features
38
  Target feature in bold.
39
+
40
  |**Feature** |**Type** |
41
  |-----------------------|---------------|
42
  | sex | `[string]` |