Skip to main content

ReprNet: Build Representation Network with Python

Introduction: What's this?

Representation network is a directed graph that represents how different representations are related to each other.

There are one type of node and two types of (hyper) edges in the representation network.

  • Node: a representation, such as a vector, a paragraph, a computer program
  • Transformation edge: a directed hyper edge from a set of representations to another set of representation representing a transformation from the source representations to the target representations. It also carries information of who is the composer of the transformation.
  • Abstraction edge: a directed edge from a representation to a set of other representations, representing that the source representation can be abstracted from the target representation.

Examples

Transformation edge

  • A calculator transform a set of numbers to another number. In the network, it can be represented as a transformation edge from {calculator} to {number} with the composer being the calculator.

  • The training of a neural network can be represented as a transformation edge from {neural network, training data} to {neural network} with the composer being the training algorithm.

Abstraction edge

The abstract edge denote the direction where information is lost.

  • A graph neural network can be abstracted to a neural network, which can be abstracted to a computer program. Along the edge, information about which type is the computer program and which type is the neural network is lost.

Additionally, the abstraction edge can be used to represent how a complex representation is formed by combining simpler representations.

  • A pair of numbers can be abstracted to a number because it contains numbers. Along the edge, information about how the number is combined into more complex representation is lost.
  • A function that takes a number and returns a number can be abstracted to {number, mapping} because it is related to a number and a mapping. Along the edge, information about how what is the mapping is lost.

Represent the network in Python

In repr_net, we use Python classes the represent the network. To define a representation, one just need to define a subclass in the following way:

from repr_net import Repr
class Number(Repr):
    pass
class Calculator(Repr):
    pass

A transformation edge can be defined as follows:

from repr_net import Transform
class Calculate(Transform):
    in_nodes = [Number]
    out_nodes = [Number]
    composer = Calculator

A abstraction edge can be defined using inheritance:

class NumberTuple(Number):
    pass
class Addition(Transform):
    in_nodes = [NumberTuple]
    out_nodes = [Number]
    composer = Calculator

Meta information

repr_net also provides a way to store meta information about the representation network. For example, one can store the information about the node and transforms:

from repr_net.bibtex import bib
from repr_net import Repr

class NeuralNetwork(Repr):
    description = "Artificial neural network"
    citations = [bib("""
@article{lecun2015deep,
  title={Deep learning},
  author={LeCun, Yann and Bengio, Yoshua and Hinton, Geoffrey},
  journal={nature},
  volume={521},
  number={7553},
  pages={436--444},
  year={2015},
  publisher={Nature Publishing Group UK London}
}""")]
    contributors = ["Bob", "Alice"]
    
class Inference(Transform):
    in_nodes = [Number]
    out_nodes = [Number]
    composer = Transform
    description = "Inference by a neural network"

Visualization

repr_net also provides a way to visualize the representation network. After defining the transforms and nodes, one build a networkx graph and visualize it. We also provide a visualization tool to display the network.

import module_contains_the_your_network # your network!
from repr_net.indexing import generate_network_from_module
from repr_net.visualization import display_network
# This extracts all the classes defined in the directory of the module
G = generate_network_from_module(module_contains_the_your_network)
display_network(G)

See example network visualization here!

Installation

pip install repr_net

Release files for repr-net 0.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for repr-net 0.0.1
File Size Uploaded
repr_net-0.0.1.tar.gz 6.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for repr-net 0.0.1
File Interpreter ABI Platform
repr_net-0.0.1-py3-none-any.whl Python 3 none any Details

Total release size: 13.1 kB

Release files / repr_net-0.0.1.tar.gz

Download URL repr_net-0.0.1.tar.gz
Size 6.2 kB
Tags Source
SHA-256 checksum
How to use checksums
b1fc33777ae268544e6f4e40346bd14fd41cbaf27ef606ff0a525e82e41d8708
BLAKE2b-256 checksum
How to use checksums
d520b9bb874758e8fc30d5c251903e83ec84936c7b826ca5d35a27b8f360c3db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.10.15

Release files / repr_net-0.0.1-py3-none-any.whl

Download URL repr_net-0.0.1-py3-none-any.whl
Size 6.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
90aac9cef85959406d40f0bb1b7d6bb93cd97766e0d5c6434a6153b30fbefa75
BLAKE2b-256 checksum
How to use checksums
5d3d5e3ab3839b5fa7bbc716292bc133866dbbca5d0c503657b1b4f0553290ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.10.15

Release history Release notifications | RSS feed

This release

0.0.1 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page