Installation
Requirements
Basic Install
Optional Dependencies
Logging integrations (W&B + MLflow)
pip install torchloop[logging]
Export support (ONNX + TFLite)
pip install torchloop[export]
Edge deployment support
pip install torchloop[edge]
pip install torchloop[dev]
Everything
pip install torchloop[all]
Installation Options Explained
| Package |
What it includes |
torchloop |
Core training, evaluation, and checkpoint management |
torchloop[logging] |
W&B and MLflow logging callbacks |
torchloop[export] |
ONNX and TFLite export utilities |
torchloop[edge] |
Edge deployment tools and resource estimation |
torchloop[dev] |
Development dependencies (testing, linting, docs) |
torchloop[all] |
All optional features combined |
Verify Install
import torchloop
print(torchloop.__version__)