MCPcopy Index your code
hub / github.com/danielegrattarola/spektral

github.com/danielegrattarola/spektral @v1.3

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.3 ↗ · + Follow
835 symbols 2,766 edges 155 files 208 documented · 25%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Welcome to Spektral

Spektral is a Python library for graph deep learning, based on the Keras API and TensorFlow 2. 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 users of a social 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:

and many others (see convolutional layers).

You can also find pooling layers, including:

Spektral also includes lots of utilities for representing, manipulating, and transforming graphs in your graph deep learning projects.

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

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

If you want to cite Spektral in your work, refer to our paper:

Graph Neural Networks in TensorFlow and Keras with Spektral

Daniele Grattarola and Cesare Alippi

Installation

Spektral is compatible with Python 3.6 and above, and is tested on the latest versions of Ubuntu, MacOS, and Windows. Other Linux distros should work as well.

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:

! pip install spektral

New in Spektral 1.0

The 1.0 release of Spektral is an important milestone for the library and brings many new features and improvements.

If you have already used Spektral in your projects, the only major change that you need to be aware of is the new datasets API.

This is a summary of the new features and changes:

  • The new Graph and Dataset containers standardize how Spektral handles data. This does not impact your models, but makes it easier to use your data in Spektral.
  • The new Loader class hides away all the complexity of creating graph batches. Whether you want to write a custom training loop or use Keras' famous model-dot-fit approach, you only need to worry about the training logic and not the data.
  • The new transforms module implements a wide variety of common operations on graphs, that you can now apply() to your datasets.
  • The new GeneralConv and GeneralGNN classes let you build models that are, well... general. Using state-of-the-art results from recent literature means that you don't need to worry about which layers or architecture to choose. The defaults will work well everywhere.
  • New datasets: QM7 and ModelNet10/40, and a new wrapper for OGB datasets.
  • Major clean-up of the library's structure and dependencies.
  • New examples and tutorials.

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.

The contribution guidelines are available here and a list of feature requests is available here.

Core symbols most depended-on inside this repo

get
called by 56
spektral/data/graph.py
numpy
called by 28
spektral/data/graph.py
load
called by 25
spektral/data/loaders.py
run_layer
called by 25
tests/test_layers/convolutional/core.py
sp_matrix_to_sp_tensor
called by 16
spektral/utils/sparse.py
keys
called by 14
spektral/data/graph.py
pool
called by 13
spektral/layers/pooling/src.py
_test_get_config
called by 13
tests/test_layers/convolutional/core.py

Shape

Method 411
Function 314
Class 102
Route 8

Languages

Python100%

Modules by API surface

spektral/layers/pooling/global_pool.py31 symbols
spektral/data/loaders.py31 symbols
spektral/layers/base.py24 symbols
tests/test_layers/test_ops.py23 symbols
spektral/utils/io.py22 symbols
spektral/data/dataset.py19 symbols
tests/test_utils/test_convolution.py18 symbols
spektral/layers/pooling/src.py17 symbols
spektral/utils/convolution.py15 symbols
spektral/layers/convolutional/message_passing.py15 symbols
spektral/datasets/citation.py15 symbols
tests/test_data/test_loaders.py14 symbols

For agents

$ claude mcp add spektral \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page