Skip to content

Commit 8a4609d

Browse files
committed
Update Readme.
1 parent 3d302de commit 8a4609d

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

README.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
![GL](docs/images/graph-learn.png)
2-
[简体中文](README_cn.md) | English
3-
4-
Graph-Learn (formerly AliGraph) is a distributed framework designed for the development and application of large-scale graph neural networks.
5-
It refines and abstracts a set of programming paradigms suitable for common graph neural network models from the practical problems of large-scale graph training, and has been successfully applied to many scenarios such as search recommendation, network security, knowledge graph, etc. within Alibaba.
6-
7-
Graph-Learn provides Python and C++ interfaces for graph sampling operations, and provides a gremlin-like GSL (Graph Sampling Language) interface. For upper layer graph learning models, Graph-Learn provides a set of paradigms and processes for model development, compatible with TensorFlow and PyTorch, providing data layer, model layer interfaces and rich model examples.
8-
92
[![pypi](https://img.shields.io/pypi/v/graph-learn.svg)](https://pypi.org/project/graph-learn/)
103
[![docs](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://graph-learn.readthedocs.io/en/latest/)
114
[![graph-learn CI](https://github.com/alibaba/graph-learn/workflows/graph-learn%20CI/badge.svg)](https://github.com/alibaba/graph-learn/actions)
125
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/alibaba/graph-learn/blob/master/LICENSE)
136

7+
[简体中文](README_cn.md) | English
8+
9+
Graph-Learn (formerly AliGraph) is a distributed framework designed for the development and application of large-scale graph neural networks.
10+
It abstracts a set of programming paradigms suitable for common graph neural network models from the practical problems of large-scale graph training, and has been successfully applied to many scenarios such as search recommendation, network security, knowledge graph, etc. within Alibaba.
11+
12+
Graph-Learn provides both Python and C++ interfaces for graph sampling operations, and provides a gremlin-like GSL (Graph Sampling Language) interface. For upper layer graph learning models, Graph-Learn provides a set of paradigms and processes for model development. It is compatible with TensorFlow and PyTorch, and provides data layer, model layer interfaces and rich model examples.
13+
1414

1515
[**Documentation**](https://graph-learn.readthedocs.io/en/latest/)
1616

@@ -23,16 +23,20 @@ pip install graph-learn
2323

2424
2. [Build from source](docs/en/install.md)
2525

26-
3. Use Docker
26+
3. [Use Docker](docs/en/install.md)
2727

28-
4. [k8s](docs/en/algo/tf/k8s.md)
2928

30-
## example
29+
## Getting Started
30+
GraphSAGE example
3131
```
3232
cd examples/tf/ego_sage/
3333
python train_unsupervised.py
3434
```
3535

36+
[Distributed training example](docs/en/algo/tf/k8s)
37+
38+
39+
3640
## Citation
3741

3842
Please cite the following paper in your publications if **GL** helps your research.

README_cn.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
![GL](docs/images/graph-learn.png)
2+
[![pypi](https://img.shields.io/pypi/v/graph-learn.svg)](https://pypi.org/project/graph-learn/)
3+
[![docs](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://graph-learn.readthedocs.io/zh_CN/latest/)
4+
[![graph-learn CI](https://github.com/alibaba/graph-learn/workflows/graph-learn%20CI/badge.svg)](https://github.com/alibaba/graph-learn/actions)
5+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/alibaba/graph-learn/blob/master/LICENSE)
6+
27
简体中文 | [English](README.md)
38

49
Graph-Learn(原AliGraph) 是面向大规模图神经网络的研发和应用而设计的一款分布式框架。
510
它从大规模图训练的实际问题出发,提炼和抽象了一套适合于常见图神经网络模型的编程范式, 并已经成功应用在阿里巴巴内部的诸如搜索推荐、网络安全、知识图谱等众多场景。
611

712
Graph-Learn提供了图采样操作的Python和C++接口,并且提供了一个类似gremlin的GSL(Graph Sampling Language)接口。对于上层图学习模型,Graph-Learn提供了一套模型开发的范式和流程,兼容TensorFlow和PyTorch,提供了数据层,模型层接口和丰富的模型示例。
813

9-
[![pypi](https://img.shields.io/pypi/v/graph-learn.svg)](https://pypi.org/project/graph-learn/)
10-
[![docs](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://graph-learn.readthedocs.io/zh_CN/latest/)
11-
[![graph-learn CI](https://github.com/alibaba/graph-learn/workflows/graph-learn%20CI/badge.svg)](https://github.com/alibaba/graph-learn/actions)
12-
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/alibaba/graph-learn/blob/master/LICENSE)
13-
1414
[**用户文档**](https://graph-learn.readthedocs.io/zh_CN/latest/)
1515

1616
## 安装部署
@@ -22,15 +22,15 @@ pip install graph-learn
2222

2323
2. [从源码编译](docs/zh_CN/install.md)
2424

25-
3. 使用Docker
26-
27-
4. [k8s](docs/zh_CN/algo/tf/k8s.md)
25+
3. [使用Docker](docs/zh_CN/install.md)
2826

29-
## 运行示例
27+
## 开始使用
28+
GraphSAGE示例
3029
```
3130
cd examples/tf/ego_sage/
3231
python train_unsupervised.py
3332
```
33+
[分布式训练示例](docs/zh_CN/algo/tf/k8s)
3434

3535
## 论文
3636

0 commit comments

Comments
 (0)