1
+ ![ GL] ( docs/images/graph-learn.png )
2
+
1
3
Graph-Learn(原AliGraph) 是面向大规模图神经网络的研发和应用而设计的一款分布式框架。
2
4
它从大规模图训练的实际问题出发,提炼和抽象了一套适合于常见图神经网络模型的编程范式, 并已经成功应用在阿里巴巴内部的诸如搜索推荐、网络安全、知识图谱等众多场景。
3
5
@@ -6,28 +8,65 @@ Graph-Learn提供了图采样操作的Python和C++接口,并且提供了一个
6
8
[ ![ graph-learn CI] ( https://github.com/alibaba/graph-learn/workflows/graph-learn%20CI/badge.svg )] ( https://github.com/alibaba/graph-learn/actions )
7
9
[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://github.com/alibaba/graph-learn/blob/master/LICENSE )
8
10
9
- ## 安装
11
+ ## 安装部署
10
12
13
+ 1 . 通过wheel包安装
11
14
```
12
15
pip install graphlearn
13
16
```
14
17
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 )
23
19
20
+ 3 . 使用Docker
21
+
22
+ 4 . [ k8s] ( docs/k8s.md )
24
23
25
24
## 运行示例
26
25
```
27
26
cd examples/tf/ego_sage/
28
27
python train_unsupervised.py
29
28
```
30
29
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
+
31
70
## 协议
32
71
33
72
Apache License 2.0.
0 commit comments