Skip to content

Commit ce44aa4

Browse files
committed
refine README and user docs.
1 parent d6721f8 commit ce44aa4

File tree

3 files changed

+48
-9
lines changed

3 files changed

+48
-9
lines changed

README.md

+48-9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![GL](docs/images/graph-learn.png)
2+
13
Graph-Learn(原AliGraph) 是面向大规模图神经网络的研发和应用而设计的一款分布式框架。
24
它从大规模图训练的实际问题出发,提炼和抽象了一套适合于常见图神经网络模型的编程范式, 并已经成功应用在阿里巴巴内部的诸如搜索推荐、网络安全、知识图谱等众多场景。
35

@@ -6,28 +8,65 @@ Graph-Learn提供了图采样操作的Python和C++接口,并且提供了一个
68
[![graph-learn CI](https://github.com/alibaba/graph-learn/workflows/graph-learn%20CI/badge.svg)](https://github.com/alibaba/graph-learn/actions)
79
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/alibaba/graph-learn/blob/master/LICENSE)
810

9-
## 安装
11+
## 安装部署
1012

13+
1. 通过wheel包安装
1114
```
1215
pip install graphlearn
1316
```
1417

15-
### 从源码编译
16-
```
17-
git clone [email protected]:alibaba/graph-learn.git
18-
cd graphlearn
19-
git submodule update --init
20-
make test
21-
make python
22-
```
18+
2. [从源码编译](docs/install_cn.md)
2319

20+
3. 使用Docker
21+
22+
4. [k8s](docs/k8s.md)
2423

2524
## 运行示例
2625
```
2726
cd examples/tf/ego_sage/
2827
python train_unsupervised.py
2928
```
3029

30+
## 用户文档
31+
32+
### [快速开始](docs/quick_start_cn.md)
33+
34+
### 1. 图操作接口
35+
36+
* [数据源](docs/data_loader_cn.md)
37+
* [图对象](docs/graph_object_cn.md)
38+
* [数据对象](docs/data_object_cn.md)
39+
* [图查询](docs/graph_query_cn.md)
40+
* [图遍历](docs/graph_traverse_cn.md)
41+
* [图采样](docs/graph_sampling_cn.md)
42+
* [负采样](docs/negative_sampling_cn.md)
43+
* [**GSL**](docs/gsl_cn.md)
44+
45+
### 2. 算法开发接口
46+
47+
* [范式与流程](docs/gnn_programming_model_cn.md)
48+
49+
* TensorFlow
50+
- [数据层](docs/tf_data_layer_cn.md)
51+
- [模型层](docs/tf_model_layer_cn.md)
52+
- [常见loss](docs/tf_loss_cn.md)
53+
- [全局配置](docs/tf_config_cn.md)
54+
- [模型示例](docs/tf_model_example_cn.md)
55+
- [开发指南](docs/tf_custom_model_tutorial_cn.md)
56+
57+
* PyTorch/PyG
58+
59+
- [开发流程](docs/torch_custom_model_tutorial_cn.md)
60+
61+
62+
### 3. [系统配置](docs/global_config_cn.md)
63+
64+
### 4. 功能扩展
65+
66+
* [自定义算子](docs/operator.md)
67+
68+
* [数据源接入](docs/other_source.md)
69+
3170
## 协议
3271

3372
Apache License 2.0.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)