Skip to main content

PADL

License

Pipeline Abstractions for Deep Learning

Full documentation here: https://lf1-io.github.io/padl/

Just as programs are read more often than they are written, so are deep learning models used more often than they are trained.

The PyTorch ecosystem has many tools for training models. However, this is only the beginning of the journey. Once a model has been trained, it will be shared, and used in a multitude of contexts, often on a daily basis, in operations, evaluation, comparision and experimentation by data scientists. The use of the trained model, is how value is extracted out of its weights. Despite this important fact, support for using deep-learning models up to now has been very thin in the PyTorch ecosystem and beyond. PADL is a tool which fills this void.

PADL

Is great for:

  • serving model predictions
  • experimentation with pre-trained models in Jupyter notebooks and interactive sessions
  • inspecting and visualizing intermediate model features
  • evaluating and monitoring model performance on metrics and incoming test data
  • computing model outputs as a preprocessing step for further data science tasks

This is how it works:

  • PADL is a pipeline builder for PyTorch.
  • may be used with all of the great PyTorch functionality you're used to for writing layers.
  • allows users to build pre-processing, forward passes, loss functions and post-processing into the pipeline.
  • models may have arbitrary topologies and make use of arbitrary packages from the python ecosystem.
  • allows for converting standard functions to PADL components using a single keyword transform.

PADL pipelines:

PADL was developed at LF1, an AI innovation lab based in Berlin, Germany.

Getting Started

Installation

pip install padl

PADL currently supports python 3.7, 3.8 and 3.9.

Python version >= 3.8 is preferred because creating and loading transforms (not execution) can be slower in 3.7.

WARNING: PADL transforms do not work in the base Python Interpreter environment because we rely on the inspect module to find source code (used when saving PADL transforms). Unfortunately, the source code typed at this interactive prompt is discarded as soon as it is parsed. Therefore, we recommend using the IPython interpreter or Jupyter Notebooks for interactive sessions.

Your first PADL program

from padl import transform, batch, unbatch
import torch
from torch import nn
nn = transform(nn)

@transform
def prepare(x):
    return torch.tensor(x)

@transform
def post(x):
    return x.topk(1)[1].item()

my_pipeline = prepare >> batch >> nn.Linear(10, 20) >> unbatch >> post

Try out PADL in Colab notebooks

  1. Basic PADL
  2. MNIST
  3. Simple NLP example
  4. Sentiment Analysis - NLP
  5. DC-GAN - Image Generation
  6. CLIP guided diffusion for face editing

Resources

Dev Blog

Read more about PADL on the PADL developer's blog

Contributing

Code of conduct

If you're interested in contributing to PADL please look at the current issues

Licensing

PADL is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.

Release files for padl 0.2.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for padl 0.2.6
File Size Uploaded
padl-0.2.6.tar.gz 145.0 kB Details

Release files / padl-0.2.6.tar.gz

Download URL padl-0.2.6.tar.gz
Size 145.0 kB
Tags Source
SHA-256 checksum
How to use checksums
186628e767aa6aa27bbac41829e41da4da9477a3e0068af069c63724323457c0
BLAKE2b-256 checksum
How to use checksums
d2e59dceb2fe4074af3f4dd70a91dd07ec72158d324cd8e6b82ea7c05c983659
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.2
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page