An open API service indexing awesome lists of open source software.

https://github.com/sadmansakib93/medical_image_classification_keras

This is an example of medical image classification (binary classification) using Keras. Note that, the model is not fully optimized in this program, and hence it can be further optimized and the accuracy of the model can be enhanced further.
https://github.com/sadmansakib93/medical_image_classification_keras

convolutional-neural-networks deep-learning deep-neural-networks image-classification keras keras-neural-networks machine-learning medical-image-analysis

Last synced: 3 months ago
JSON representation

This is an example of medical image classification (binary classification) using Keras. Note that, the model is not fully optimized in this program, and hence it can be further optimized and the accuracy of the model can be enhanced further.

Awesome Lists containing this project

README

        

# Medical Image Classification Keras (Binary classification)
* Download the dataset: https://www.kaggle.com/paultimothymooney/chest-xray-pneumonia
* Store the downloaded dataset in a folder named "DS2" (or you can name whatever you want it, in that case change root folder inside the program accordingly)
* Inside the DS2 folder, put the train dataset into a folder named "train", put the validation data into a folder named "validation", and the test data inside a folder named "test".
* In this dataset, we have two classes: Normal, and Pneumonia
* The structure of your dataset folder (i.e., DS2) should be as follows:

#DS2

- train

-NORMAL

-PNEUMONIA

- validation

-NORMAL

-PNEUMONIA

- test

-NORMAL

-PNEUMONIA


* Now run the program.