Utilities for training models in pytorch
Project description
xt-training
Description
This repo contains utilities for training deep learning models in pytorch, developed by Xtract AI.
Installation
From PyPI:
pip install xt-training
From source:
git clone https://github.com/XtractTech/xt-training.git
pip install ./xt-training
Usage
See specific help on a class or function using help
. E.g., help(Runner)
.
Training a model
from xt_training import Runner, metrics
from torch.utils.tensorboard import SummaryWriter
# Here, define class instances for the required objects
# model =
# optimizer =
# scheduler =
# loss_fn =
# Define metrics - each of these will be printed for each iteration
# Either per-batch or running-average values can be printed
batch_metrics = {
'eps': metrics.EPS(),
'acc': metrics.Accuracy(),
'kappa': metrics.Kappa(),
'cm': metrics.ConfusionMatrix()
}
# Define tensorboard writer
writer = SummaryWriter()
# Create runner
runner = Runner(
model=model,
loss_fn=loss_fn,
optimizer=optimizer,
scheduler=scheduler,
batch_metrics=batch_metrics,
device='cuda:0',
writer=writer
)
# Define dataset and loaders
# dataset =
# train_loader =
# val_loader =
# Train
model.train()
runner(train_loader)
batch_metrics['cm'].print()
# Evaluate
model.eval()
runner(val_loader)
batch_metrics['cm'].print()
# Print training and evaluation history
print(runner)
Scoring a model
import torch
from xt_training import Runner
# Here, define the model
# model =
# model.load_state_dict(torch.load(<checkpoint file>))
# Create runner
# (alternatively, can use a fully-specified training runner as in the example above)
runner = Runner(model=model, device='cuda:0')
# Define dataset and loaders
# dataset =
# test_loader =
# Score
model.eval()
y_pred, y = runner(test_loader, return_preds=True)
Data Sources
[descriptions and links to data]
Dependencies/Licensing
[list of dependencies and their licenses, including data]
References
[list of references]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
xt-training-1.5.0.tar.gz
(9.1 kB
view details)
Built Distribution
File details
Details for the file xt-training-1.5.0.tar.gz
.
File metadata
- Download URL: xt-training-1.5.0.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0.post20200106 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e315820f8b780cc45e1cbfe4b18a1e1a5b668201763f34983a09e6b3b2a6b4c8 |
|
MD5 | 158d995c421e0b005bef0908455d0213 |
|
BLAKE2b-256 | fbe78fcd84ed1c93366b840912c0e238292e8e87a31f5c3daa0280352680fabc |
File details
Details for the file xt_training-1.5.0-py3-none-any.whl
.
File metadata
- Download URL: xt_training-1.5.0-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0.post20200106 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 402cc85483c6f5b91dc9c9d33079cf05a4ba22a6a06e798e2384b43bb21c7b7f |
|
MD5 | c1e8ec106c92b9d3849207c6a1c18b04 |
|
BLAKE2b-256 | 04c4afc0a4a5416652c9f58691e2e219e69452074a5138bd88ce4356d362ee65 |