/Covid-Detection

Covid-Detection using x-ray images

Primary LanguagePython

Covid-Detection

Problem Statement

Covid-19, we all know was a very dangerous disease and the testing of it required proper medical procedure which was time consuming. The report requires minimum 1 day to be produce back to the patient.

Solution

The Machine Learning/Deep Learning is used to predict the covid Detection using the x-ray Images of patient's chest. Dataset is available which contains x-ray images with Covid and without Covid. Deep Learning Model is applied on it and predict the Covid for patient. It is solving the problem of providing covid report quickly with high accuracy of 95.5%.

Tech Stack Used

  • Numpy
  • Pandas
  • Matplotlib
  • os
  • Conv2D Keras Layer
  • MaxPool2D Keras Layer
  • Dropout keras Layer
  • Dense Keras Layer
  • sklearn

Model Structure

Input (image - 224 x 224 x 3)
  |
  |
Conv2D (32 layers , (3 x 3 kernel size))
  |
  |
Conv2D (64 layers, (3 x 3 kernel size))
  |
  |
MaxPool2D (2 x 2)
  |
  |
Dropout (0.25)
  |
  |
Conv2D (64 layers, (3 x 3 kernel size))
  |
  |
MaxPool2D (2 x 2)
  |
  |
Dropout (0.25)
  |
  |
Conv2D (128 layers, (3 x 3 kernel size))
  |
  |
MaxPool2D (2 x 2)
  |
  |
Dropout (0.25)
  |
  |
Flatten
  |
  |
Dense (64)
  |
  |
Dropout (0.5)
  |
  |
Dense (1)
(output)

External Links