Skip to main content

Common PyTorch utilities for research projects on neural networks.

Project description

NN-Library

We in the BONSAI Lab do research on neural networks, among other things, that requires loading/training/reconfiguring neural network models. This library is a work-in-progress suite of in-house tools to address some pain-points we've encountered in our research workflow.

We make no guarantees about the stability or usability of this library, but we hope that it can be useful to others in the research community. If you have any questions or suggestions, please feel free to reach out to us or open an issue on the GitHub repository.

Installation

Using pip:

pip install bonsai-nn-library

Using uv (in a project):

uv add bonsai-nn-library

Or, as a drop-in replacement for pip:

uv pip install bonsai-nn-library

CUDA versioning note: configuring CUDA dependencies for pytorch/nvidia-dali is notoriously tricky. At time of writing this, there are some open PyTorch issues and open PEPs that will someday make life easier. For now, what we have is some hard-coded nvidia-dali-cuda130 and torch cu132 dependencies in ourpyproject.toml file. If you have a different CUDA version, it's possible this will work as-is, or it's possible you will need to modify the pyproject. toml file to specify the correct versions. See the disclaimer above: we don't guarantee our library will work for everyone on all systems, but if you have a way to improve it we welcome contributions.

Usage

The top-level import is nn_lib. Say you want to use one of our "fancy layers" like a low-rank convolution. You can do so like this:

from torch import nn
from nn_lib.models.fancy_layers import LowRankConv2d

model = nn.Sequential(
    LowRankConv2d(in_channels=3, out_channels=64, kernel_size=3, rank=8),
    nn.ReLU(),
    nn.Conv2d(in_channels=64, out_channels=64, kernel_size=3),
    nn.ReLU(),
    nn.Flatten(),
    nn.LazyLinear(10)
)

Useful thing #1: improved GraphModules.

PyTorch was not originally designed to handle explicit computation graphs, but it was added somewhat later in the torch.fx module. Others might use tensorflow or jax for this, but we like PyTorch. The torch.fx.GraphModule class is the built-in way to handle computation graphs in PyTorch, but it lacks some features that we find useful. We have extended the GraphModule class in our GraphModulePlus class, which inherits from GraphModule and adds some further functionality.

A motivating use-case is that we want to be able to "stitch" models together or extract out hidden layer activity. This is a little tricky to get right using GraphModule alone, but we've added some utilities like

  • GraphModulePlus.set_output(layer_name): use this to chop off the head of a model and make it output from a specific layer.
  • GraphModulePlus.new_from_merge(...): use this to merge or "stitch" existing models together. See demos/demo_stitching.py for a worked out example.

We've also done some metaprogramming trickery so that if you import GraphModulePlus anywhere in your code, it will automatically inject itself into the torch.fx module. The surprising but convenient behavior is:

from torch import nn
from torch.fx import symbolic_trace
from nn_lib.models import GraphModulePlus

my_regular_torch_model = nn.Sequential(
    nn.Conv2d(3, 64, 3),
    nn.ReLU(),
    nn.Conv2d(64, 64, 3),
    nn.ReLU(),
    nn.Flatten(),
    nn.LazyLinear(10)
)

# Natively, symbolic_trace is expected to return a GraphModule, but we've injected GraphModulePlus
graphified_model = symbolic_trace(my_regular_torch_model)
assert isinstance(graphified_model, GraphModulePlus)

Useful thing #2: Fancy layers.

We have implemented a few "fancy" layers, available via nn_lib.models or nn_lib.models.fancy_layers that we find useful in our research. These include:

  • Regressable linear layers: a Protocol that allows linear layers to be initialized by least squares regression. This is useful for initializing a linear layer to approximate a function learned by a different model.
  • RegressableLinear: a regressable version of nn.Linear
  • LowRankLinear: a regressable linear layer with a low-rank factorization.
  • ProcrustesLinear: a regressable linear layer constrained to rotation, with optional shift (bias) and optional scaling.
  • A conv2d version of each of the above.

Useful thing #3: MLFLOW utilities.

We use MLFlow to track our experiments. We have a few utilities in nn_lib.utils.mlfow that remove a bit of boilerplate from our code.

Useful thing #4: Dataset utilities and torchvision wrappers.

Deprecation warning: we have removed the Lightning dependency in favor of pure pytorch + other libraries (FFCV / Dali) for fast data loading.

We have implemented some LightningDataModule classes for a few standard vision datasets. See nn_lib.datasets. We've also implemented a few simple helpers for downloading pretrained models from torch hub using the torchvision API. See nn_lib/models/__init__.py

Useful thing #5: NTK utilities.

See nn_lib.analysis.ntk for some neural tangent kernel utilities.

Forthcoming/Planned features

  • More fancy layers
  • Vector Quantization utilities (but see nn_lib.models.sparse_auto_encoder which has some already)
  • Further analysis utilities especially focused on calculating neural similarity measures.

Obsolete/deprecated features

  • lightning training and overly-complex CLI utilities. Some straggler files might still need to be cleaned up.

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

bonsai_nn_library-0.6.0.tar.gz (70.5 kB view details)

Uploaded Source

Built Distribution

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

bonsai_nn_library-0.6.0-py3-none-any.whl (65.5 kB view details)

Uploaded Python 3

File details

Details for the file bonsai_nn_library-0.6.0.tar.gz.

File metadata

  • Download URL: bonsai_nn_library-0.6.0.tar.gz
  • Upload date:
  • Size: 70.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for bonsai_nn_library-0.6.0.tar.gz
Algorithm Hash digest
SHA256 bba8f97a77a0ec7d4f01886265e4d985da538a0e9e9104b3f5a978c387b7f812
MD5 5db885ae07193866303e81ab7c176387
BLAKE2b-256 f74045d87116179d4caff3f402b36d70da41dca00244492b35794e5e20d9e4c5

See more details on using hashes here.

File details

Details for the file bonsai_nn_library-0.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for bonsai_nn_library-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16f57b917e0e62c3a3ada9c8d81866c255055378a09dce7d5c5bdd2c3025ec9f
MD5 5296e6565507f5953d137c54120d4822
BLAKE2b-256 92603b1d7c46f00bb3ccdc21408cd134ab9a81bffa501803f0713f4e22c55a92

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