Skip to main content

Deep Learning Toolkit

CI

Reusable PyTorch building blocks for artificial intelligence & scientific machine learning: networks, losses, training loops, and utilities.

The Deep Learning Toolkit is a Python library of reusable PyTorch components for artificial intelligence and scientific machine learning. It is designed to be composed into research codes (not a standalone application) and accelerate development of such codes.

The package provides:

  • Network architectures: multilayer perceptrons with residual and attention blocks, 1D and 2D convolutional networks, UNets, 1D transformers with patch embeddings, autoencoders, and more.
  • Training and optimization: epoch- and batch-level training loops with checkpointing and validation hooks, distributed training, GAN training loops, and multi-stage learning rate schedulers.
  • Supporting components: loss functions, evaluation metrics, plotting helpers, and configuration management.

Network modules share a consistent activation-aware parameter initialization scheme, and training routines return structured logs of per-epoch and per-batch loss statistics.


Installing the deep-learning-toolkit

Requirements

  • Python version >=3.11

Runtime dependencies

  • matplotlib version >=3,<4
  • prettytable version >=3,<4
  • pyyaml version >=6,<7
  • torch version >=2,<3
  • tqdm version >=4,<5

Install commands using pip

pip install deep-learning-toolkit

Install with optional extras

Dependencies for generative diffusion models:

pip install deep-learning-toolkit[diffusion]

Dependencies for kernel density estimation:

pip install deep-learning-toolkit[kde]

Importing and using dlk

To use the toolkit, import its modules in your Python code like this:

from dlk.nets.mlp import MLPNet
from dlk.opt.train import train_epochs

# load your data
...

# create the model
net = MLPNet(input_size=784, output_size=10)

# train the model
train_epochs(n_epochs=100, net=net, dataloader=..., optimizer=..., loss_fn=...)

# evaluate on your data
...

Architecture

Neural network architectures → dlk/nets/

  • mlp.py: Multilayer Perceptron (MLPNet, MLPNet_MultIn, MLPResNet with residual and attention blocks)
  • autoencoder.py: Generic autoencoder wrapper for encoder/decoder pairs
  • conv1d.py, conv2d.py: 1D/2D convolutional networks and UNet components (Downsample, Upsample)
  • unet.py: Complete UNet implementations (older UNet1D/UNet2D and newer UNetXd_2025 architecture)
  • transformer1d.py: 1D transformer networks with patch embeddings and multi-head attention
  • efficientnet.py: EfficientNet architecture

Network initialization

All network modules follow a consistent pattern:

  • Constructor calls self.init_parameters() at the end
  • init_parameters() uses Xavier initialization with gain calculated from activation functions
  • Utility functions _get_gain() and _set_init_parameters() handle activation-aware initialization

Training and optimization → dlk/opt/

  • train.py: Training loops (train_epochs, train_batches) with checkpointing and validation hooks
  • train_gan.py: GAN-specific training loops
  • scheduler.py: Learning rate schedulers (multi-stage: linear warmup, constant, cosine annealing)

Logging of the training progress

Training functions return detailed logging dictionaries (dlog) containing:

  • Per-epoch loss statistics (loss_mean, loss_std)
  • Batch-level logs nested in batch_dlog
  • Total training time in time_train
  • Checkpointing saves model and optimizer states at specified intervals

Additional components of the package

  • dlk/mgmt/: Management of configuration parameter loading/saving, logging, etc.
  • dlk/loss/: Loss functions
  • dlk/metrics/: Metrics for evaluating trained nets

Development

Set up a development environment

Obtain a clone of the git repository. This project is managed with uv. The development dependencies are declared as a dependency group, so they are installed by uv instead of pip:

uv sync

This creates .venv from the pinned versions in uv.lock and installs the default dev group, which covers formatting, linting, and testing.

To additionally install the published extras:

uv sync --all-extras

Select a PyTorch build

By default, torch resolves from PyPI, which serves CUDA-enabled wheels on Linux and CPU-only wheels on macOS and Windows. To choose a specific build, enable one of the accelerator dependency groups, for example the CPU-only one:

uv sync --group cpu

The available groups are cpu, cu126, cu128, and cu130. Each points torch at the matching PyTorch index, and the default dev group is still installed alongside it.

The groups are declared as mutually exclusive, so enable at most one; combining them, including via uv sync --all-groups, is rejected. Dependency groups are not published in the package metadata, so pip install deep-learning-toolkit is unaffected by this configuration.

After changing dependencies in pyproject.toml, refresh and commit the lock file:

uv lock

Continuous integration runs with UV_LOCKED=1, so a stale uv.lock fails the build. It also syncs the cpu group, which keeps the CUDA wheels out of the runner.

Commands for development

All make targets run their tools through uv run:

  • make format: run isort and black on dlk/ and tests/
  • make format-check: check isort and black formatting without modifying files
  • make lint: run basedpyright on dlk/ and tests/
  • make compile: run python -m compileall -q -f on dlk/ and tests/
  • make test: run pytest
  • make testq: run pytest -quiet
  • make testv: run pytest --verbose
  • make testvv: run pytest --verbose --capture=no

All test targets depend on the compile target.

Building a distribution

uv build --no-sources

Releases

Every released version is listed in CHANGELOG.md, each entry summarizing what changed and linking to its full notes in docs/releases/. Those notes add the per-commit changelog and the changed files of the release.


Citing

Citation metadata is provided in CITATION.cff, which GitHub renders under "Cite this repository". Releases are archived on Zenodo, which mints a DOI for each version.


License

Licensed under the Apache License 2.0.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deep_learning_toolkit-0.5.0.tar.gz (76.9 kB view details)

Uploaded Source

Built Distribution

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

deep_learning_toolkit-0.5.0-py3-none-any.whl (94.4 kB view details)

Uploaded Python 3

File details

Details for the file deep_learning_toolkit-0.5.0.tar.gz.

File metadata

  • Download URL: deep_learning_toolkit-0.5.0.tar.gz
  • Upload date:
  • Size: 76.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for deep_learning_toolkit-0.5.0.tar.gz
Algorithm Hash digest
SHA256 1e11ce106f64420d8dc29261b603c11710c5f7bafdaade361fe4765017ec4f12
MD5 f8ca6c44b0d55356cd161b7e1da8133a
BLAKE2b-256 797dc835572e55cd39c98e09c9418c681f63421af032dc7a1bfc969cb7ac21ce

See more details on using hashes here.

File details

Details for the file deep_learning_toolkit-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: deep_learning_toolkit-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 94.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for deep_learning_toolkit-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fc106b5d4d176c7d00143fa385b162df3171f596dc4f924fefa2f833e169deaa
MD5 575101713bba259e91d4b5f2a8689f3b
BLAKE2b-256 e7aec231a8084270be1cbb2fd8098fe6eac56aac61900388130f062096778f5a

See more details on using hashes here.

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