Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alibaba/graph-learn
An Industrial Graph Neural Network Framework
https://github.com/alibaba/graph-learn
aligraph dynamic-graph dynamic-graph-service gnn gnn-framework gnn-inference graph graph-neural-networks graphlearn pytorch tensorflow training
Last synced: 19 days ago
JSON representation
An Industrial Graph Neural Network Framework
- Host: GitHub
- URL: https://github.com/alibaba/graph-learn
- Owner: alibaba
- License: apache-2.0
- Created: 2020-03-26T10:39:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T09:22:31.000Z (4 months ago)
- Last Synced: 2024-10-01T23:21:55.485Z (about 1 month ago)
- Topics: aligraph, dynamic-graph, dynamic-graph-service, gnn, gnn-framework, gnn-inference, graph, graph-neural-networks, graphlearn, pytorch, tensorflow, training
- Language: C++
- Homepage:
- Size: 5.53 MB
- Stars: 1,280
- Watchers: 50
- Forks: 267
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gnn-systems - Graph-Learn: An Industrial Graph Neural Network Framework - learn.svg?logo=github&label=Stars) (Open Source Libraries)
- StarryDivineSky - alibaba/graph-learn
README
![GL](docs/images/graph-learn.png)
[![graphlearn-training-pypi](https://img.shields.io/pypi/v/graph-learn.svg)](https://pypi.org/project/graph-learn/)
[![docs](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://graph-learn.readthedocs.io/en/latest/)
[![graph-learn CI](https://github.com/alibaba/graph-learn/workflows/graph-learn%20CI/badge.svg)](https://github.com/alibaba/graph-learn/actions)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/alibaba/graph-learn/blob/master/LICENSE)**News**
Our GNN acceleration library for PyTorch is now available. https://github.com/alibaba/graphlearn-for-pytorch
[**Documentation**](https://graph-learn.readthedocs.io/en/latest/)
[简体中文](README_cn.md) | English
**Graph-Learn** (formerly AliGraph) is a distributed framework designed for the development and application of large-scale graph neural networks.
It has been successfully applied to many scenarios within Alibaba, such as search recommendation, network security, and knowledge graph.
After Graph-Learn 1.0, we added online inference services to the Graph-Learn framework, providing a complete solution including training and inference for GNNs to be used in real business.- GraphLearn-Training
The training framework, supports sampling on batch graphs, training offline or incremental GNN models.
It provides both Python and C++ interfaces for graph sampling operations and provides a gremlin-like GSL (Graph Sampling Language) interface. For GNN models, Graph-Learn provides a set of paradigms and processes for model development. It is compatible with both TensorFlow and PyTorch, and provides data layer, model layer interfaces and rich model examples.
[Detail](https://graph-learn.readthedocs.io/en/latest/gl/intro.html)
- Dynamic-Graph-Service
An online inference service, supports real-time sampling on dynamic graphs with streaming graph updates.
It provides a performance guarantee of sampling P99 latency in 20ms on large-scale dynamic graphs. The Client side of the Online Inference Service provides Java GSL interfaces and Tensorflow Model Predict.
[Detail](https://graph-learn.readthedocs.io/en/latest/dgs/intro.html)
Use GraphLearn-Training and Dynamic-Graph-Service for training and inference.
![overview](docs/images/overview.png)
1. A user initiates a request on the Web (0), samples in real time on the dynamic graph via the Client side (1), uses the samples as model input, and requests the prediction results from the Model service (3).
2. the prediction results, feedback, and some context on the Web are sent to the Data Hub (0, 3), eg, Log Service.
3. data updates streamingly flow into the Dynamic Graph Service as graph updates (4).
4. GraphLearn-Training hourly loads window of graph data, incremental trains models, and updates model on tensorflow Model service.## Citation
Please cite the following paper in your publications if **Graph-Learn** helps your research.
```
@article{zhu2019aligraph,
title={AliGraph: a comprehensive graph neural network platform},
author={Zhu, Rong and Zhao, Kun and Yang, Hongxia and Lin, Wei and Zhou, Chang and Ai, Baole and Li, Yong and Zhou, Jingren},
journal={Proceedings of the VLDB Endowment},
volume={12},
number={12},
pages={2094--2105},
year={2019},
publisher={VLDB Endowment}
}
```## License
Apache License 2.0.