Skip to main content

Build sparsely connected PyTorch neural networks from prior-knowledge graphs, with optional feature- and node-level attribution.

Project description

edge2torch

CI codecov

Build sparsely connected PyTorch neural networks from prior-knowledge graphs, with optional feature- and node-level attribution.

Documentation: https://Thomas-Rauter.github.io/edge2torch/

Overview

edge2torch is an edge-list-to-PyTorch compiler for sparse neural network architectures with named nodes.

Define a model architecture as an edge list, compile it into a minimally opinionated PyTorch model, train it with standard PyTorch tools, and optionally map model behavior back to the named nodes and features that defined the architecture.

The package is designed for users who want to build sparse or structured neural networks from a predefined graph rather than manually wiring PyTorch modules. It is domain-agnostic: any setting where a neural architecture can be represented as named edges can use the same graph-to-model abstraction.

A major application area is knowledge-primed neural networks (KPNNs), where prior knowledge defines the model structure. In biology, for example, edge lists may connect genes, transcription factors, pathways, kinases, or other biological entities. The same approach can also apply in domains such as chemistry or other fields with graph-structured prior knowledge.

edge2torch deliberately leaves training loops, losses, optimizers, task-specific heads, and advanced customization to standard PyTorch.

The package is built around four main steps:

  1. Define a model architecture as an edge list with named source and target nodes.
  2. Compile the edge list into a backend-specific PyTorch model with compile_graph().
  3. Align named input data features to the compiled model input nodes with align_features_to_input_nodes().
  4. Customize, train, and interpret the model with ordinary PyTorch, customize_model(), and interpret_model().

Installation

Install edge2torch from PyPI with:

pip install edge2torch

To run the interpret_model() function:

pip install "edge2torch[interpret]"

For optional AnnData support:

pip install "edge2torch[anndata]"

To install both optional extras:

pip install "edge2torch[all]"

Minimal example

import pandas as pd
import torch
from torch import nn

import edge2torch as e2t

edgelist = pd.DataFrame(
    {
        "source": ["entity_1", "entity_2", "hidden_1"],
        "target": ["hidden_1", "hidden_1", "output_1"],
    }
)

model, artifact = e2t.compile_graph(
    edgelist=edgelist,
    backend="feedforward",
)

data = pd.DataFrame(
    {
        "entity_1": [0.1, 0.2, 0.3],
        "entity_2": [1.0, 1.1, 1.2],
    }
)

x = e2t.align_features_to_input_nodes(
    data=data,
    artifact=artifact,
)

outputs = model(x)

The returned model is a standard PyTorch nn.Module. It can be trained, wrapped, optimized, saved, and inspected with ordinary PyTorch tooling.

Optional convenience wrappers can be used for common downstream additions:

customized_model = e2t.customize_model(
    model=model,
    activation=nn.ReLU(),
    head=nn.Linear(1, 1),
)

optimizer = torch.optim.Adam(customized_model.parameters(), lr=1e-3)

After training, the model can optionally be interpreted with Captum-based attribution methods:

feature_attributions = e2t.interpret_model(
    model=customized_model,
    artifact=artifact,
    data=data,
    target="features",
    method="IntegratedGradients",
)

Package philosophy

edge2torch is intentionally minimally opinionated.

It defines the structural semantics required to compile a graph into a neural network backend, but it does not impose broader modeling choices such as:

  • activation functions
  • output heads
  • dropout
  • loss functions
  • optimizers
  • training loops

These remain part of the normal PyTorch workflow.

This keeps the package small in scope:

  • edge2torch handles graph compilation
  • PyTorch handles model training
  • edge2torch maps trained models back to interpretable named entities

Main public API

The current public API is centered on:

  • compile_graph()
  • align_features_to_input_nodes()
  • customize_model()
  • interpret_model()

CompileArtifact is also exported as a public type because it is returned by compile_graph() and consumed by helper functions. Its stable user-facing fields are backend and feature_names; other fields expose compilation internals for inspection and debugging and may change across releases.

__version__ is exported for version reporting.

Supported backends

compile_graph() currently supports:

  • feedforward
  • recurrent
  • graphnn

Feature attribution is available through Captum-based methods on all backends. Node-level interpretation is also available on all backends through layer-level Captum methods such as LayerConductance and LayerIntegratedGradients.

Documentation

The documentation website is the main source of package documentation.

It includes:

  • installation instructions
  • a getting-started tutorial
  • backend documentation
  • interpretation guidance
  • API reference

Documentation: https://Thomas-Rauter.github.io/edge2torch/

Citation

If you use edge2torch in research, please cite the software. Citation metadata is available in CITATION.cff.

License

See LICENSE.

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

edge2torch-0.2.0.tar.gz (44.4 kB view details)

Uploaded Source

Built Distribution

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

edge2torch-0.2.0-py3-none-any.whl (60.1 kB view details)

Uploaded Python 3

File details

Details for the file edge2torch-0.2.0.tar.gz.

File metadata

  • Download URL: edge2torch-0.2.0.tar.gz
  • Upload date:
  • Size: 44.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for edge2torch-0.2.0.tar.gz
Algorithm Hash digest
SHA256 56dc3511b3e2fab181d41eaf07e60d6e9e6f04e74d061ed1b8ed6ac30fdb7cd7
MD5 cf46f31552854211b6957d84fc0b03b0
BLAKE2b-256 77ba4d0d52907a3517cd169231ec9bd15876534b8f5a29a3bdf9fb5ff48a217c

See more details on using hashes here.

Provenance

The following attestation bundles were made for edge2torch-0.2.0.tar.gz:

Publisher: release.yml on Thomas-Rauter/edge2torch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file edge2torch-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: edge2torch-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 60.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for edge2torch-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e10b316a364cc36c8232c30d38a496e401927ce01fe86ca97217d6fff24b5838
MD5 f3b583d9be6797cbb78886e81342cda5
BLAKE2b-256 ff11ade9bf77a7c3652fb5a6a3009c7d3695dcfcc789a78c3639f3c61a019773

See more details on using hashes here.

Provenance

The following attestation bundles were made for edge2torch-0.2.0-py3-none-any.whl:

Publisher: release.yml on Thomas-Rauter/edge2torch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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