Project structure : Our coronavirus (COVID-19) chest X-ray data is in the dataset/ directory where our two classes of data are separated into covid/ and normal/ I have created train_covid19.py file to train the model. Three command line arguments (parameters) required to run this file : --dataset: The path to our input dataset of chest X-ray images. --plot: An optional path to an output training history plot. By default the plot is named plot.png unless otherwise specified via the command line. --model: The optional path to our output COVID-19 model; by default it will be named covid19.model. To load our data, we grab all paths to images in in the --dataset directory. Then, for each imagePath, we: · Extract the class label (either covid or normal) from the path. · Load the image, and preprocess it by convertin...