Pneumonia Detection WebApp
This is a simple classification app built on flask(Frontend) and Keras(Backend) .
The webapp is used to detect Pneumonia Using Deep Learning model.
This model is created by using Inception_V3.
This project is divided into 2 parts
- Training : For training i have used Neural network model to detect the pheumonia.
- User end: Flask is used to create the usedend and connect with the NN model.
This contain the code file with the name pheum a link
###I have used google colab to to train the model. This code file contain 4 different models .
- Vgg19
- Inception V3
- ResNet 50
- Manual NN model.
The dataset is Avaliable on Kaggle( https://www.kaggle.com/paultimothymooney/chest-xray-pneumonia/ )
├── app
│ ├── __init__.py
│ ├── main.py
│ ├── model
│ ├── static
│ └── templates
│ └── Pneumonia.ipynb
├── config
│ ├── __init__.py
├── processing
│ ├── __init__.py
├── LICENSE
├── README.md
└── wsgi.py
Copyright 2020 Manu khurana
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.