Giter Site home page Giter Site logo

stroke-prediction's Introduction

Stroke Prediction Project

Problem Statement

By the Numbers

Global: Strokes are a global epidemic. They are the second leading cause of death and have increased by 70% between 1990 to 2019, with death from strokes increasing by 43% source. The WHO estimates the annual cost of strokes to be over US$721 billion source.

United States: While strokes have been declining for decades in the US, they still have a large financial burden, amounting to ~$34-65 billion annually Source 1, Source 2, source 3. Currently, stroke is the 5th leading cause of death in the US source.

Machine Learning (ML)

Machine Learning Goal

Provide stroke risk prediction so that people may understand their risk rate in a meaningful manner. Predictions will be Low, Moderate, and High. These values were chosen because they would provide better context to the average person rather than a risk percentage. For example, a risk of 15% may not be clear if it is a need for concern or not.

Why Machine Learning?

ML is best suited for complex problems that are not answered by simple logic. In healthcare, disease epidemiology is often complex and our understanding changing. This makes diseases, such as stroke, prime candidates for ML.

Optimal Outcomes

Model Goal: To predict stroke patient probability.

Global: Predicting a stroke can provide an opportunity to take corrective actions before a stroke occurs. Most importantly, this results in fewer deaths and disabilities.

Additionally, the money lost to strokes would boost economies. Assuming cost and stroke occurrence are linear, if strokes were reduced by just 5%, that would inject $36 billion into world economies.

United States: Add $2.65 billion into the US economy.

Instructions

Environment

  1. Pipenv
    • python -m venv .venv
    • Linux
      • source .venv/bin/activate
    • Windows
      • .venv\Scripts\activate
  2. Anaconda or Miniconda

Tip

In VS code, Ctrl+Shift+p pulls up option to select Python interpreter.

After activating environment

  • PDM .toml file is in the main directory.
    1. Activate environment of choice.
    2. pip install pdm
    3. pdm install

notebooks

  1. Run All for 1_data_cleaning.ipynb
  2. Run All for 2_modeling.ipynb
  • Throughout the notebooks you will find links to further understanding or clarification of various concepts.

Containerization with BentoML

  1. Build bento: bentoml build

  2. Docker container: bentoml containerize [bento name:code given after 'bentoml build']

  3. Make sure docker service is running if setting up locally. Then run this command line:

    docker run -it --rm -p 3000:3000 [bento name:code given after 'bentoml build'] serve --production
  4. All created Bentos are stored in /home/user/bentoml/bentos/ by default.

Cloud deployment

  1. log into the AWS Console
  2. Go to Elastic Container Registry. Select Create Registry
  3. In the registry select View push commands
    • On local Windows PC use GitBash and follow macOS/Linux commandsNOTE: Must have AWS CLI installed
    • AWS console, log in via the prompts
    • aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin [censored].dkr.ecr.us-east-1.amazonaws.com
    • Skip this command, docker build done though bentoml -> docker build -t stroke_prediction .
    • docker tag stroke_prediction:latest [censored].dkr.ecr.us-east-1.amazonaws.com/stroke_prediction:latest
    • docker push [censored].dkr.ecr.us-east-1.amazonaws.com/stroke_prediction:latest
  4. Move to Elastic Container Service, then Select Create new Task Definition
    • Follow prompts, and be sure to select the image uploaded to the registry.
    • Then select Create
  5. Select Clusters on the left pane, then Select create cluster
    • Follow the prompts to create a cluster
    • Select the cluster
    • Select Services and then Create
    • Follow the prompts and select the created task
      • Set security group to allow public access to port 3000
      • Select Run Service

Production App Access

Instructions

  1. To access the production site using port 3000.

  2. Select POST then Try it out on the right of the POST section.

image

  1. In the Request body enter patient information based on the template or use the example patient. Select Execute.

image

Template

  • All values must be filled in.
  • Strings must be within double quotes " "
  • Float values must be in format 0.0
  • Capitalization for values must be followed

{

"gender": "Male" or "Female",

"age": float,

"hypertension": 1 or 0,

"heart_disease": 1 or 0,

"ever_married": 1 or 0,

"work_type": "Private" or "Self-employed" or "children" or "Govt_job" or "Never_worked",

"residence_type": "Urban" or "Rural",

"avg_glucose_level": float,

"bmi": float,

"smoking_status": "smokes" or "never smoked" or "Unkown" or "formerly smoked",

"obese": 1 or 0,

"clearly_diabetes": 1 or 0

}

Example Patient

{

"gender": "Male",

"age": 69.0,

"hypertension": 0,

"heart_disease": 1,

"ever_married": 1,

"work_type": "self_employed",

"residence_type": "Urban",

"avg_glucose_level": 195.23,

"bmi": 28.3,

"smoking_status": "smokes",

"obese": 0,

"clearly_diabetes": 1

}

4.) Scroll down to Server response and see the response in the Response body. Possible Responses:

  • "Stroke Risk: HIGH"
  • "Stroke Risk: MODERATE"
  • "Stroke Risk: LOW"

image

Files

  • Data Documentation: DATA.md
  • Conda enviroment: requirements.txt - used to create conda envirment with conda create --name <env> --file requirements.txt.
  • Note: this is not the right format for pip.
  • Notebook: notebook.ipynb
  • Data: healthcare-dataset-stroke-data.csv
  • ML script: service.py
  • Note: Model is saved locally via bentoml
  • Dependency and enviroment management: bentofile.yaml
  • Standalone Model Creation Script: training.py

stroke-prediction's People

Contributors

gregorywmorris avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.