Skip to main content

Utilities for machine learning, python web services, and cloud infrastructure

Project description

bavard-ml-utils

CircleCI Build Status PyPI Version PyPI Downloads PyPI - Python Version License: MIT

A package of common code and utilities for machine learning and MLOps. Includes classes and methods for:

  1. ML model serialization/deserialization
  2. Google Cloud Storage IO operations
  3. Converting a ML model into a runnable web service
  4. Common ML model evaluation utilities
  5. Common data structures/models used across the Bavard AI organization
  6. ML model artifact persistence and version management
  7. And more

This package maintains common data structures used across our organization. They can all be found in the bavard_ml_utils.types sub-package, and are all Pydantic data models. For example the bavard_ml_utils.types.agent.AgentConfig class represents a chatbot's configuration and training data, and is used heavily across Bavard.

API docs for this package can be found here.

Getting Started

To begin using the package, use your favorite package manager to install it from PyPi. For example, using pip:

pip install bavard-ml-utils

Some of the features in this repo require more heavy weight dependencies, like Google Cloud Platform related utilities, or utilities specific to machine-learning. If you try to import those features, they will tell you if you do not have the correct package extra installed. For example, many of the features in the bavard_ml_utils.gcp sub-package require the gcp extra. To install bavard-ml-utils with that extra:

pip install bavard-ml-utils[gcp]

You can then begin using any package features that require GCP dependencies.

Developing Locally

Before making any new commits or pull requests, please complete these steps.

  1. Install the Poetry package manager for Python if you do not already have it. Installation instructions can be found here.
  2. Clone the project:
    git clone https://github.com/bavard-ai/bavard-ml-utils.git
    cd bavard-ml-utils
    
  3. Install the dependencies, including all dev dependencies and extras:
    poetry install --extras "gcp ml"
    
  4. Install the pre-commit hooks, so they will run before each local commit. This includes linting, auto-formatting, and import sorting:
    pre-commit install
    

Testing Locally

With Docker and docker-compose installed, run this script from the project root:

./scripts/lint-and-test-package.sh

Releasing The Package

Releasing the package is automatically handled by CI, but three steps must be taken to trigger a successful release:

  1. Use Poetry's version command to bump the package's version.
  2. Commit and tag the repo with the exact same version the package was bumped to, e.g. 1.0.0 (note there is no preceding v.)
  3. Push the commit and tag to remote. These can be done together using: git push --atomic origin <branch name> <tag>

CI will then build release the package to pypi with that version once the commit and tag are pushed.

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

bavard-ml-utils-0.2.10.tar.gz (31.4 kB view hashes)

Uploaded Source

Built Distribution

bavard_ml_utils-0.2.10-py3-none-any.whl (41.2 kB view hashes)

Uploaded Python 3

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