Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restyle Updated the READEME.md file #154

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 53 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Detecting Malaria using Deep Learning 🦟🦠
# Detecting Malaria using Deep Learning 🦟

<p align="center">
<a href="https://github.com/HarshCasper/Malaria-Detection">
<img src="https://pngimage.net/wp-content/uploads/2018/06/malaria-in-png-1.png" alt="Logo" width="150" height="150">
</a>

Contributor's Hack 2020 is a program that helps students grow with **OPEN SOURCE**. This initiative by **HakinCodes** provides you the best platform to improve your skills and abilities by contributing to vast variety of OPEN SOURCE Projects and opportunity to interact with the mentors and the Organizing Team.

Contributor's Hack 2020 is a program that helps students grow with **OPEN
SOURCE**. This initiative by **HakinCodes** provides you the best platform to
improve your skills and abilities by contributing to vast variety of OPEN SOURCE
Projects and opportunity to interact with the mentors and the Organizing Team.

<p align="center">
<a href="https://hakincodes.tech/">
Expand All @@ -15,45 +18,76 @@ Contributor's Hack 2020 is a program that helps students grow with **OPEN SOURCE

## 📌 Introduction

This Machine Learning Web Application utilizes a Two-Layered Convolutional Neural Network to process the Cell Images and predict if they are Malarial with an accuracy of nearly 95%. The [Dataset](https://www.dropbox.com/s/f20w7sqvxvl0p68/malaria-dataset.zip) to process the Deep Learning Algorithm is taken from the official US National Library of Medicine's NIH Website which is a repository of segmented cells from the thin blood smear slide images from the Malaria Screener research activity.
This Machine Learning Web Application utilizes a Two-Layered Convolutional
Neural Network to process the Cell Images and predict if they are Malarial with
an accuracy of nearly 95%. The
[Dataset](https://www.dropbox.com/s/f20w7sqvxvl0p68/malaria-dataset.zip) to
process the Deep Learning Algorithm is taken from the official US National
Library of Medicine's NIH Website which is a repository of segmented cells from
the thin blood smear slide images from the Malaria Screener research activity.

## 🎯 Purpose of the Project

Where malaria is not endemic any more (such as in the United States), health-care providers may not be familiar with the disease. Clinicians seeing a malaria patient may forget to consider malaria among the potential diagnoses and not order the needed diagnostic tests. Laboratorians may lack experience with malaria and fail to detect parasites when examining blood smears under the microscope. Malaria is an acute febrile illness.
Where malaria is not endemic any more (such as in the United States),
health-care providers may not be familiar with the disease. Clinicians seeing a
malaria patient may forget to consider malaria among the potential diagnoses and
not order the needed diagnostic tests. Laboratorians may lack experience with
malaria and fail to detect parasites when examining blood smears under the
microscope. Malaria is an acute febrile illness.

In a non-immune individual, symptoms usually appear 10–15 days after the infective mosquito bite. The first symptoms – fever, headache, and chills – may be mild and difficult to recognize as malaria. If not treated within 24 hours, P. falciparum malaria can progress to severe illness, often leading to death.
In a non-immune individual, symptoms usually appear 10–15 days after the
infective mosquito bite. The first symptoms – fever, headache, and chills – may
be mild and difficult to recognize as malaria. If not treated within 24 hours,
P. falciparum malaria can progress to severe illness, often leading to death.

This Project aims to provides a handy tool to utilize the power of Machine Learning and Artificial Intelligence in Binary Classification Problems where time and accuracy is the paramount objective of classification.
This Project aims to provides a handy tool to utilize the power of Machine
Learning and Artificial Intelligence in Binary Classification Problems where
time and accuracy is the paramount objective of classification.

## 🏁 Technology Stack

* [Flask](https://github.com/pallets/flask)
* [HTML](https://www.w3.org/TR/html52/)
* [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS)
* [Bootstrap](https://getbootstrap.com/)
* [Tensorflow](https://www.tensorflow.org/)
* [Keras](http://keras.io/)
- [Flask](https://github.com/pallets/flask)
- [HTML](https://www.w3.org/TR/html52/)
- [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS)
- [Bootstrap](https://getbootstrap.com/)
- [Tensorflow](https://www.tensorflow.org/)
- [Keras](http://keras.io/)

## 🏃‍♂️ Local Installation

1. Drop a ⭐ on the Github Repository.
2. Clone the Repo by going to your local Git Client and pushing in the command:
1. Drop a ⭐ on the Github Repository.
2. Clone the Repo by going to your local Git Client and pushing in the command:

```sh
git clone https://github.com/HarshCasper/Malaria-Detection.git
```

3. Create a virtual environment:

```sh
https://github.com/HarshCasper/Malaria-Detection.git
python3 -m venv env
```

3. Install the Packages:
4. Activate the virtual environment:

```sh
env\Scripts\activate (on windows)
source env/bin/activate (on Mac)
```

5. Install the Packages:

```sh
pip install -r requirements.txt
```

4. At last, push in the command:
6. At last, push in the command:

```sh
python app.py
```

5. Go to ` http://127.0.0.1:5000/` and enjoy the application.
7. Go to `http://127.0.0.1:5000/` and enjoy the application.

## 📜 LICENSE

Expand Down