Skip to main content

Lightweight PyTorch utility library for training, evaluation, and TFLite export — without the framework lock-in.

Project description

torchloop

Lightweight PyTorch utility library for training, evaluation, and TFLite export — without the framework lock-in.

CI PyPI Python License: MIT


The Problem

You write the same PyTorch training loop in every project. Same checkpoint logic. Same metric assembly. Same TFLite export steps. It's tedious and inconsistent.

torchloop abstracts exactly that — nothing more.


Install

# Base installation
pip install torchloop

# With TFLite export support
pip install torchloop[export]

# With edge deployment support
pip install torchloop[edge]

# Development setup
pip install torchloop[dev]

Usage

Training

from torchloop import EarlyStopping, ModelCheckpoint, Trainer

trainer = Trainer(
    model,
    optimizer=torch.optim.Adam(model.parameters()),
    criterion=torch.nn.CrossEntropyLoss(),
    device="cuda",
    use_amp=True,
    accumulate_steps=4,
    patience=5,
)

trainer.add_callback(EarlyStopping(patience=5))
trainer.add_callback(ModelCheckpoint(filepath="best.pt"))

history = trainer.fit(train_loader, val_loader, epochs=30)
trainer.save("best.pt")

Evaluation

from torchloop import Evaluator

ev = Evaluator(model, device="cuda")
results = ev.report(val_loader, class_names=["No Damage", "Minor", "Major", "Destroyed"])
# prints sklearn classification report

fig = ev.confusion_matrix(val_loader)
fig.savefig("cm.png")

per_class = ev.f1_per_class(val_loader)
# {'No Damage': 0.91, 'Minor': 0.78, ...}

Export

from torchloop.exporter import Exporter

exp = Exporter(model, input_shape=(1, 3, 224, 224))
exp.to_onnx("model.onnx")
exp.to_tflite("model.tflite", quantize=True)

Edge Deployment

from torchloop.edge import deploy_to_edge, estimate_model

stats = estimate_model(model, (1, 3, 224, 224), target_device="esp32")
print(f"RAM: {stats['estimated_ram_mb']} MB")
print(f"Latency: {stats['estimated_latency_ms']} ms")

deploy_to_edge(
    model,
    target="esp32",
    input_shape=(1, 3, 224, 224),
    output_path="model.tflite",
    quantize=True,
    quantize_type="int8",
)

Design Principles

  • No lock-in: Works with any nn.Module. No subclassing required.
  • Minimal surface area: Three modules. That's it.
  • You own the model: torchloop wraps your loop, doesn't replace your architecture.

Roadmap

  • v0.1.0 — Trainer, Evaluator, Exporter
  • v0.2.0 — LR scheduler support, mixed precision (AMP)
  • v0.2.1 — Gradient accumulation + callbacks
  • v0.2.2 — Edge submodule
  • v0.3.0 — W&B / MLflow hooks + CoreML export
  • v0.3.1 — Model pruning utilities

License

MIT

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

torchloop-0.2.3.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

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

torchloop-0.2.3-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file torchloop-0.2.3.tar.gz.

File metadata

  • Download URL: torchloop-0.2.3.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for torchloop-0.2.3.tar.gz
Algorithm Hash digest
SHA256 7609c0b3f4667a91944a267eecc5e535f91e3bc6c6ec655704f4549ee8c1a467
MD5 ee55dd993a2d09ccd715a85f38c457a4
BLAKE2b-256 f77b1d94022faacf3c2a0dedf994b842a692077a38ffd79eaebb63a31208b58e

See more details on using hashes here.

Provenance

The following attestation bundles were made for torchloop-0.2.3.tar.gz:

Publisher: publish.yml on Tharun007-TK/torchloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file torchloop-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: torchloop-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for torchloop-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fbd60f389d2d71f9cf8f189baff668f17caabc4f856d016e43c8fc01f828610d
MD5 eac74cfe105e64d85e7a5d0d156454d9
BLAKE2b-256 77c181e04f5368c924b0983a26bcc3e090b50814229f21c56ba9470b8616b484

See more details on using hashes here.

Provenance

The following attestation bundles were made for torchloop-0.2.3-py3-none-any.whl:

Publisher: publish.yml on Tharun007-TK/torchloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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