torch-harness
An intentionally uncategorized collection of utilities for PyTorch modeling experiments. It is a toolbox rather than a single framework: utilities are added as experimental needs arise, without forcing them into an artificial hierarchy.
Each utility is modular and self-contained. It owns its implementation and tests, avoids assumptions about the surrounding project, and can be used independently of the other utilities. Optional framework integrations remain isolated so they do not add dependencies to the core package.
Uncertainty weighting
UncertaintyWeighting learns positive weights for a vector of peer task losses:
import torch
from torch_harness.losses import UncertaintyWeighting
weighting = UncertaintyWeighting(num_tasks=3)
task_losses = torch.stack((classification_loss, depth_loss, normal_loss))
loss = weighting(task_losses)
weights_for_logging = weighting.effective_weights
Each effective weight starts near one and adapts jointly with the model. The module preserves gradients to the input task losses and its uncertainty parameters, while the weights exposed for logging are detached. See the component documentation for the exact objective, optimizer wiring, numerical behavior, and limitations.
SuperLoss
SuperLoss applies robust curriculum weighting to any unreduced task loss:
from math import log
import torch.nn.functional as F
from torch_harness.losses import SuperLoss
criterion = SuperLoss(threshold=log(10), regularization=1.0)
task_loss = F.cross_entropy(logits, targets, reduction="none")
loss = criterion(task_loss)
It computes the closed-form optimal sample confidence from the SuperLoss paper, upweighting easy samples and downweighting hard samples. The implementation is task-agnostic, runs entirely in PyTorch, and has no SciPy or per-sample-state dependency. See the component documentation for parameter guidance and numerical details.
SafeBatchNorm
SafeBatchNorm rejects a non-finite activation before it can corrupt BatchNorm
running statistics.
from torch_harness.layers import SafeBatchNorm2d
normalization = SafeBatchNorm2d(64)
SafeBatchNorm1d, SafeBatchNorm2d, and SafeBatchNorm3d directly inherit
their matching PyTorch classes. They retain the native constructor, state-dict
layout, and type identity. A non-finite input raises FloatingPointError, which
a fault-tolerant training loop can catch to skip the step.
nn.SyncBatchNorm is intentionally unsupported because a rank-local failure
before its collective could deadlock the other ranks.
Runtime layer replacement
replace_layers recursively transforms existing models through an explicit
replacement factory:
from torch import nn
from torch_harness.runtime import replace_layers
model = replace_layers(
model,
old_layer_cls=nn.SiLU,
replacement_factory=lambda silu: nn.ReLU(inplace=silu.inplace),
)
The traversal includes nested containers such as Sequential. Run replacement
before constructing the optimizer, distributed wrappers, or a compiled model.
Fault-tolerant training steps
FaultTolerantTrainingStep skips occasional exceptions and NaN or infinite losses
before Lightning automatic optimization runs backward or updates the optimizer:
from datetime import timedelta
from lightning.pytorch import Trainer
from torch_harness.lightning import FaultTolerantTrainingStep
fault_tolerance = FaultTolerantTrainingStep(
max_faults=3,
fault_window=timedelta(hours=1),
)
trainer = Trainer(callbacks=[fault_tolerance])
This example skips the first three faults in any rolling one-hour window. A fourth
fault within that window is logged through Loguru and propagated. Exceptions retain
their original type and traceback; repeated non-finite losses raise
NonFiniteLossError.
Install the Lightning integration with torch-harness[lightning].
The callback intentionally supports only single-process automatic optimization.
Errors raised during backward or optimizer.step happen after the recoverable
boundary and are propagated because an optimizer update may already be partial.
Model structures in files
FileModelStructure saves the recursive structure produced by print(model) as
readable UTF-8 text when fitting starts:
from pathlib import Path
from lightning.pytorch import Trainer
from torch_harness.lightning import FileModelStructure
structure = FileModelStructure(
output_path=Path("artifacts/model-structure.txt"),
)
trainer = Trainer(callbacks=[structure])
The callback includes the complete registered module hierarchy without requiring example inputs or running a forward pass. It creates parent directories, replaces an existing structure file, and writes only from the global-zero process. Runtime tensor operations that are not registered modules do not appear.
Run uv run examples/file_model_structure.py to generate an inspectable example
at examples/model-structure.txt.
Planned utilities
- A Lightning
PreciseBNcallback for recomputing BatchNorm running statistics. - A Lightning mixin that manages schedule-free AdamW train/evaluation state.
Each integration will be isolated so users only install the frameworks they need.
License
torch-harness is released under the MIT License.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file torch_harness-0.8.0-py3-none-any.whl.
File metadata
- Download URL: torch_harness-0.8.0-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f6ef1e0c24ad8acbc38873c1e922cc6104217f96ad46ac9e0a538ed47da58af
|
|
| MD5 |
b971c900af78854ebf4668bdeb88b7c4
|
|
| BLAKE2b-256 |
af3d7c9486ec295cadf9048a6962545c5921d0326a8bddf570fa81b2cb52a3a3
|