SILVA Networks
PyTorch layers, solvers, tutorials, and documentation for SILVA networks and deep equilibrium models.
This repository is the public companion suite for the SILVA Networks paper, SILVA Networks as Structured Implicit Layers and Vector Attractors via Dynamic Interaction Fields, arXiv:2607.28989, by Dr. Jose Luis Silva. It is designed for two audiences:
- learners who want a progressive path from fixed points and Jacobians to full SILVA layers;
- developers who want a small, readable PyTorch package for building stimulus/local/global equilibrium layers.
The code is released under the MIT License. If you use this package, cite the
GitHub repository at https://github.com/jseluis/silva-networks. If the work is
used in connection with the SILVA Networks paper, cite the paper as well.
Install
For local development:
python -m pip install -e ".[dev,docs,examples]"
Equivalent requirements-file workflows:
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
python -m pip install -r requirements-docs.txt
python -m pip install -r requirements-examples.txt
python -m pip install -r requirements-notebooks.txt
python -m pip install -r requirements-graph.txt
python -m pip install -r requirements-vision.txt
python -m pip install -r requirements-benchmarks.txt
python -m pip install -r requirements-optimization.txt
python -m pip install -r requirements-all.txt
For package users after release:
pip install silva-networks
CLI Smoke Test
After installing the development extras, run the CPU-first package smoke:
bash scripts/smoke_test.sh
Optional checks:
bash scripts/smoke_test.sh --with-docs
bash scripts/smoke_test.sh --with-notebooks
bash scripts/smoke_test.sh --with-build
bash scripts/smoke_test.sh --with-optimization
bash scripts/smoke_test.sh --with-vision
The default smoke avoids CUDA and large image downloads. Use --with-vision
for a small CIFAR10 check and run the full TorchVision suite only when the
image archives can be cached locally.
List and run public configs directly:
silva-experiment --list-configs
silva-experiment --show-config graph_silva_smoke
silva-experiment \
--config graph_silva_smoke \
--device cpu \
--set steps=1 \
--set solver.max_iter=2
The complete notebook-free command path is documented in docs/cli.md and in
the MkDocs site under CLI Guide.
Quick Start
The package supports two workflows. You can use the SILVA modules directly in a normal PyTorch training loop, or you can use the optional supervised training helpers for seeding, evaluation, checkpointing, and resume.
import torch
from silva_networks import SILVAGraphLayer, SolverConfig
x = torch.randn(8, 5)
edge_index = torch.tensor([
[0, 1, 2, 3, 4, 5, 6, 7],
[1, 2, 3, 4, 5, 6, 7, 0],
])
layer = SILVAGraphLayer(
in_dim=5,
hidden_dim=16,
config=SolverConfig(max_iter=20, alpha=0.5, tol=1e-5),
)
result = layer(x, edge_index=edge_index, return_result=True)
print(result.z.shape, result.residuals[-1])
Stack layers, choose dimensions, swap operators, set per-layer solvers, and train the result as an ordinary PyTorch module:
import torch
from silva_networks import SILVAGraphNetwork, SolverConfig, resolve_device
device = resolve_device("auto")
x = torch.randn(20, 6, device=device)
edge_index = torch.tensor([list(range(19)), list(range(1, 20))], device=device)
model = SILVAGraphNetwork(
in_dim=6,
hidden_dims=[32, 32, 16],
out_dim=4,
task="node",
config=[
SolverConfig(solver="picard", max_iter=10, alpha=0.5),
SolverConfig(solver="anderson", max_iter=10, alpha=0.5, history=4),
SolverConfig(solver="broyden", max_iter=8, alpha=0.4),
],
local=["graph", "topk", "graph"],
global_term="mean",
).to(device)
logits = model(x, edge_index=edge_index)
For DEQ-style memory behavior, switch the same layer or preset configs to
SolverConfig(backward_mode="implicit", backward_solver="gmres"). The default
backward_mode="unrolled" keeps ordinary finite-step PyTorch gradients.
Optional training-loop helper:
from silva_networks import TrainConfig, fit_supervised
result = fit_supervised(
model,
train_loader,
val_loader,
config=TrainConfig(
task="classification",
epochs=50,
lr=0.002,
gradient_clipping=1.0,
checkpoint_path="runs/checkpoint.pt",
),
)
Run a DEQ-style implicit layer through the same solver controls:
import torch
from silva_networks import SolverConfig, resolve_device, silva_fixed_point_classifier
device = resolve_device("cuda" if torch.cuda.is_available() else "cpu")
x = torch.randn(32, 16, device=device)
model = silva_fixed_point_classifier(
in_features=16,
state_dim=64,
num_classes=4,
config=SolverConfig(solver="anderson", max_iter=20, alpha=0.6, history=5),
).to(device)
logits = model(x)
Use SILVA as a generalized form by disabling or specializing branches. The compact affine-tanh DEQ is the case with no local branch, no global branch, and a learned linear self branch:
from silva_networks import SolverConfig, silva_deq_reduction_layer
layer = silva_deq_reduction_layer(
in_dim=16,
hidden_dim=64,
config=SolverConfig(solver="anderson", max_iter=20, alpha=0.6),
)
z_star = layer(x)
A graph/message-passing DEQ keeps the local operator and disables the other interaction branches:
from silva_networks import silva_message_passing_reduction_layer
layer = silva_message_passing_reduction_layer(
in_dim=features.shape[1],
hidden_dim=64,
local="gat",
local_kwargs={"heads": 4},
)
z_star = layer(features, edge_index=edge_index)
Build cortex-style hierarchies when one equilibrium point should contain a deep internal transition network and then feed another equilibrium point with a different architecture, solver, or damping value:
from silva_networks import SILVACortexLayer, SILVACortexNetwork
model = SILVACortexNetwork(
[
SILVACortexLayer(
input_dim=5,
state_dim=14,
state_network=torch.nn.Sequential(
torch.nn.Linear(14, 14),
torch.nn.Tanh(),
torch.nn.Linear(14, 14),
),
config=SolverConfig(solver="picard", max_iter=10, alpha=0.5),
),
SILVACortexLayer(
input_encoder=torch.nn.Linear(14, 10),
state_dim=10,
config=SolverConfig(solver="anderson", max_iter=10, alpha=0.2, history=3),
normalize=False,
),
],
links="tanh",
head=torch.nn.Linear(10, 2),
)
Use the family selector when you want a single choice point:
from silva_networks import available_silva_families, silva_equilibrium_model
print(available_silva_families())
model = silva_equilibrium_model(
"silva_projected_qp",
in_dim=16,
state_dim=8,
constraint="simplex",
config=SolverConfig(solver="picard", max_iter=25, alpha=1.0),
)
Adapt a dataset into the SILVA tensor contract:
from silva_networks import load_tabular_dataset, tabular_to_silva_graph
dataset = load_tabular_dataset("wine", root="data", download=True, normalize=True)
graph = tabular_to_silva_graph(dataset, k=8, normalize=True, undirected=True)
logits = model(graph.x, edge_index=graph.edge_index, batch=graph.batch)
For private or unusual datasets, provide the same roles yourself: x,
edge_index, edge_attr, batch, and targets. The package also includes image
vector, image pixel-grid, and molecular graph adapters.
What Is Included
src/silva_networks/: PyTorch package with solvers, Jacobian diagnostics, SILVA layers, cortex hierarchies, stackable architectures, DEQ engine utilities, optical-flow modules, constrained optimization layers, dataset helpers, and device helpers.docs/: Material for MkDocs documentation site, including the case atlas, derivation-first math pages, API maps, examples, and references.- Companion book and solutions manual: planned long-form learning assets.
notebooks/: solved progressive notebooks.notebooks/package_api/: package-first tutorials that importsilva_networksdirectly.notebooks/implicit_bridge/: adapted implicit-layer, DEQ, MDEQ, ODE, and differentiable-optimization notebooks using the package API.colab/: Colab-ready notebook exports for the package and bridge tracks.examples/: small runnable examples for CPU, CUDA, or MPS PyTorch devices.experiments/public/: configurable public package checks and learning cases.tests/: package, docs, notebook, and example checks.tests_extended/: optional extended validation checks, run explicitly.src/silva_networks/coverage.py: implementation families mapped to their docs, notebooks, examples, and smoke tests.
Datasets and Public Experiments
List and download public datasets:
silva-download-datasets --list
silva-download-datasets iris wine wdbc seeds
Run package experiments:
silva-experiment \
--config solver_sweep
silva-experiment \
--config iris_tabular_silva
silva-experiment \
--config fully_configurable_graph
Dataset files are written under data/, which is ignored by git.
The configurable graph experiment exposes the same controls as the Python API: per-layer local operators, global operators, learned self terms, solver family, damping, solver budget, hidden dimensions, readout head, task mode, pooling, and device.
The package-native constrained optimization layer exposes constraint choice,
projection parameters, positive-definite matrix regularization, projected
gradient step size, solver family, damping, tolerance, and iteration budget.
For full disciplined convex programs, install silva-networks[optimization]
and use the optional silva_cvxpy_layer bridge.
Implicit Layers Bridge
The bridge track adapts the Deep Implicit Layers tutorial themes, LocusLab DEQ ideas, MDEQ, and Jacobian regularization into package-native notebooks and APIs with source citations.
notebooks/implicit_bridge/
colab/implicit_bridge/
docs/implicit-bridge-notebooks/
Key SILVA imports:
from silva_networks import (
SILVADEQConfig,
SILVADEQEngine,
SILVADEQFlow,
SILVAEulerFlowBlock,
SILVAFixedPointBlock,
SILVAFixedPointClassifier,
SILVAImplicitTransition,
SILVAMultiscaleDEQBlock,
SILVAProjectedQPLayer,
SILVAQuadraticOptimizationLayer,
SILVAVariationalDropout,
available_silva_families,
silva_deq_flow,
silva_projected_qp_layer,
silva_cvxpy_layer,
silva_deq,
silva_deq_engine,
silva_deq_reduction_layer,
silva_equilibrium_model,
silva_euler_flow_block,
silva_fixed_point_block,
silva_fixed_point_classifier,
silva_generalized_layer,
silva_implicit_transition,
silva_jacobian_regularization_loss,
silva_message_passing_reduction_layer,
silva_multiscale_deq_block,
silva_quadratic_optimization_layer,
)
The silva_... factories are the preferred package-facing entry points. The
generic DEQ names remain available for comparisons and for readers who want to
separate the classical DEQ baseline from SILVA-specific structured operators.
The same models run on CPU or GPU by moving the model and tensors to the same
PyTorch device.
DEQ Engine and Optical Flow
The package includes a TorchDEQ-style engine for arbitrary fixed-point systems:
from silva_networks import SILVADEQConfig, silva_deq
result = silva_deq(
transition,
z0,
config=SILVADEQConfig(forward_solver="anderson", forward_max_iter=20),
return_result=True,
)
It also includes a compact RAFT/DEQ-Flow-inspired optical-flow module:
from silva_networks import (
SolverConfig,
make_silva_translation_flow_batch,
silva_endpoint_error,
silva_deq_flow,
)
batch = make_silva_translation_flow_batch(height=16, width=16, shift=(1.0, 0.0))
model = silva_deq_flow(
feature_dim=8,
hidden_dim=16,
config=SolverConfig(solver="picard", max_iter=6, alpha=0.4),
)
result = model(batch.image1, batch.image2, return_result=True)
loss = silva_endpoint_error(result.flow, batch.flow, batch.valid)
The optical-flow implementation provides a SILVA-native route for RAFT-style correlation, recurrent flow refinement, and DEQ-Flow-style equilibrium solving. Cite RAFT when discussing all-pairs correlation or recurrent flow refinement, cite DEQ-Flow when discussing equilibrium optical flow, and cite SILVA for the package implementation and SILVA methodology.
For architecture-level RAFT and DEQ-Flow studies, use the coupled model:
from silva_networks import SILVARAFTDEQ
model = SILVARAFTDEQ(
feature_dim=paper_feature_dim,
hidden_dim=paper_hidden_dim,
corr_levels=4,
corr_radius=4,
config=solver_config,
)
Generalized Paper Families
The public package also includes configurable relative-attention/trellis sequence DEQs, every-to-every multiscale vision DEQs, Jacobian regularization, implicit graph networks, implicit neural representations, and joint DDIM trajectory equilibria. These are architecture and solver APIs, not bundled paper recipes. Users provide the source paper's dimensions, data, training schedule, pretrained components, and evaluation protocol.
Start with docs/learn/paper-family-adaptations.md,
notebooks/package_api/12_paper_family_architectures.ipynb, and
notebooks/package_api/13_raft_deq_flow.ipynb.
Public Asset Policy
The public repository includes original tutorial assets created for this suite. The companion book and solutions manual are planned learning assets and are listed with the learning materials. Third-party papers, upstream repositories, and external tutorials are cited and linked as references.
How to Cite
Use the repository citation metadata in CITATION.cff, or cite:
Dr. Jose Luis Silva. SILVA Networks. Version 1.0.0. MIT License.
https://github.com/jseluis/silva-networks
When the work uses or discusses the SILVA methodology, cite the paper as well:
@misc{silva2026silvanetworksstructuredimplicit,
title={SILVA Networks as Structured Implicit Layers and Vector Attractors via Dynamic Interaction Fields},
author={Jose Luis Lima de Jesus Silva},
year={2026},
eprint={2607.28989},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2607.28989},
}
The full BibTeX set for the package and cited method lineage lives in
docs/assets/bib/silva-networks.bib.
Build and Test
python -m pip install -r requirements-dev.txt
pytest
pytest tests_extended
python -m build
twine check dist/*
mkdocs build --strict
Documentation
Local preview:
mkdocs serve
Static build:
mkdocs build --strict
Key documentation routes:
- Case Atlas: graph, vision, molecular, dataset, diagnostics, and extension cases.
- Mathematical Foundations: residuals, damping, contractions, implicit adjoints, solver derivations, graph terms, and complexity.
- API Reference: public package modules grouped by use case.
- Implicit Layers Bridge: adapted implicit layers, DEQ, MDEQ, ODE, optimization, and Jacobian regularization tutorials.
- Book and Solutions Manual: coming-soon roadmap for the companion book and solved manual.
Dependency Policy
The package uses broad compatible ranges so pip can install the newest PyTorch
wheel available for each platform. Runtime pins are kept only where they protect
known compatibility, such as the current numpy>=1.24,<2.0 bound used with the
supported PyTorch wheel range.
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 silva_networks-1.0.0.tar.gz.
File metadata
- Download URL: silva_networks-1.0.0.tar.gz
- Upload date:
- Size: 7.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0d80458b5d3d95cd5bde223bf4f8e63d39216b65961751ea59333dc468f5b74
|
|
| MD5 |
5f22057dec01e13624fc94f3e3947b30
|
|
| BLAKE2b-256 |
3ddc47c9b69ebcb4b6c33c0b5554a186a73d3046e33382702b780fc4f0cee1e4
|
Provenance
The following attestation bundles were made for silva_networks-1.0.0.tar.gz:
Publisher:
release.yml on jseluis/silva-networks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
silva_networks-1.0.0.tar.gz -
Subject digest:
d0d80458b5d3d95cd5bde223bf4f8e63d39216b65961751ea59333dc468f5b74 - Sigstore transparency entry: 2333961754
- Sigstore integration time:
-
Permalink:
jseluis/silva-networks@19035f78786bdcb7b0cc63410290a86826e9988f -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/jseluis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@19035f78786bdcb7b0cc63410290a86826e9988f -
Trigger Event:
release
-
Statement type:
File details
Details for the file silva_networks-1.0.0-py3-none-any.whl.
File metadata
- Download URL: silva_networks-1.0.0-py3-none-any.whl
- Upload date:
- Size: 129.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e2f64c45379d96d2a1eadb1f558592445d417e653a56e19f168003f3ad25994
|
|
| MD5 |
a79f023deb86bee188e5763b38516e02
|
|
| BLAKE2b-256 |
2c99d0cc7557d9fc08310487a46d2109ec34e72206b02249c6b3ec198ce6bb08
|
Provenance
The following attestation bundles were made for silva_networks-1.0.0-py3-none-any.whl:
Publisher:
release.yml on jseluis/silva-networks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
silva_networks-1.0.0-py3-none-any.whl -
Subject digest:
4e2f64c45379d96d2a1eadb1f558592445d417e653a56e19f168003f3ad25994 - Sigstore transparency entry: 2333961776
- Sigstore integration time:
-
Permalink:
jseluis/silva-networks@19035f78786bdcb7b0cc63410290a86826e9988f -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/jseluis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@19035f78786bdcb7b0cc63410290a86826e9988f -
Trigger Event:
release
-
Statement type: