Skip to main content

AsyncIO serving for data science models

Project description

Foxcross

Code style: black License Build Status Build status PyPI codecov

AsyncIO serving for data science models built on Starlette

Requirements: Python 3.6+

Quick Start

Installation using pip:

pip install foxcross

Create some test data and a simple model in the same directory to be served:

directory structure

.
+-- data.json
+-- models.py

data.json

[1,2,3,4,5]

models.py

from foxcross.serving import ModelServing, run_model_serving

class AddOneModel(ModelServing):
    test_data_path = "data.json"

    def predict(self, data):
        return [x + 1 for x in data]

if __name__ == "__main__":
    run_model_serving()

Run the model locally

python models.py

Navigate to localhost:8000/predict-test/ in your web browser, and you should see the list incremented by 1. You can visit localhost:8000/ to see all the available endpoints for your model.

Why does this package exist?

Currently, some of the most popular data science model building frameworks such as PyTorch and Scikit-Learn do not come with a built in serving library similar to TensorFlow Serving.

To fill this gap, people create Flask applications to serve their model. This can be error prone, and the implementation can differ between each model. Additionally, Flask is a WSGI web framework whereas Foxcross is built on Starlette, a more performant ASGI web framework.

Foxcross aims to be the serving library for data science models built with frameworks that do not come with their own serving library. Using Foxcross enables consistent and testable serving of data science models.

Security

If you believe you've found a bug with security implications, please do not disclose this issue in a public forum.

Email us at support@laac.dev

Project details


Download files

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

Source Distribution

foxcross-0.7.0.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

foxcross-0.7.0-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file foxcross-0.7.0.tar.gz.

File metadata

  • Download URL: foxcross-0.7.0.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0a4 CPython/3.6.8 Linux/4.18.0-25-generic

File hashes

Hashes for foxcross-0.7.0.tar.gz
Algorithm Hash digest
SHA256 6814539a797b44557415b946d15920f3f3ef0af4b4b36b8c5c1cb7469b3654f5
MD5 2d12d9b8db84993cd87eb21d7610753b
BLAKE2b-256 a0ce08ac8fd22067ff1453897ce86394b470b792bdae7c84b9180605632afa15

See more details on using hashes here.

File details

Details for the file foxcross-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: foxcross-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0a4 CPython/3.6.8 Linux/4.18.0-25-generic

File hashes

Hashes for foxcross-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9358621caf77199f4039bf02c5cfc1bfd2e33ae6f0ee7f87cebb6af7db61ac9d
MD5 bf87c3d097e7f62988e45af356c98f18
BLAKE2b-256 99c5fcd995ed43658cb67e80e3b45e3c10b74e8bfbf7c4276e93509535b5deb5

See more details on using hashes here.

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