shashikg / fastDeploy

Deploy DL/ ML inference pipelines with minimal extra code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fastDeploy

Deploy DL/ ML inference pipelines with minimal extra code.

Installation:

pip install --upgrade fastdeploy

Usage:

# Invoke fastdeploy 
fastdeploy --help
# or
python -m fastdeploy --help

# Start prediction "loop" for recipe "echo_json"
fastdeploy --recipe ./echo_json --mode loop

# Start rest apis for recipe "echo_json"
fastdeploy --recipe ./echo_json --mode rest

# Auto genereate dockerfile and build docker image. --base is docker base
fastdeploy --recipe ./recipes/echo_json/ \
 --mode build_rest --base python:3.6-slim
# fastdeploy_echo_json built!

# Run docker image
docker run -it -p8080:8080 fastdeploy_echo_json

fastDeploy monitor

  • available on localhost:8080 (or --port)

About

Deploy DL/ ML inference pipelines with minimal extra code.

License:MIT License


Languages

Language:JavaScript 92.2%Language:Python 6.8%Language:Svelte 0.9%Language:CSS 0.1%Language:HTML 0.0%