ming0100 commited on
Commit
41de2d4
·
verified ·
1 Parent(s): 1db3852

Upload DATA_DICTIONARY.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. DATA_DICTIONARY.md +70 -0
DATA_DICTIONARY.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CheXmask Database Data Dictionary
2
+
3
+ ## CSV File Structure
4
+ Each dataset in the CheXmask Database is provided as a separate CSV file. Below are detailed descriptions of all fields/variables present in these files.
5
+
6
+ ### Image Identification
7
+ **Field Name**: Image ID
8
+ **Description**: Reference identifier linking to original image in source dataset
9
+ **Type**: String
10
+ **Notes**: Format varies by source dataset (ChestX-ray8, CheXpert, MIMIC-CXR-JPG, Padchest, VinDr-CXR)
11
+
12
+ ### Quality Metrics
13
+
14
+ **Field Name**: Dice RCA (Max)
15
+ **Description**: Maximum Dice Similarity Coefficient from Reverse Classification Accuracy
16
+ **Type**: Float
17
+ **Range**: 0.0 to 1.0
18
+ **Units**: Dimensionless
19
+ **Notes**: Higher values indicate better segmentation quality
20
+
21
+ **Field Name**: Dice RCA (Mean)
22
+ **Description**: Mean Dice Similarity Coefficient from Reverse Classification Accuracy
23
+ **Type**: Float
24
+ **Range**: 0.0 to 1.0
25
+ **Units**: Dimensionless
26
+ **Notes**: Recommended threshold for use is >= 0.7
27
+
28
+ ### Anatomical Features
29
+
30
+ **Field Name**: Landmarks
31
+ **Description**: Set of points representing organ contours generated by HybridGNet model
32
+ **Type**: Array of coordinates
33
+ **Format**: JSON array of [x,y] coordinates
34
+ **Units**: Pixels
35
+
36
+ **Field Name**: Left Lung
37
+ **Description**: Segmentation mask for left lung
38
+ **Type**: String
39
+ **Format**: Run-length encoding (RLE)
40
+ **Notes**: Must be decoded using provided dimensions
41
+
42
+ **Field Name**: Right Lung
43
+ **Description**: Segmentation mask for right lung
44
+ **Type**: String
45
+ **Format**: Run-length encoding (RLE)
46
+ **Notes**: Must be decoded using provided dimensions
47
+
48
+ **Field Name**: Heart
49
+ **Description**: Segmentation mask for heart
50
+ **Type**: String
51
+ **Format**: Run-length encoding (RLE)
52
+ **Notes**: Must be decoded using provided dimensions
53
+
54
+ ### Image Dimensions
55
+
56
+ **Field Name**: Height
57
+ **Description**: Height of segmentation mask
58
+ **Type**: Integer
59
+ **Units**: Pixels
60
+ **Notes**: Required for decoding RLE masks
61
+
62
+ **Field Name**: Width
63
+ **Description**: Width of segmentation mask
64
+ **Type**: Integer
65
+ **Units**: Pixels
66
+ **Notes**: Required for decoding RLE masks
67
+
68
+ ## Additional Notes
69
+
70
+ 1. **RLE Format**: Run-length encoding is used to compress the binary mask data. Each RLE string represents pairs of (start_position, run_length) for the mask. A decoding script is present in the GitHub repository.