Update README.md
Browse files
README.md
CHANGED
@@ -18,9 +18,9 @@ The [Abalone dataset](https://archive.ics.uci.edu/ml/datasets/Abalone) from the
|
|
18 |
Predict the age of the given abalone.
|
19 |
|
20 |
# Configurations and tasks
|
21 |
-
| **Configuration** | **Task** | Description
|
22 |
|-------------------|---------------------------|---------------------------------------------------------------|
|
23 |
-
| abalone | Regression
|
24 |
|
25 |
# Usage
|
26 |
```python
|
@@ -30,14 +30,15 @@ dataset = load_dataset("mstz/abalone")["train"]
|
|
30 |
```
|
31 |
|
32 |
# Features
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
37 |
-
|
|
38 |
-
|
|
39 |
-
|
|
40 |
-
|
|
41 |
-
|
|
42 |
-
|
|
43 |
-
|
|
|
|
|
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
|
|
|
30 |
```
|
31 |
|
32 |
# Features
|
33 |
+
Target feature in bold.
|
34 |
+
|**Feature** |**Type** |
|
35 |
+
|-----------------------|---------------|
|
36 |
+
| sex | `[string]` |
|
37 |
+
| length | `[float64]` |
|
38 |
+
| diameter | `[float64]` |
|
39 |
+
| height | `[float64]` |
|
40 |
+
| whole_weight | `[float64]` |
|
41 |
+
| shucked_weight | `[float64]` |
|
42 |
+
| viscera_weight | `[float64]` |
|
43 |
+
| shell_weight | `[float64]` |
|
44 |
+
| **number_of_rings** | `[int8]` |
|