Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 2.49 KB

File metadata and controls

61 lines (47 loc) · 2.49 KB

Interactive Machine Learning Tool for Risk Factor Analysis

For Medical Data Analysis


Dependencies

Python Flask Flask-Assets Pandas Dash Plotly GitHub Last Commit

Dataset

Installation

Installation via requirements.txt:

for Mac/Linux development

$ git clone https://github.com/Interactive-Media-Lab-Data-Science-Team/Data-Preprocessing-Tool.git
$ cd Data-Preprocessing-Tool
$ python3 -m venv myenv
$ source myenv/bin/activate
$ pip3 install -r requirements.txt
$ export FLASK_ENV=development
$ flask run

for Windows development

$ git clone https://github.com/Interactive-Media-Lab-Data-Science-Team/Data-Preprocessing-Tool.git
$ cd Data-Preprocessing-Tool
$ python3 -m venv myenv
$ myenv/Scripts/activate
$ pip3 install -r requirements.txt
$ set FLASK_ENV=development
$ flask run

Installation via Pipenv:

$ git clone https://github.com/Interactive-Media-Lab-Data-Science-Team/Data-Preprocessing-Tool.git
$ cd Data-Preprocessing-Tool
$ pipenv shell
$ pipenv update
$ flask run