Graph Neural Network Tensorflow implementation
Project description
Graph Neural Network Model
This repo contains a Tensorflow implementation of the Graph Neural Network model.
- Website (including documentation): https://sailab.diism.unisi.it/gnn/index.html
Install
Install the latest version of NetworkX:
$ pip install gnn
For additional details, please see INSTALL.rst
.
Simple usage example
import GNN
import Net as n
# Provide your own functions to generate input data
inp, arcnode, nodegraph, labels = set_load()
# Create the state transition function, output function, loss function and metrics
net = n.Net(input_dim, state_dim, output_dim)
# Create the graph neural network model
g = GNN.GNN(net, input_dim, output_dim, state_dim)
#Training
for j in range(0, num_epoch):
g.Train(inp, arcnode, labels, count, nodegraph)
# Validate
print(g.Validate(inp_val, arcnode_val, labels_val, count, nodegraph_val))
License
Released under the 3-Clause BSD license (see LICENSE
)
Copyright (C) 2004-2019 Matteo Tiezzi Matteo Tiezzi mtiezzi@diism.unisi.it Alberto Rossi alrossi@unifi.it
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
gnn-1.0.1.tar.gz
(6.7 kB
view details)
Built Distribution
gnn-1.0.1-py3-none-any.whl
(8.5 kB
view details)
File details
Details for the file gnn-1.0.1.tar.gz
.
File metadata
- Download URL: gnn-1.0.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a790f9cebe1fd025f3929d9349972c53bfb399e7e617c5b6f742593e9acaa9d |
|
MD5 | 1f712a358dd6a4d48ebef68971a2f4b1 |
|
BLAKE2b-256 | 0a942079b4ee486fa14f314bfc11e95dc47a0dd0d35ba8b65dee497ee74c5877 |
File details
Details for the file gnn-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: gnn-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c718efb211aa4d2e18c6281f258ed976facbcd5b81124fcc930c628298557f56 |
|
MD5 | 1294e7ffcd4aa54cf68c869cb0fe3039 |
|
BLAKE2b-256 | 139b9580e4f6215485c8e9364a5b9f6827b6dea9842de2557685367e2627dc44 |