Update README.md
Browse files
README.md
CHANGED
|
@@ -24,12 +24,19 @@ The challenge website can be found here: https://trackrad2025.grand-challenge.or
|
|
| 24 |
|
| 25 |
#### **Data location**
|
| 26 |
|
| 27 |
-
The training (and validation) dataset can be downloaded from this page starting from March 15th, 2025. To
|
| 28 |
```
|
| 29 |
from huggingface_hub import snapshot_download
|
| 30 |
|
| 31 |
snapshot_download(repo_id="LMUK-RADONC-PHYS-RES/TrackRAD2025", repo_type="dataset", local_dir="/local_dir_where_to_download_dataset/")
|
| 32 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
The preliminary testing and final testing dataset are not provided to participants, but are accessible by uploading algorithms for evaluation.
|
| 35 |
|
|
|
|
| 24 |
|
| 25 |
#### **Data location**
|
| 26 |
|
| 27 |
+
The training (and validation) dataset can be downloaded from this page starting from March 15th, 2025. To download all files at once, one can use the huggingface_hub python library:
|
| 28 |
```
|
| 29 |
from huggingface_hub import snapshot_download
|
| 30 |
|
| 31 |
snapshot_download(repo_id="LMUK-RADONC-PHYS-RES/TrackRAD2025", repo_type="dataset", local_dir="/local_dir_where_to_download_dataset/")
|
| 32 |
```
|
| 33 |
+
To download for instance only the labeled set, one can use the huggingface_hub python library with the allow_patters option:
|
| 34 |
+
```
|
| 35 |
+
from huggingface_hub import snapshot_download
|
| 36 |
+
|
| 37 |
+
snapshot_download(repo_id="LMUK-RADONC-PHYS-RES/TrackRAD2025", repo_type="dataset", local_dir="/local_dir_where_to_download_dataset/", allow_patterns="trackrad2025_labeled_training_data/*", )
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
|
| 41 |
The preliminary testing and final testing dataset are not provided to participants, but are accessible by uploading algorithms for evaluation.
|
| 42 |
|