delopoulos commited on
Commit
e2b0a7c
·
verified ·
1 Parent(s): ac00663

Updated README.md

Browse files

New README.md file with short description, challenge links, dataset paper link, download instructions and Zenodo citation.

Files changed (1) hide show
  1. README.md +104 -3
README.md CHANGED
@@ -1,9 +1,110 @@
1
  ---
2
  license: cc-by-nc-4.0
3
  configs:
4
- - config_name: proton
5
- data_files: "proton/**"
6
  - config_name: photon
7
- data_files: "photon/**"
 
 
8
  pretty_name: DoseRAD2026
 
 
 
 
 
 
 
9
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
  configs:
 
 
4
  - config_name: photon
5
+ data_files: photon/**
6
+ - config_name: proton
7
+ data_files: proton/**
8
  pretty_name: DoseRAD2026
9
+ tags:
10
+ - radiotherapy
11
+ - dose-calculation
12
+ - challenge
13
+ - real-time
14
+ challenge_homepage: https://doserad2026.grand-challenge.org/
15
+ challenge_repository: https://github.com/DoseRAD2026/
16
  ---
17
+
18
+ # **DoseRAD2026 dataset**
19
+
20
+ The DoseRAD2026 dataset is a large-scale, multimodal radiotherapy dataset designed to support the development and benchmarking of fast and accurate radiation dose calculation and prediction methods.
21
+
22
+ It accompanies the [**DoseRAD2026** real-time photon and proton dose calculation challenge](https://doserad2026.grand-challenge.org/).
23
+
24
+
25
+
26
+ ## **🗂️ Overview**
27
+
28
+ This dataset provides:
29
+
30
+ * Paired CT and MRI scans
31
+ * Beam-level Monte Carlo (MC)–simulated dose distributions (photon and proton)
32
+ * Beam configuration parameters
33
+
34
+ The **training set**, with 75 patients and corresponding dosemaps is publicly available on this repository.
35
+
36
+ The **preliminary testing** and **testing** sets are only accessible for evaluation of submissions to the [challenge](https://doserad2026.grand-challenge.org/).
37
+
38
+ A detailed description of the dataset is provided here: https://doi.org/10.5281/zenodo.19347848
39
+
40
+
41
+
42
+ ## **⬇️ Download the data**
43
+
44
+ ### Option 1: Using [huggingface_hub](https://huggingface.co/docs/huggingface_hub/guides/download#download-an-entire-repository)
45
+ Install `huggingface_hub` (pip), then run:
46
+
47
+ ```python
48
+ from huggingface_hub import snapshot_download
49
+ snapshot_download(repo_id="LMUK-RADONC-PHYS-RES/DoseRAD2026", repo_type="dataset", local_dir="/your/download/path")
50
+ ```
51
+ or
52
+ ```bash
53
+ hf download --type=dataset --local-dir /your/download/path LMUK-RADONC-PHYS-RES/DoseRAD2026
54
+ ```
55
+
56
+ ### Option 2: Using git
57
+
58
+ Install [`git-lfs` and `git-xet`](https://huggingface.co/docs/hub/xet/using-xet-storage#git-xet), then run:
59
+
60
+ ```bash
61
+ git lfs install
62
+ git xet install
63
+ git clone https://huggingface.co/datasets/LMUK-RADONC-PHYS-RES/DoseRAD2026
64
+ ```
65
+
66
+ ## **📄 License**
67
+
68
+ The dataset is provided under the [Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/).
69
+
70
+ ## **📖 Citation**
71
+
72
+ If you use this dataset, please cite:
73
+
74
+ > Xiao, F., Delopoulos, N., Wahl, N., Volz, L., Bucher, L., Maspero, M., Palacios, M. A., Li, M., Schulz, S., Rogowski, V., Zhang, Y., Perkó, Z., Kurz, C., Dedes, G., Landry, G., & Thummerer, A. (2026).\
75
+ > *DoseRAD2026 Grand Challenge dataset (v1.0)* [Data set]. Zenodo.\
76
+ > [https://doi.org/10.5281/zenodo.19347848](https://doi.org/10.5281/zenodo.19347848)
77
+
78
+
79
+ <details>
80
+ <summary>BibTeX</summary>
81
+
82
+ ```bibtex
83
+ @dataset{xiao_2026_19347848,
84
+ author = {Xiao, Fan and
85
+ Delopoulos, Nikolaos and
86
+ Wahl, Niklas and
87
+ Volz, Lennart and
88
+ Bucher, Lina and
89
+ Maspero, Matteo and
90
+ Palacios, Miguel A. and
91
+ Li, Muheng and
92
+ Schulz, Samir and
93
+ Rogowski, Viktor and
94
+ Zhang, Ye and
95
+ Perkó, Zoltán and
96
+ Kurz, Christopher and
97
+ Dedes, George and
98
+ Landry, Guillaume and
99
+ Thummerer, Adrian},
100
+ title = {DoseRAD2026 Grand Challenge dataset},
101
+ month = apr,
102
+ year = 2026,
103
+ publisher = {Zenodo},
104
+ version = {1.0},
105
+ doi = {10.5281/zenodo.19347848},
106
+ url = {https://doi.org/10.5281/zenodo.19347848},
107
+ }
108
+ ```
109
+
110
+ </details>