Skip to main content

Deploy DL/ ML inference pipelines with minimal extra code.

Project description

fastDeploy

easy and performant micro-services for Python Deep Learning inference pipelines

  • Deploy any python inference pipeline with minimal extra code
  • Auto batching of concurrent inputs is enabled out of the box
  • no changes to inference code (unlike tf-serving etc), entire pipeline is run as is
  • Promethues metrics (open metrics) are exposed for monitoring
  • Auto generates clean dockerfiles and kubernetes health check, scaling friendly APIs
  • sequentially chained inference pipelines are supported out of the box
  • can be queried from any language via easy to use rest apis
  • easy to understand (simple consumer producer arch) and simple code base

Installation:

pip install --upgrade fastdeploy fdclient
# fdclient is optional, only needed if you want to use python client

CLI explained

Start fastDeploy server on a recipe:

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

# Start prediction "loop" for recipe "echo"
fastdeploy --loop --recipe recipes/echo

# Start rest apis for recipe "echo"
fastdeploy --rest --recipe recipes/echo

Send a request and get predictions:

auto generate dockerfile and build docker image:

# Write the dockerfile for recipe "echo"
# and builds the docker image if docker is installed
# base defaults to python:3.8-slim
fastdeploy --build --recipe recipes/echo

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

Serving your model (recipe):

Where to use fastDeploy?

  • to deploy any non ultra light weight models i.e: most DL models, >50ms inference time per example
  • if the model/pipeline benefits from batch inference, fastDeploy is perfect for your use-case
  • if you are going to have individual inputs (example, user's search input which needs to be vectorized or image to be classified)
  • in the case of individual inputs, requests coming in at close intervals will be batched together and sent to the model as a batch
  • perfect for creating internal micro services separating your model, pre and post processing from business logic
  • since prediction loop and inference endpoints are separated and are connected via sqlite backed queue, can be scaled independently

Where not to use fastDeploy?

  • non cpu/gpu heavy models that are better of running parallely rather than in batch
  • if your predictor calls some external API or uploads to s3 etc in a blocking way
  • io heavy non batching use cases (eg: query ES or db for each input)
  • for these cases better to directly do from rest api code (instead of consumer producer mechanism) so that high concurrency can be achieved

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastdeploy-3.0.31.tar.gz (16.4 kB view details)

Uploaded Source

Built Distribution

fastdeploy-3.0.31-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

Details for the file fastdeploy-3.0.31.tar.gz.

File metadata

  • Download URL: fastdeploy-3.0.31.tar.gz
  • Upload date:
  • Size: 16.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fastdeploy-3.0.31.tar.gz
Algorithm Hash digest
SHA256 bb1f14ccb11deaa5390598a04c5a1534028d17e5fdb72bcb4b07ade4459748db
MD5 eb2906acc09798f96c1f3fd56df53f63
BLAKE2b-256 39440083b4fe0c5666fceb6f6763d0fdafd449dec109a8595635a251fb8d61fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdeploy-3.0.31.tar.gz:

Publisher: main.yml on notAI-tech/fastDeploy

Attestations:

File details

Details for the file fastdeploy-3.0.31-py3-none-any.whl.

File metadata

  • Download URL: fastdeploy-3.0.31-py3-none-any.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fastdeploy-3.0.31-py3-none-any.whl
Algorithm Hash digest
SHA256 1413113f11b61c63f9dcf70a1b056d270c46966eb690c652dce9361cf96fef5a
MD5 e00de67012258af1bb4988b89925522b
BLAKE2b-256 f033e1da57089072140101cbdb68a0bab7966aa4901c5e5400cd45393207c1d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastdeploy-3.0.31-py3-none-any.whl:

Publisher: main.yml on notAI-tech/fastDeploy

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page