Python library for machine learning on graphs
Project description
Stellar Graph Machine Learning Library
Build Status
Branch | Build |
---|---|
master | |
devel |
StellarGraph is a Python library for machine learning on graph-structured (or equivalently, network-structured) data.
Graph-structured data represent entities, e.g., people, as nodes (or equivalently, vertices), and relationships between entities, e.g., friendship, as links (or equivalently, edges). Nodes and links may have associated attributes such as age, income, time when a friendship was established, etc. StellarGraph supports analysis of both homogeneous networks (with nodes and links of one type) and heterogeneous networks (with more than one type of nodes and/or links).
The StellarGraph library implements several state-of-the-art algorithms for applying machine learning methods to discover patterns and answer questions using graph-structured data.
The StellarGraph library can be used to solve tasks using graph-structured data, such as:
- Representation learning for nodes and edges, to be used for visualisation and various downstream machine learning tasks
- Node classification and attribute inference
- Link prediction
We provide examples of using StellarGraph
to solve
such tasks using several real-world datasets.
Guiding Principles
StellarGraph uses Keras library, and adheres to the same guiding principles as Keras: user friendliness, modularity, and easy extendability. Modules and layers of StellarGraph library are designed so that they can be used together with standard Keras layers and modules, if required. This enables flexibility in using existing, or creating new models and workflows for machine learning on graphs.
Getting Started
To get started with StellarGraph you'll need data structured as homogeneous or heterogeneous graph, including attributes for the entities represented as graph nodes. NetworkX is used to represent the graph and Pandas or Numpy are used to store node attributes.
Detailed and narrated examples of various machine
learning workflows on network data, supported by StellarGraph, from data ingestion into graph structure to inference,
are given in /demos
.
Installation
StellarGraph is a Python 3 library and requires Python version 3.6 to function (note that the library uses Keras with the Tensorflow backend, and thus does not currently work in python 3.7). The required Python version can be downloaded and installed from python.org. Alternatively, use the Anaconda Python environment, available from anaconda.com.
The StellarGraph library can be installed in one of two ways, described next.
Install StellarGraph from PyPy:
To install StellarGraph library from PyPy using pip
, run the following command:
pip install stellargraph
Install StellarGraph from Github source:
First, clone StellarGraph using git
:
git clone https://github.com/stellargraph/stellargraph/
Then, cd
to StellarGraph folder, install requirements and the library:
cd stellargraph
pip install -r requirements.txt
pip install -e .
Algorithms
The StellarGraph library currently includes the following algorithms for graph machine learning:
-
GraphSAGE [1]
- Supports representation learning, node classification/regression, and link prediction for homogeneous networks. The current implementation supports mean aggregation of neighbour nodes only.
-
HinSAGE
- Extension of GraphSAGE algorithm to heterogeneous networks. Supports representation learning, node classification/regression, and link prediction/regression for heterogeneous graphs. The current implementation supports mean aggregation of neighbour nodes, taking into account their types and the types of links between them.
-
Node2Vec [2]
- Unsupervised representation learning for homogeneous networks, taking into account network structure while ignoring node attributes. The node2vec algorithm is implemented by combining StellarGraph's random walk generator with the word2vec algorithm from Gensim. Learned node representations can be used in downstream machine learning models implemented using Scikit-learn, Keras, Tensorflow or any other Python machine learning library.
-
Metapath2Vec [3]
- Unsupervised, metapath-guided representation learning for heterogeneous networks, taking into account network structure while ignoring node attributes. The implementation combines StellarGraph's metapath-guided random walk generator and Gensim word2vec algorithm. As with node2vec, the learned node representations (node embeddings) can be used in downstream machine learning models to solve tasks such as node classification, link prediction, etc, for heterogeneous networks.
Getting Help
API Documentation for StellarGraph can be found here.
CI
buildkite integration
Pipeline is defined in .buildkite/pipeline.yml
Docker images
- Tests: Uses the official python:3.6 image.
- Style: Uses black from the
stellargraph
docker hub organisation.
References
-
Inductive Representation Learning on Large Graphs. W.L. Hamilton, R. Ying, and J. Leskovec arXiv:1706.02216 [cs.SI], 2017. (link)
-
Node2Vec: Scalable Feature Learning for Networks. A. Grover, J. Leskovec. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD), 2016. (link)
-
Metapath2Vec: Scalable Representation Learning for Heterogeneous Networks. Yuxiao Dong, Nitesh V. Chawla, and Ananthram Swami. ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD), 135–144, 2017 (link)
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
Built Distribution
Hashes for stellargraph-0.4.0b0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cfe10aa66bcb0966404dcdbcce94bf299795cdddaca32fcc516e44193024ef7 |
|
MD5 | f0c6535389f0524fc9deb06b81e721cb |
|
BLAKE2b-256 | fac3317177ae5e52bf48ef217d04dab56d64755589397fece96a9568b31f41ee |