Diff of /README.md [000000] .. [11157b]

Switch to unified view

a b/README.md
1
# Medical_Images_Pytorch
2
3
Pneumonia Segmentation:
4
It's a common infectious disease which can be life threatning if not diagnosed in time. The dataset used to train the model is imported from RSNA pneumonia detection Challenge containing 26684 X-Ray Images. Link to the dataset: https://www.kaggle.com/competitions/rsna-pneumonia-detection-challenge/data.
5
6
Steps taken for pre-processing the raw data->
7
1. Resizing of original 1024 dimensional images into 224 dimensions to make it computationally less expensive
8
2. Standardizing each pixel value in the interval of [0,1] by dividing it by /255.
9
3. Splitting the dataset into 24000 train images and2684 test images
10
4. categorical encoding to our predicition as: 0 if no pneumonia detected, 1 if pneumonia detected
11
12
Network Architecture Used:
13
ResNet 18
14
15
Loss Function: 
16
BCEWithLogitsLoss
17
18
Optimizer:
19
Adam with learning rate 1e-4
20
21
Epochs for training:
22
30
23
24
25
26
Cardiac Detection:
27
It indicates size and position of the heart. Cardiomyopathy which is disease of the cardiac muscle which midght lead to heart failure or blood clots often comes with the size of the heart. Pneumorothox and Atelctasis which both leads to collapse of the lungs are sometimes accompanied by a change in position of the heart. Therefore, early detection reduces the risk and long term consequences. The dataset used to train the model is imported from RSNA pneumonia detection challenge containing 496 X-Ray Images. Link - https://www.kaggle.com/competitions/rsna-pneumonia-detection-challenge/data.
28
29
jfijicih
30
31
32
33
Atrium Segmentation:
34
Segmenting an image is the process of assigning a specific class to all pixels or voxels in an image. Each voxel is either classified as not left atrium or left atrium. The segmentation of the atrium allows to exactly calculate its volume. Changes in atrial volume are associated with cardiac disorders, such as atrial fabrillation or mitral valve stenosis(narrowing of the mitral valve orfice, blocking blood flow). Link to the dataset: http://medicaldecathlon.com/.
35
General Description of Data:
36
1. 20 MRI scans of heart with corresponding ground truth mask
37
2. 4542 2D MRI and label slices
38
39
Steps taken for pre-processing the raw data->
40
1. Extracting slices from 3D MRI data
41
2. Crop away non cardiac regions and background(on segmentation masks too)
42
3. Z-normalization oer subject
43
4. Standardize the normalized subject into the interval [0,1]
44
5. Use 16 patients as training data and the remaining 4 for validation
45
46
47
Task:
48
1.Create a list of all 2D slices
49
2.Extract and load slice coreesponding label mask
50
3.Data augmentation
51
4.Return a augmented slice and mask
52
53
Network Architecture Used:
54
U-Net
55
56
Loss Function: 
57
Dice Loss
58
59
Optimizer:
60
Adam 
61
62
Epochs for training:
63
75