imadelh / ML-web-app

Train and Deploy Simple Machine Learning Model With Web Interface on Jetson Nano

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Train and Deploy Machine Learning Model With Web Interface - Docker, PyTorch & Flask

Live access (deployed on GCP): https://ml-app.imadelhanafi.com

alt text


Blog post: https://imadelhanafi.com/posts/train_deploy_ml_model/

This repo contains code associated with the above blog post.

Running on Local/cloud machine

Clone the repo and build the docker image

sudo docker build -t flaskml .

# Pull pre-built image: 
#docker pull imadelh/jetson_pytorch_flask:ainize 
#docker image tag imadelh/jetson_pytorch_flask:ainize flaskml

NB: if you have MemoryError while installing PyTorch in the container, please consider adding 2G swap to your virtual machine (https://linuxize.com/post/how-to-add-swap-space-on-ubuntu-18-04/)

Run the container

sudo docker run -i -t --rm -p 8888:8888 -v $(pwd):/app flaskml

This will run the application on localhost:8888

You can use Cloudflare-Tunnel or Ngrok to port the application to the web.

Running on Jetson-Nano

On Jetson-nano, to avoid long running time to build the image, you can pull it from Docker Hub. We will also use a costumized Docker command https://gist.github.com/imadelh/cf7b12c9cc81c3cb95ad2c6bc747ccd0 to be able to access the GPU inside the container

docker pull imadelh/jetson_pytorch_flask:arm_v1

Run the bash in the container (default entrypoint)

sudo ./mydocker.sh run -i -t --rm -v /home/imad:/home/root/ imadelh/jetson_pytorch_flask:arm_v1

Run the Flask application

cd app
python3 app.py

Files

This a generic web app for ML models. You can update your the network and the weights by changing the following files.

app/ml_model/network.py
app/ml_model/trained_weights.pth

Imad E.

About

Train and Deploy Simple Machine Learning Model With Web Interface on Jetson Nano


Languages

Language:Jupyter Notebook 47.5%Language:Python 28.6%Language:JavaScript 11.1%Language:HTML 10.0%Language:CSS 1.4%Language:Dockerfile 1.3%