Trainable graph adjacency parameterizations with ODE integration and Lightning training helpers.
Project description
GradNet
GradNet is a PyTorch-based framework for AI-enabled optimization of networks. Define objectives, static or dynamical, along with structural constraints, and let gradient-based optimization find the optimal network structure.
It encodes the network structure as a differentiable object with optional budget and structure constraints. It lets the users directly optimize static objectives using a lightweight PyTorch Lightning training loop. Alternatively, built-in ODE solvers can be used to define and optimize dynamical objectives.
Illustration of the gradient-based optimization pipeline for network structure.
A random network rewires itself with GradNet to optimize synchronization in the Kuramoto model.
Highlights
- Learn dense or sparse adjacency updates with norm, sign, and symmetry constraints.
- Projected parameterizations that stay differentiable and GPU friendly.
- Torchdiffeq-backed integration utilities for graph-driven dynamical systems.
- Minimal Lightning trainer that wraps loss functions in just a few lines.
Installation
Install the released package from PyPI:
pip install gradnet
To work off the latest sources instead, clone the repository and install in editable mode:
pip install -e .
GradNet targets Python 3.10+ and requires pip 21.3+ (run pip install --upgrade pip if needed). It depends on PyTorch, PyTorch Lightning, torchdiffeq, NumPy, and tqdm (installed automatically by the command above). Examples install additional dependencies pip install 'gradnet[examples]'.
Documentation
Full API documentation, tutorials, and background material live at gradnet.readthedocs.io.
Quickstart
A minimal setup of gradnet optimization, implemented for maximizing Algebraic connectivity. loss function has an extra minus since loss is always minimized.
from gradnet import GradNet, fit
from gradnet.utils import plot_graph, laplacian, plot_adjacency_heatmap
from torch.linalg import eigvalsh
# define a loss function you want to minimize
def negative_algebraic_connectivity(gn):
# get the adjacency
A = gn()
L = laplacian(A)
eigs = eigvalsh(L)
return -eigs[1]
gn = GradNet(num_nodes=10, budget=10)
fit(gn=gn,
loss_fn=negative_algebraic_connectivity,
num_updates=1000,
accelerator="cpu")
plot_graph(gn, plt_show=True)
Here num_updates is the number of optimization steps.
You can set accelerator="cuda" to run the optimization on the GPU.
The examples folder contains several examples of how to use GradNet.
Spectral optimization (algebraic connectivity)
Demonstrates a simple example of configuring a GradNet object restricted to a grid lattice.
It defines a simple static loss function (the algebraic connectivity).
Then it uses fit to optimize the network structure, all in the first code cell of the notebook.
The rest of the notebook is analysis of the optimal grid and comparison of dense and sparse backends.
Kuramoto network optimization
A simple example of dynamical loss and usage of integrate_ode.
Demonstrates structural optimization and emergent sparsity with no mask.
Zachary's karate club
An example showing how to optimally modify existing networks.
Modules at a glance
gradnet.GradNet: wraps dense and sparse parameterizations, supports directed/undirected networks, masking, custom edge-building costs and more.gradnet.integrate_ode: torchdiffeq-powered solver with adjoint and event support for adjacency-dependent dynamics.gradnet.fit: PyTorch Lightning loop that optimizes aGradNetusing user-supplied loss functions.gradnet.utils: helper functions.
Credits
GradNet relies on (and is inspired by) the following open-source projects:
License
GradNet is released under the BSD 3-Clause License. See LICENSE for details.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gradnet-0.4.1.tar.gz.
File metadata
- Download URL: gradnet-0.4.1.tar.gz
- Upload date:
- Size: 32.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3668dde1d799a74f276bf948904ee80dd3918dfc9c9bb214d6db297ff1758435
|
|
| MD5 |
5b2eb9357850a3cdf4f2849ad143efd5
|
|
| BLAKE2b-256 |
c7c567e5c6fab64bc2c1f45268e133618b7a28402e8134fffd195ccd46f1cf1a
|
File details
Details for the file gradnet-0.4.1-py3-none-any.whl.
File metadata
- Download URL: gradnet-0.4.1-py3-none-any.whl
- Upload date:
- Size: 34.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c127b054f99f3c352a0339edfef2aeb5792b3509fe786892ffe2cb2e46107190
|
|
| MD5 |
2f93551ec3be1048b3a779da6dfc1e30
|
|
| BLAKE2b-256 |
bc425c50214d5ac19cfbe91e945749afb7a76316b025ea1f9c502ffe39a6e1fe
|