Datasets:

Modalities:
Image
ArXiv:
MedHK23 commited on
Commit
a0c881b
1 Parent(s): f5c9b94

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - question-answering
4
+ - summarization
5
+ - token-classification
6
+ tags:
7
+ - medical
8
+ ---
9
+
10
+ # Dataset Description
11
+
12
+ Our OmniFM-Dr framework introduces a multi-task chest x-ray dataset, which is used for
13
+ the joint training of disease classification, localization, segmentation, and report generation. This dataset comprises various
14
+ publicly available datasets, such as MIMIC-CXR, VinDr-CXR, and ChestX-Det10. For each image,
15
+ it can potentially contribute to multiple tasks, such as report generation and classification.
16
+
17
+ ## Dataset Details
18
+ - [**MIMIC:**](https://physionet.org/content/mimic-cxr/2.0.0/) contains more than 377,110 radiograph images from over 227,835 radiographic studies. Each radiograph is paired with lesion classification and associated radiology report. It
19
+ is used for multi-label classification and report generation tasks.
20
+ - [**Padchest:**](https://arxiv.org/abs/1901.07441) includes 160,840 images obtained from 67,000 patients, covering six different position views.
21
+ Different radiographic findings were labeled and used for the classification task in this study.
22
+ - [**CXR-AL14:**]() is a large-scale dataset for chest X-ray image detection. It has more than 140,000 chest X-ray
23
+ radiographs containing 253,844 bounding boxes in 14 chest abnormal object categories.
24
+ - [**VinDr-CXR:**](https://www.nature.com/articles/s41597-022-01498-w) includes chest radiographs with annotations for the classification of 28 common chest
25
+ diseases. The dataset contains 15,000 CXR scans in the training set. We select eight diseases from the dataset
26
+ along with their corresponding bounding box for the disease localization task.
27
+ - [**ChestX-Det:**](https://arxiv.org/abs/2104.10326) consists of 3,578 images from [NIH ChestXray14](https://arxiv.org/abs/1705.02315) for 13 common disease. We select
28
+ seven diseases from the dataset along with bounding box for the disease localization task.
29
+ - [**CheXmask:**](https://arxiv.org/abs/2307.03293) contains 676,803 lung and heart segmentation masks of chest images from six publicly
30
+ available databases: CANDID-PTX, ChestXray14, Chexpert, MIMIC-CXR, Padchest, and VinDr-CXR. We
31
+ include 224,316 data for training and 10,000 data from ChestXray14 for downstream evaluation.
32
+ - [**SIIM:**](https://www.kaggle.com/c/siim-acr-pneumothorax-segmentation) comes from the SIIM-ACR Pneumothorax Segmentation competition and contains 12,090 images,
33
+ among which approximately 3,000 cases are positive for pneumothorax disease with masks.
34
+
35
+ ## Dataset Structure
36
+ - **MIMIC:**
37
+ - MIMIC_classification_report-generation_xxx.tsv: is used for classification and report generation tasks. For each row,
38
+ it contains id, report, "label1 && label2", subject_id, study_id, dicom_id.
39
+ - MIMIC_classification-location_xxx.tsv: is used for location vqa task. For each row,
40
+ it contains id, "label1,severity && label2, severity", subject_id, study_id, dicom_id.
41
+ - MIMIC_classification-severity_xxx.tsv: is used for severity vqa task. For each row,
42
+ it contains id, "label, location1 & location2", subject_id, study_id, dicom_id.
43
+ - **Padchest:**
44
+ - Padchest_classification_xxx.tsv: is used for classification task. For each row,
45
+ it contains id, "label1 && label2", subject_id, study_id, dicom_id.
46
+ - **CXR-AL14:**
47
+ - CXR_AL14_localization_xxx.tsv: is used for locatization and classification tasks. For each row,
48
+ it contains id, label, "x1,y1,x2,y2", subject_id, study_id, dicom_id.
49
+ - **VinDr-CXR:**
50
+ - VinDr_CXR_localization_xxx.tsv: is used for locatization and classification tasks. For each row,
51
+ it contains id, label, "x1,y1,x2,y2", subject_id, study_id, dicom_id.
52
+ - **ChestX-Det:**
53
+ - ChestX_Det_localization_xxx.tsv: is used for locatization and classification tasks. For each row,
54
+ it contains id, label, "x1,y1,x2,y2", subject_id, study_id, dicom_id.
55
+ - **CheXmask:**
56
+ - CheXmask_segmentation_xxx.tsv: is used for segmentation task. For each row,
57
+ it contains id, label, "x1,y1,x2,y2, ..., x30, y30", subject_id, study_id, dicom_id.
58
+ - **SIIM:**
59
+ - SIIM_segmentation_xxx.tsv: is used for segmentation task. For each row,
60
+ it contains id, label, "x1,y1,x2,y2, ..., x30, y30", subject_id, study_id, dicom_id.
61
+
62
+ ## Dataset Use
63
+ - df = pd.read_csv(f, sep='\t', header=None)
64
+