├── .gitignore ├── LICENSE ├── README.md ├── resources ├── confusion_matrix.png ├── labels.png ├── web.gif └── x_rays.png └── src ├── model.py └── webapp.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/README.md -------------------------------------------------------------------------------- /resources/confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/resources/confusion_matrix.png -------------------------------------------------------------------------------- /resources/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/resources/labels.png -------------------------------------------------------------------------------- /resources/web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/resources/web.gif -------------------------------------------------------------------------------- /resources/x_rays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/resources/x_rays.png -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/src/model.py -------------------------------------------------------------------------------- /src/webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/pneumonia_detection/HEAD/src/webapp.py --------------------------------------------------------------------------------