COVID-19 classification based on chest CT scan using convolutional neural network
Please leave feedback for me by creating a new issue or through my email!
If you like the content, please star this repo!
COVID-19 classification based on chest CT scan using convolutional neural network
There are two Jupyter notebooks in this repo (in notebooks
folder).
tensorflow.keras
.Team members who built the COVID classifier: A/P Chen Nan, Shi Yuchen, and me.
The CT scan data set is from here. Their details are described in this preprint: COVID-CT-Dataset: A CT Scan Dataset about COVID-19.
You can do so by executing the following in your terminal:
git clone https://github.com/YangXiaozhou/CNN-COVID-19-classification-using-chest-CT-scan
Alternatively, you can download the zip file of the repository at the top of the main page of the repository.
If you do not already have the Anaconda distribution of Python 3, go get it (You can also do this without Anaconda: using pip
to install the required packages, however Anaconda is great for Data Science and I encourage you to use it).
Navigate to the relevant directory in your terminalCNN-COVID-19-classification-using-chest-CT-scan
and install required packages in a new conda environment:
conda env create -f environment.yml
This will create a new environment called CNN-COVID-19-classification-using-chest-CT-scan. To activate the environment on OSX/Linux, execute
source activate CNN-COVID-19-classification-using-chest-CT-scan
On Windows, execute
activate CNN-COVID-19-classification-using-chest-CT-scan
In the terminal, execute jupyter notebook
.
Then open the notebook 1-Introduction-to-convolutional-neural-network.ipynb
and you’re ready to dive in. Enjoy.