index.rst 2.9 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

25
   guide/index
26
27
28
   guide_cn/index
   tutorials/large/index
   tutorials/models/index
Minjie Wang's avatar
Minjie Wang committed
29
30
31

.. toctree::
   :maxdepth: 2
Minjie Wang's avatar
Minjie Wang committed
32
   :caption: API Reference
33
   :hidden:
Minjie Wang's avatar
Minjie Wang committed
34
   :glob:
Minjie Wang's avatar
Minjie Wang committed
35

Minjie Wang's avatar
Minjie Wang committed
36
37
   api/python/dgl
   api/python/dgl.data
38
   api/python/dgl.dataloading
39
   api/python/dgl.DGLGraph
40
   api/python/dgl.distributed
41
42
   api/python/dgl.function
   api/python/nn
43
   api/python/nn.functional
44
   api/python/dgl.ops
45
   api/python/dgl.optim
46
   api/python/dgl.sampling
47
   api/python/dgl.multiprocessing
48
   api/python/udf
Minjie Wang's avatar
Minjie Wang committed
49

Minjie Wang's avatar
Minjie Wang committed
50
51
.. toctree::
   :maxdepth: 1
52
   :caption: Developer Notes
53
   :hidden:
Minjie Wang's avatar
Minjie Wang committed
54
55
   :glob:

56
   contribute
57
58
59
60
61
62
63
64
   developer/ffi

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

Minjie Wang's avatar
Minjie Wang committed
65
66
   faq
   env_var
67
68
   resources

Minjie Wang's avatar
Minjie Wang committed
69

70
71
72
73
74
75
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
76

77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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.
* Go through the tutorials for :doc:`Stochastic Training of GNNs <tutorials/large/index>`,
  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
96
97
98
99
-------------
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
100
:doc:`contribution guidelines <contribute>`.
101

Minjie Wang's avatar
Minjie Wang committed
102
103
104
Index
-----
* :ref:`genindex`