Fix dataset structure: remove spaces and parentheses from directory names
Browse files
README.md
CHANGED
@@ -3,37 +3,39 @@ configs:
|
|
3 |
- config_name: clinical
|
4 |
data_files:
|
5 |
- split: gatortron
|
6 |
-
path:
|
7 |
- split: medgemma
|
8 |
-
path:
|
9 |
- split: qwen
|
10 |
-
path:
|
11 |
- split: llama
|
12 |
-
path:
|
|
|
|
|
13 |
- config_name: pathology_report
|
14 |
data_files:
|
15 |
- split: gatortron
|
16 |
-
path:
|
17 |
- split: medgemma
|
18 |
-
path:
|
19 |
- split: qwen
|
20 |
-
path:
|
21 |
- split: llama
|
22 |
-
path:
|
23 |
- config_name: wsi
|
24 |
data_files:
|
25 |
- split: uni
|
26 |
-
path:
|
27 |
- config_name: molecular
|
28 |
data_files:
|
29 |
- split: senmo
|
30 |
-
path:
|
31 |
- config_name: radiology
|
32 |
data_files:
|
33 |
- split: remedis
|
34 |
-
path:
|
35 |
- split: radimagenet
|
36 |
-
path:
|
37 |
language:
|
38 |
- en
|
39 |
tags:
|
@@ -61,11 +63,12 @@ This dataset aims to facilitate research in multimodal machine learning for onco
|
|
61 |
```python
|
62 |
from datasets import load_dataset
|
63 |
|
64 |
-
# Clinical data embeddings (
|
65 |
clinical_gatortron = load_dataset("Lab-Rasool/TCGA", "clinical", split="gatortron")
|
66 |
clinical_medgemma = load_dataset("Lab-Rasool/TCGA", "clinical", split="medgemma")
|
67 |
clinical_qwen = load_dataset("Lab-Rasool/TCGA", "clinical", split="qwen")
|
68 |
clinical_llama = load_dataset("Lab-Rasool/TCGA", "clinical", split="llama")
|
|
|
69 |
|
70 |
# Pathology report embeddings (4 models available)
|
71 |
pathology_gatortron = load_dataset("Lab-Rasool/TCGA", "pathology_report", split="gatortron")
|
@@ -136,6 +139,7 @@ if __name__ == "__main__":
|
|
136 |
- MedGemma: 2560
|
137 |
- Qwen: 1024
|
138 |
- Llama: 2304
|
|
|
139 |
|
140 |
### Pathology Reports
|
141 |
- **10,857 patient records** per model
|
@@ -185,4 +189,4 @@ The source data for this dataset was originally collected and maintained by The
|
|
185 |
- HoneyBee codebase: https://github.com/lab-rasool/HoneyBee/
|
186 |
|
187 |
## Contact Information
|
188 |
-
For any questions or issues, please contact the dataset curators at [[email protected]].
|
|
|
3 |
- config_name: clinical
|
4 |
data_files:
|
5 |
- split: gatortron
|
6 |
+
path: clinical_gatortron/*
|
7 |
- split: medgemma
|
8 |
+
path: clinical_medgemma/*
|
9 |
- split: qwen
|
10 |
+
path: clinical_qwen/*
|
11 |
- split: llama
|
12 |
+
path: clinical_llama/*
|
13 |
+
- split: biobert
|
14 |
+
path: clinical_biobert/*
|
15 |
- config_name: pathology_report
|
16 |
data_files:
|
17 |
- split: gatortron
|
18 |
+
path: pathology_gatortron/*
|
19 |
- split: medgemma
|
20 |
+
path: pathology_medgemma/*
|
21 |
- split: qwen
|
22 |
+
path: pathology_qwen/*
|
23 |
- split: llama
|
24 |
+
path: pathology_llama/*
|
25 |
- config_name: wsi
|
26 |
data_files:
|
27 |
- split: uni
|
28 |
+
path: wsi_uni/*
|
29 |
- config_name: molecular
|
30 |
data_files:
|
31 |
- split: senmo
|
32 |
+
path: molecular_senmo/*
|
33 |
- config_name: radiology
|
34 |
data_files:
|
35 |
- split: remedis
|
36 |
+
path: radiology_remedis/*
|
37 |
- split: radimagenet
|
38 |
+
path: radiology_radimagenet/*
|
39 |
language:
|
40 |
- en
|
41 |
tags:
|
|
|
63 |
```python
|
64 |
from datasets import load_dataset
|
65 |
|
66 |
+
# Clinical data embeddings (5 models available)
|
67 |
clinical_gatortron = load_dataset("Lab-Rasool/TCGA", "clinical", split="gatortron")
|
68 |
clinical_medgemma = load_dataset("Lab-Rasool/TCGA", "clinical", split="medgemma")
|
69 |
clinical_qwen = load_dataset("Lab-Rasool/TCGA", "clinical", split="qwen")
|
70 |
clinical_llama = load_dataset("Lab-Rasool/TCGA", "clinical", split="llama")
|
71 |
+
clinical_biobert = load_dataset("Lab-Rasool/TCGA", "clinical", split="biobert")
|
72 |
|
73 |
# Pathology report embeddings (4 models available)
|
74 |
pathology_gatortron = load_dataset("Lab-Rasool/TCGA", "pathology_report", split="gatortron")
|
|
|
139 |
- MedGemma: 2560
|
140 |
- Qwen: 1024
|
141 |
- Llama: 2304
|
142 |
+
- BioBERT: 768
|
143 |
|
144 |
### Pathology Reports
|
145 |
- **10,857 patient records** per model
|
|
|
189 |
- HoneyBee codebase: https://github.com/lab-rasool/HoneyBee/
|
190 |
|
191 |
## Contact Information
|
192 |
+
For any questions or issues, please contact the dataset curators at [[email protected]].
|