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.12.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.12.0
File Size Uploaded
torch_batteries-0.12.0.tar.gz 84.8 kB Details

Built distribution (wheel)

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

Total release size: 201.5 kB

Release files / torch_batteries-0.12.0.tar.gz

Download URL torch_batteries-0.12.0.tar.gz
Size 84.8 kB
Tags Source
SHA-256 checksum
How to use checksums
8e5558690db3f1ce045d4754eb2dffa9fc175dde61c082002936455d85775574
BLAKE2b-256 checksum
How to use checksums
27bd71299b291d38a4e2a9093ab67a19458859dd5990bf1cc1fab107ccbea5c9
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.12.0-py3-none-any.whl

Download URL torch_batteries-0.12.0-py3-none-any.whl
Size 116.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
88d7119dca2f326fd8bd1473718c7adb8dcd795bf56982fb8c9a1f9adb840bfe
BLAKE2b-256 checksum
How to use checksums
a0aa1acedcb3b374bd6f4dd2841a5bd75be0bc7263088cbf4ba2efaea99ad9f6
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

This release

0.12.0 This release

2 release files

0.11.0

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