Skip to content

NathanHundley/odsc-ml-drum

 
 

Repository files navigation

Hands on tutorial with Drum

Communication

Requirements

Notebooks

All the notebooks in the root of this directory can be run on google colab, and this is the recommended means to follow along. Just upload notebook from git repo in colab.

Flask App

To run the flask app, you will need

  • Python version >= 3.7

Recommendations

Before running the flask app, it is encouraged to create a virtual python environment via conda of virtualenv.

via conda

conda create --name odsc-drum python=3.7
conda activate odsc-drum
conda install -c conda-forge --file ./requirements.txt

via venv

python3 -m venv ~/odsc-drum
source ~/odsc-drum/bin/activate
pip install -r ./requirements.txt

Once you have made it to here, check the drum version with drum --version. If you receive an error ModuleNotFoundError: No module named 'flask', run

deactivate
source ~/odsc-drum/bin/activate
drum --version

no virtual env

  • pip install -r requirements.txt

running the app and inference server

in two seperate terminal sessions run

./run_flask_app.sh and ./run_inference_server.sh

The app will be available at http://localhost:8080/frontend/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 93.0%
  • Python 6.4%
  • Other 0.6%