A Transfer Learning based approach for detecting COVID-19 with Chest Radiography Images
A Transfer Learning-based approach for detecting COVID-19 with Chest Radiography Images Environment setup/Project Requirements : Python Tensorflow, Matplotlib, Scikit-Learn libraries need to be installed. Jupyter Notebook Environment Note : You can implement this project in Google-Colaboratory. I don't recommend Atom/Pycharm environment because it would be hard to visualize the data. Workflow: Importing Data (training images) Dividing the data set paths Append the images and labels into two empty lists Convert images into RGB format Apply LabelBinarizer Dividing training and testing data Loading the transfer learning model(VGG-16) Visualizing the sample data Compiling and training the model. Visualizing the model predictions Confusion matrix Testing accuracy. Step 1: Importing Data Depending on the workflow of the project, we need to import the required libraries and the data required for the project. dataset = "...........input/Data" S...