QiaoyuZheng commited on
Commit
f713f52
·
1 Parent(s): 09388a4

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -16
README.md CHANGED
@@ -1,27 +1,33 @@
1
- ---
2
- license: apache-2.0
3
- ---
4
 
5
- ## Introduction
6
-
7
- In RP3D-DiagDS, we provide official train/test split, label files and model checkpoints for paper "Large-scale Long-tailed Disease Diagnosis on Radiology"
8
 
 
9
 
 
10
 
11
  ## About Dataset
12
 
13
- There are two split files (json format): RP3D_train.json and RP3D_test.json. Please change the data path in these split files to fit your project.
14
-
15
- There are two label files (json format): disorder_label_dict.json and icd10_label_dict.json.
16
-
17
- Both of them are organized and sorted by related case number in descending order.
18
-
19
- The Whole dataset can be find at: [BaiduYun](https://pan.baidu.com/s/1E_uSoCLm5H66a7KkpRfi1g?pwd=urfg)
20
 
21
- Here we provide the official split for train and test data, respectively: RP3D_train_dict.json, RP3D_train_dict.json.
 
 
 
22
 
 
23
 
 
24
 
25
- ## About Model
 
 
 
 
 
 
 
 
 
26
 
27
- Considering the portability of general datasets, we provide a checkpoint of the late fusion + knowledge enhanced model structure mentioned in the original paper. (Will update soon)
 
1
+ # RP3D-DiagDS
 
 
2
 
3
+ **Overview of RP3D-DiagDS.** There are **39,026 cases (192,675 scans)** across 7 human anatomy regions and 9 diverse modalities covering **930 ICD-10-CM codes**.
 
 
4
 
5
+ <img src="https://github.com/qiaoyu-zheng/RP3D-Diag/blob/main/Images/RP3D-DiagDS.png"/>
6
 
7
+ The images used in our dataset can be downloaded from [BaiduYun](https://pan.baidu.com/s/1E_uSoCLm5H66a7KkpRfi1g?pwd=urfg)
8
 
9
  ## About Dataset
10
 
11
+ There are totally 4 json files:
 
 
 
 
 
 
12
 
13
+ 1. RP3D_train.json: Data used for model training. This file is organized at case level (there may be more than one kind of modality and anatomy in a case. For more details, refer to the paper [Large-scale Long-tailed Disease Diagnosis on Radiology](https://qiaoyu-zheng.github.io/RP3D-Diag)).
14
+ 2. RP3D_test_json: Data used for model evaluation.
15
+ 3. disorder_label_dict.json: For disorder granularity. There are totally 5569 ( 5568 abnormal and 1 noraml) label. There disorders are sorted in descending order based on the corresponding case number for evaluation.
16
+ 4. icd10_label_dict.json. For ICD-10-CM granularity. There are totally 931 ( 930 abnormal and 1 noraml) label. There disorders are sorted in descending order based on the corresponding case number for evaluation.
17
 
18
+ ## About Checkpoint
19
 
20
+ The Checkpoint is in the file `checkpoint_32_late`, The detailed parameter we use for training is in the following:
21
 
22
+ ```
23
+ start_class: 0
24
+ end_clas: 5569
25
+ backbone: 'resnet'
26
+ level: 'articles'
27
+ depth: 32
28
+ ltype: 'MultiLabel'
29
+ augment: True
30
+ split: 'late'
31
+ ```
32
 
33
+ Please refer to our instructions on [github](https://github.com/qiaoyu-zheng/RP3D-Diag) to download and use.