Typos fix in the structure's description and in the code snippet to download in python.
Browse files
README.md
CHANGED
|
@@ -203,26 +203,18 @@ This deduplication was applied during the transfer of the sourced datasets to th
|
|
| 203 |
|
| 204 |
## File Organization
|
| 205 |
|
| 206 |
-
|
| 207 |
-
|
| 208 |
├── fine-tuning/
|
| 209 |
-
|
| 210 |
│ ├── dataset1_part1.parquet
|
| 211 |
-
|
| 212 |
│ ├── dataset1_part2.parquet
|
| 213 |
-
|
| 214 |
│ └── ...
|
| 215 |
-
|
| 216 |
├── instruction-tuning/
|
| 217 |
-
|
| 218 |
│ ├── dataset2_part1.parquet
|
| 219 |
-
|
| 220 |
│ ├── dataset2_part2.parquet
|
| 221 |
-
|
| 222 |
│ └── ...
|
| 223 |
-
|
| 224 |
└── README.md
|
| 225 |
-
|
| 226 |
|
| 227 |
## Usage
|
| 228 |
|
|
@@ -230,7 +222,7 @@ PARTAGES/
|
|
| 230 |
from dataset import load_dataset
|
| 231 |
|
| 232 |
data = load_dataset(
|
| 233 |
-
"
|
| 234 |
split="train",
|
| 235 |
data_dir="finetuning" # or "instruction-tuning"
|
| 236 |
download_mode="force_redownload",
|
|
|
|
| 203 |
|
| 204 |
## File Organization
|
| 205 |
|
| 206 |
+
```
|
| 207 |
+
PARCOMED_research_only/
|
| 208 |
├── fine-tuning/
|
|
|
|
| 209 |
│ ├── dataset1_part1.parquet
|
|
|
|
| 210 |
│ ├── dataset1_part2.parquet
|
|
|
|
| 211 |
│ └── ...
|
|
|
|
| 212 |
├── instruction-tuning/
|
|
|
|
| 213 |
│ ├── dataset2_part1.parquet
|
|
|
|
| 214 |
│ ├── dataset2_part2.parquet
|
|
|
|
| 215 |
│ └── ...
|
|
|
|
| 216 |
└── README.md
|
| 217 |
+
```
|
| 218 |
|
| 219 |
## Usage
|
| 220 |
|
|
|
|
| 222 |
from dataset import load_dataset
|
| 223 |
|
| 224 |
data = load_dataset(
|
| 225 |
+
"HealthDataHub/PARCOMED_research_only",
|
| 226 |
split="train",
|
| 227 |
data_dir="finetuning" # or "instruction-tuning"
|
| 228 |
download_mode="force_redownload",
|