Skip to main content

AI/ML inference SDK for streaming data

Project description

Packflow logo

Packflow on PyPI - Version Packflow on PyPI - Python Versions Packflow on GitHub - License

Introduction

packflow is a software development kit (SDK) that simplifies the development process and standardizes packaging of AI/ML running on streaming data sources.

What does Packflow do? Packflow provides a framework for writing, running, and packaging inference code. It offers a standardized structure (the InferenceBackend class) for writing model execution logic, provides the runtime backbone that executes models with built-in profiling and preprocessing, and includes tools to bundle code into portable zip archives. This means you write your inference code once using Packflow's structure, and Packflow handles both the optimized execution and creation of shareable packages for transfer between systems.

Many existing packaging frameworks are catered towards inference APIs and often require custom preprocessing steps. This can be particularly challenging when dealing with data sources that typically generate data one row at a time in key-value pairs (e.g., firewall logs or message streams).

Packflow, however, is optimized to run models on either individual events or batches of events, streamlining development and reducing the need for additional preprocessing. By leveraging Packflow, teams can focus on building and deploying models with custom out-of-the-box workflows and utilities, significantly reducing the time and effort required to onboard new capabilities.

Getting Started

The following instructions quickly walk through how to install Packflow and serve user documentation.

Installing Packflow

Prerequisite Requirements

  • Python (version 3.10+)

Installation from PyPI

  1. Packflow can be installed directly from PyPI:
pip install packflow

[!NOTE] If contributing to Packflow, it is recommended to install packflow from source in editable mode: pip install -e .

Documentation

Packflow documentation is hosted at https://dow-cdao.github.io/packflow/. Pre-built HTML is also available on the gh-pages branch.

To build and serve documentation locally:

  1. Install system prerequisites: Pandoc (required in addition to the pandoc Python package) and make1
  2. Navigate to the docs folder: cd docs
  3. Install Python dependencies: pip install -r requirements.txt
  4. Run make dev to serve with live reloading at https://127.0.0.1:8000/

Usage

Packflow provides a flexible base class called an InferenceBackend that allows users to build highly scalable platform- and tool-agnostic inference code, enabling simplified sharing across environments.

Additionally, Packflow's CLI can assist with creating projects, gathering environmental information, and creating distributable code packages for sharing reproducible inference code between disconnected environments.

Dummy Inference Backend

To create a dummy Inference Backend, update the inference.py file to the following:

from packflow import InferenceBackend


class Backend(InferenceBackend):
    def execute(self, inputs):
        """
        Simply print 'Hello, world!' then return the input data
        """
        print('Hello, world!')
        return inputs

Load and Run the Inference Backend

In a different Python file or from the command line in the same directory, execute the following:

from packflow.loaders import LocalLoader

backend = LocalLoader('inference:Backend').load()

backend({"sample": "data"})
# >> {"sample": "data"}

Recent Changes

0.4.0

Recent updates include improvements to configuration structure and new CLI capabilities:

  • Custom configuration keys in packflow.yaml should now be placed under an extra: field for cleaner validation
  • Backend configuration can now be defined directly in packflow.yaml instead of separate JSON files
  • Name validation relaxed to allow numbers and hyphens (not as first character)
  • New packflow validate and packflow --version commands
  • Environment variables can be specified in packflow.yaml and are set automatically during packflow operations
  • packflow export now respects .gitignore patterns
  • verbose defaults to false to reduce log output
  • Backend configuration supports output_keys field to declare expected output fields

For projects using custom top-level keys in packflow.yaml, nest them under extra: to maintain compatibility with current validation.

0.3.0

  • Initial release

Contributing

Contributions to Packflow are welcomed and highly encouraged! Please refer to the CONTRIBUTING.md guide for more information and guidelines for contributing to Packflow.

Authors

Packflow is developed and maintained by Booz Allen Hamilton on behalf of the Federal Government of the United States of America and the Department of War's Chief Digital and Artificial Intelligence Office (CDAO).

License

packflow is distributed under the terms of the MIT license. Please refer to the LICENSE for more information of acceptable usage and distribution of Packflow.

  1. Installation of make varies by operating system. On MacOS, install xcode-select. On Windows, it is recommend to use Windows Subsystem for Linux (WSL). On Debian/Ubuntu, make can be installed via apt package manager:

    sudo apt update
    sudo apt install make build-essential 

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

packflow-0.4.0rc3.tar.gz (35.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

packflow-0.4.0rc3-py3-none-any.whl (42.8 kB view details)

Uploaded Python 3

File details

Details for the file packflow-0.4.0rc3.tar.gz.

File metadata

  • Download URL: packflow-0.4.0rc3.tar.gz
  • Upload date:
  • Size: 35.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.11.14 Darwin/24.6.0

File hashes

Hashes for packflow-0.4.0rc3.tar.gz
Algorithm Hash digest
SHA256 534cfb769a3d3fe8e92999238439c737e303f3e46b9f93a74c1b81aa347ca714
MD5 95c8516b4a88bdc914594f539a6fb618
BLAKE2b-256 52f6da675ae37518378b5d0a7d3690f7c1a5cfd5f722a6ce664fc7fa2f816255

See more details on using hashes here.

File details

Details for the file packflow-0.4.0rc3-py3-none-any.whl.

File metadata

  • Download URL: packflow-0.4.0rc3-py3-none-any.whl
  • Upload date:
  • Size: 42.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.11.14 Darwin/24.6.0

File hashes

Hashes for packflow-0.4.0rc3-py3-none-any.whl
Algorithm Hash digest
SHA256 666f6aa9808ea2c1e9db5f633a0a224d389493aa666dad7e718e3be4fdbcb67d
MD5 42d48353d7a019146e4ca53106db9657
BLAKE2b-256 66f34b9dfb33344ed90c5a74f7c1e9673aa21c98dba11c7a25c7351cf128ea84

See more details on using hashes here.

Supported by

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