Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -12,23 +12,41 @@ size_categories:
|
|
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 |
-
-
|
16 |
-
-
|
17 |
-
-
|
18 |
-
- race
|
19 |
---
|
20 |
# Acute Inflammation
|
21 |
-
The [Acute Inflammation dataset](https://archive.ics.uci.edu/ml/datasets/Acute
|
|
|
22 |
|
23 |
# Configurations and tasks
|
24 |
| **Configuration** | **Task** | Description |
|
25 |
|-------------------|---------------------------|---------------------------------------------------------------|
|
26 |
-
| inflammation | Binary classification |
|
|
|
|
|
|
|
|
|
27 |
|
28 |
# Usage
|
29 |
```python
|
30 |
from datasets import load_dataset
|
31 |
-
from sklearn.tree import DecisionTreeClassifier
|
32 |
|
33 |
dataset = load_dataset("mstz/acute_inflammation", "inflammation")["train"]
|
34 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- inflammation
|
16 |
+
- nephritis
|
17 |
+
- bladder
|
|
|
18 |
---
|
19 |
# Acute Inflammation
|
20 |
+
The [Acute Inflammation dataset](https://archive.ics.uci.edu/ml/datasets/Acute+Inflammations) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
21 |
+
Predict whether the patient has an acute inflammation.
|
22 |
|
23 |
# Configurations and tasks
|
24 |
| **Configuration** | **Task** | Description |
|
25 |
|-------------------|---------------------------|---------------------------------------------------------------|
|
26 |
+
| inflammation | Binary classification | Does the patient have an acute inflammation? |
|
27 |
+
| nephritis | Binary classification | Does the patient have a nephritic pelvis? |
|
28 |
+
| bladder | Binary classification | Does the patient have bladder inflammation? |
|
29 |
+
|
30 |
+
nephritis
|
31 |
|
32 |
# Usage
|
33 |
```python
|
34 |
from datasets import load_dataset
|
|
|
35 |
|
36 |
dataset = load_dataset("mstz/acute_inflammation", "inflammation")["train"]
|
37 |
```
|
38 |
+
|
39 |
+
# Features
|
40 |
+
Target feature changes according to the selected configuration.
|
41 |
+
| **Feature** | **Type** |
|
42 |
+
|---------------------------------------|---------------|
|
43 |
+
| `temperature` | `[float64]` |
|
44 |
+
| `has_nausea` | `[bool]` |
|
45 |
+
| `has_lumbar_pain` | `[bool]` |
|
46 |
+
| `has_urine_pushing` | `[bool]` |
|
47 |
+
| `has_micturition_pains` | `[bool]` |
|
48 |
+
| `has_burnt_urethra` | `[bool]` |
|
49 |
+
| `has_inflammed_bladder` | `[bool]` |
|
50 |
+
| `has_nephritis_of_renal_pelvis` | `[bool]` |
|
51 |
+
| `has_acute_inflammation` | `[int8]` |
|
52 |
+
|