admin commited on
Commit ·
0f1ee35
1
Parent(s): 9e030e9
upd md
Browse files- .gitignore +1 -1
- README.md +8 -9
.gitignore
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
-
|
| 2 |
test.py
|
|
|
|
| 1 |
+
*__pycache__*
|
| 2 |
test.py
|
README.md
CHANGED
|
@@ -20,15 +20,14 @@ The Pima dataset is a well-known data repository in the field of healthcare and
|
|
| 20 |
```python
|
| 21 |
from datasets import load_dataset
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
print(item)
|
| 32 |
```
|
| 33 |
|
| 34 |
## Maintenance
|
|
|
|
| 20 |
```python
|
| 21 |
from datasets import load_dataset
|
| 22 |
|
| 23 |
+
ds = load_dataset(
|
| 24 |
+
"Genius-Society/Pima",
|
| 25 |
+
name="default",
|
| 26 |
+
split="train", # train / validation / test
|
| 27 |
+
cache_dir="./__pycache__",
|
| 28 |
+
)
|
| 29 |
+
for i in ds:
|
| 30 |
+
print(i)
|
|
|
|
| 31 |
```
|
| 32 |
|
| 33 |
## Maintenance
|