index.rst 3.17 KB
Newer Older
Minjie Wang's avatar
Minjie Wang committed
1
2
3
4
5
.. DGL documentation master file, created by
   sphinx-quickstart on Fri Oct  5 14:18:01 2018.
   You can adapt this file completely to your liking, but it should at least
   contain the root `toctree` directive.

6
7
Welcome to Deep Graph Library Tutorials and Documentation
=========================================================
8
9
10
11
12
13
14

.. toctree::
   :maxdepth: 1
   :caption: Get Started
   :hidden:
   :glob:

Minjie Wang's avatar
Minjie Wang committed
15
   install/index
16
   tutorials/blitz/index
17
18
19

.. toctree::
   :maxdepth: 2
20
   :caption: Advanced Materials
21
   :hidden:
22
   :titlesonly:
Minjie Wang's avatar
Minjie Wang committed
23
   :glob:
Minjie Wang's avatar
Minjie Wang committed
24

Rhett Ying's avatar
Rhett Ying committed
25
   stochastic_training/index
26
   guide/index
27
   guide_cn/index
Muhyun Kim's avatar
Muhyun Kim committed
28
   guide_ko/index
29
   graphtransformer/index
30
   notebooks/sparse/index
31
   tutorials/cpu/index
32
   tutorials/multi/index
33
   tutorials/dist/index
34
   tutorials/models/index
Minjie Wang's avatar
Minjie Wang committed
35
36
37

.. toctree::
   :maxdepth: 2
Minjie Wang's avatar
Minjie Wang committed
38
   :caption: API Reference
39
   :hidden:
Minjie Wang's avatar
Minjie Wang committed
40
   :glob:
Minjie Wang's avatar
Minjie Wang committed
41

Minjie Wang's avatar
Minjie Wang committed
42
43
   api/python/dgl
   api/python/dgl.data
44
   api/python/dgl.dataloading
45
   api/python/dgl.DGLGraph
46
   api/python/dgl.distributed
47
   api/python/dgl.function
48
   api/python/dgl.geometry
49
   api/python/dgl.graphbolt
Mufei Li's avatar
Mufei Li committed
50
   api/python/nn-pytorch
51
   api/python/nn.functional
52
   api/python/dgl.ops
53
   api/python/dgl.optim
54
   api/python/dgl.sampling
55
   api/python/dgl.sparse_v0
56
   api/python/dgl.multiprocessing
57
   api/python/transforms
58
   api/python/udf
Minjie Wang's avatar
Minjie Wang committed
59

Minjie Wang's avatar
Minjie Wang committed
60
61
.. toctree::
   :maxdepth: 1
62
   :caption: Notes
63
   :hidden:
Minjie Wang's avatar
Minjie Wang committed
64
65
   :glob:

66
   contribute
67
   developer/ffi
68
   performance
69
70
71
72
73
74
75

.. toctree::
   :maxdepth: 1
   :caption: Misc
   :hidden:
   :glob:

Minjie Wang's avatar
Minjie Wang committed
76
77
   faq
   env_var
78
79
   resources

Minjie Wang's avatar
Minjie Wang committed
80

81
82
83
84
85
86
Deep Graph Library (DGL) is a Python package built for easy implementation of
graph neural network model family, on top of existing DL frameworks (currently
supporting PyTorch, MXNet and TensorFlow). It offers a versatile control of message passing,
speed optimization via auto-batching and highly tuned sparse matrix kernels,
and multi-GPU/CPU training to scale to graphs of hundreds of millions of
nodes and edges.
Minjie Wang's avatar
Minjie Wang committed
87

88
89
90
91
92
93
94
95
96
97
98
99
Getting Started
---------------

For absolute beginners, start with the :doc:`Blitz Introduction to DGL <tutorials/blitz/index>`.
It covers the basic concepts of common graph machine learning tasks and a step-by-step
on building Graph Neural Networks (GNNs) to solve them.

For acquainted users who wish to learn more advanced usage,

* `Learn DGL by examples <https://github.com/dmlc/dgl/tree/master/examples>`_.
* Read the :doc:`User Guide<guide/index>` (:doc:`中文版链接<guide_cn/index>`), which explains the concepts
  and usage of DGL in much more details.
100
* Go through the tutorials for :doc:`Stochastic Training of GNNs <notebooks/stochastic_training/index>`,
101
102
103
104
105
106
  which covers the basic steps for training GNNs on large graphs in mini-batches.
* :doc:`Study classical papers <tutorials/models/index>` on graph machine learning alongside DGL.
* Search for the usage of a specific API in the :doc:`API reference manual <api/python/index>`,
  which organizes all DGL APIs by their namespace.

Contribution
107
108
109
110
-------------
DGL is free software; you can redistribute it and/or modify it under the terms
of the Apache License 2.0. We welcome contributions.
Join us on `GitHub <https://github.com/dmlc/dgl>`_ and check out our
111
:doc:`contribution guidelines <contribute>`.
112

Minjie Wang's avatar
Minjie Wang committed
113
114
115
Index
-----
* :ref:`genindex`