ofirshm / spektral

Graph Neural Networks with Keras and Tensorflow.

Home Page:https://danielegrattarola.github.io/spektral/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



Welcome to Spektral

Spektral is a Python library for graph deep learning, based on Keras and TensorFlow. The main goal of this project is to provide a simple but flexible framework for creating graph neural networks (GNNs).

You can use Spektral for classifying the nodes of a network, predicting molecular properties, generating new graphs with GANs, clustering nodes, predicting links, and any other task where data is described by graphs.

Spektral implements some of the most popular layers for graph deep learning, including:

You can also find pooling layers, including:

Spektral also includes lots of utilities for your graph deep learning projects.

See how to get started with Spektral and have a look at the examples for some project templates.

The source code of the project is available on Github.
Read the documentation here.

Installation

Spektral is compatible with Python 3.5+, and is tested on Ubuntu 16.04+ and MacOS. Other Linux distros should work as well, but Windows is not supported for now.

To install the required dependencies on Ubuntu run:

$ sudo apt install graphviz libgraphviz-dev libcgraph6

Some features of Spektral also require the following optional dependencies:

  • RDKit, a library for cheminformatics and molecule manipulation (available through Anaconda);
  • dyfunconn, a library to build functional connectivity networks (available through PyPi);

The simplest way to install Spektral is from PyPi:

$ pip install spektral

To install Spektral from source, run this in a terminal:

$ git clone https://github.com/danielegrattarola/spektral.git
$ cd spektral
$ python setup.py install  # Or 'pip install .'

To install Spektral on Google Colab:

! apt install graphviz libgraphviz-dev libcgraph6
! pip install spektral

TensorFlow 2, tf.keras, and future development

Starting from version 0.2, Spektral will only support TensorFlow 2 and tf.keras.
The migration is happening on the tf2 branch (which is now the active development branch), and TF2 users can already use the library (including examples) by installing from source:

$ git clone https://github.com/danielegrattarola/spektral.git
$ cd spektral
$ git checkout tf2
$ python setup.py install  # Or 'pip install .'

In the future, the TF1-compatible version of Spektral (<0.2) will gradually be discontinued.

Contributing

Spektral is an open source project available on Github, and contributions of all types are welcome. Feel free to open a pull request if you have something interesting that you want to add to the framework.

About

Graph Neural Networks with Keras and Tensorflow.

https://danielegrattarola.github.io/spektral/

License:MIT License


Languages

Language:Python 100.0%