Skip to main content

torch-batteries

PyPI version License: Apache 2.0 Docs

torch-batteries
Image generated by AI

A lightweight, event-driven training layer for PyTorch. Keep the forward pass and loss in your model while Battery handles device placement, optimization, metrics, callbacks, checkpoints, progress, evaluation, and prediction.

Features

  • Explicit train, validation, test, and prediction steps with @charge
  • Event-driven DataPack construction for reusable datasets and DataLoaders
  • Single-forward-pass automatic, stateful, and full-phase metrics
  • Early stopping and Top-K model checkpoints
  • Resumable model, optimizer, callback, metric, DataPack, and history state
  • Gradient accumulation, clipping, mixed precision, and scheduler callbacks
  • Structured batch transfer and structured/streaming prediction
  • Optional Weights & Biases experiment tracking

Installation

pip install torch-batteries

Python 3.12+ and PyTorch 2.9+ are required.

For Weights & Biases integration:

pip install "torch-batteries[wandb]"

For the notebook dependencies:

pip install "torch-batteries[example]"

Quick start

Define workflow steps directly on a PyTorch model with @charge. Return StepOutput to expose the same predictions used for the loss to automatic metrics:

import torch
from torch import nn
from torch.nn import functional as F
from torch.utils.data import DataLoader, TensorDataset

from torch_batteries import Battery, Event, EventContext, StepOutput, charge


class Model(nn.Module):
    def __init__(self) -> None:
        super().__init__()
        self.linear = nn.Linear(10, 1)

    def forward(self, inputs: torch.Tensor) -> torch.Tensor:
        return self.linear(inputs)

    @charge(Event.TRAIN_STEP)
    def training_step(self, context: EventContext) -> StepOutput:
        inputs, targets = context["batch"]
        predictions = self(inputs)
        return StepOutput(
            loss=F.mse_loss(predictions, targets),
            predictions=predictions,
            targets=targets,
        )


inputs = torch.randn(64, 10)
targets = torch.randn(64, 1)
train_loader = DataLoader(TensorDataset(inputs, targets), batch_size=16)

model = Model()
optimizer = torch.optim.Adam(model.parameters(), lr=1e-3)
battery = Battery(
    model,
    optimizer=optimizer,
    metrics={"mae": lambda pred, target: F.l1_loss(pred, target)},
)
results = battery.train(train_loader, epochs=3, verbose=0)
print(results["train_loss"])

Automatic metrics are the functions passed to Battery(metrics=...). They use the predictions and targets returned in StepOutput and are averaged across each phase without an additional model forward pass. Add charged validation, test, or prediction methods only for the workflows you use.

Documentation

Examples

Explore practical examples demonstrating torch-batteries features:

Example Description Notebook Colab
Function Fitting with MLP Train a neural network to approximate a polynomial function using the event-driven training approach function_fitting.ipynb Open In Colab
Iris Classification with MLP Classify the Hugging Face Iris dataset with a tiny MLP and implicit DataPack workflows iris_classification.ipynb Open In Colab
Image Classification with CNN Build MNIST datasets and DataLoaders through an event-driven DataPack image_classification.ipynb Open In Colab
FashionMNIST Diffusion Train a class-conditioned Diffusers U-Net with optimization callbacks and streaming prediction fashion_mnist_diffusion.ipynb Open In Colab
CartPole Reinforcement Learning Train a compact DQN from replay transitions with optimization events and stateful metrics cartpole_reinforcement_learning.ipynb Open In Colab
CIFAR-10 ResNet18 Transfer Learning Fine-tune a pretrained ResNet18 with resumable training state, full-phase metrics, and structured prediction cifar10_transfer_learning.ipynb Open In Colab
Learning Rate Sweep with Early Stopping Conduct a learning rate sweep on MNIST classification with aggressive early stopping and log results to Weights & Biases lr_sweep_early_stopping.ipynb Open In Colab

Development

See CONTRIBUTING.md for environment setup, quality checks, and the release workflow. Issues and feature requests are welcome in the GitHub repository.

Release files for torch-batteries 0.11.0

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

Source distribution (sdist)

Source distribution for torch-batteries 0.11.0
File Size Uploaded
torch_batteries-0.11.0.tar.gz 83.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for torch-batteries 0.11.0
File Interpreter ABI Platform
torch_batteries-0.11.0-py3-none-any.whl Python 3 none any Details

Total release size: 191.9 kB

Release files / torch_batteries-0.11.0.tar.gz

Download URL torch_batteries-0.11.0.tar.gz
Size 83.8 kB
Tags Source
SHA-256 checksum
How to use checksums
28380c4b9e0fc0410cc2223a2d9bf4b2864912a7b9e5aa6f9a907d822f84fd65
BLAKE2b-256 checksum
How to use checksums
32c27def075e047194a2b30cbc1f9c03da5ba0c41f69e0915b92ef6b7df5f7ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.14

Release files / torch_batteries-0.11.0-py3-none-any.whl

Download URL torch_batteries-0.11.0-py3-none-any.whl
Size 108.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ea96173b1625783bf750449eb1dcbd19586757f49aa9a5599a1bb1bbad5f22cb
BLAKE2b-256 checksum
How to use checksums
96e0808e6b9d2c56d0e8f6429d99dcef7f3595327694913d371371982bce0b69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.14

Release history Release notifications | RSS feed

0.12.0

2 release files

This release

0.11.0 This release

2 release files

0.10.0

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.0

2 release files

0.6.0

2 release files

0.5.3

2 release files

0.5.2

2 release files

0.5.1

2 release files

0.5.0

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.0

2 release files

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