Datasets:
Upload liver.py
Browse files
liver.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
"""ILPD"""
|
2 |
|
3 |
from typing import List
|
4 |
-
from functools import partial
|
5 |
|
6 |
import datasets
|
7 |
|
@@ -27,7 +26,7 @@ urls_per_split = {
|
|
27 |
"train": "https://huggingface.co/datasets/mstz/ilpd/raw/main/Indian Liver Patient Dataset (ILPD).csv"
|
28 |
}
|
29 |
features_types_per_config = {
|
30 |
-
"
|
31 |
"age": datasets.Value("int8"),
|
32 |
"is_male": datasets.Value("bool"),
|
33 |
"total_bilirubin": datasets.Value("float64"),
|
|
|
1 |
"""ILPD"""
|
2 |
|
3 |
from typing import List
|
|
|
4 |
|
5 |
import datasets
|
6 |
|
|
|
26 |
"train": "https://huggingface.co/datasets/mstz/ilpd/raw/main/Indian Liver Patient Dataset (ILPD).csv"
|
27 |
}
|
28 |
features_types_per_config = {
|
29 |
+
"liver": {
|
30 |
"age": datasets.Value("int8"),
|
31 |
"is_male": datasets.Value("bool"),
|
32 |
"total_bilirubin": datasets.Value("float64"),
|