data.rst 1.01 KB
Newer Older
1
.. _guide-data-pipeline:
2

3
Chapter 4: Graph Data Pipeline
4
==============================
5

6
7
:ref:`(中文版) <guide_cn-data-pipeline>`

8
DGL implements many commonly used graph datasets in :ref:`apidata`. They
9
10
follow a standard pipeline defined in class :class:`dgl.data.DGLDataset`. DGL highly
recommends processing graph data into a :class:`dgl.data.DGLDataset` subclass, as the
11
12
13
pipeline provides simple and clean solution for loading, processing and
saving graph data.

14
15
16
17
18
19
20
21
22
23
24
25
Roadmap
-------

This chapter introduces how to create a custom DGL-Dataset.
The following sections explain how the pipeline works, and
shows how to implement each component of it.

* :ref:`guide-data-pipeline-dataset`
* :ref:`guide-data-pipeline-download`
* :ref:`guide-data-pipeline-process`
* :ref:`guide-data-pipeline-savenload`
* :ref:`guide-data-pipeline-loadogb`
RhettYing's avatar
RhettYing committed
26
* :ref:`guide-data-pipeline-loadcsv`
27
28
29
30
31
32
33
34
35
36

.. toctree::
    :maxdepth: 1
    :hidden:
    :glob:

    data-dataset
    data-download
    data-process
    data-savenload
RhettYing's avatar
RhettYing committed
37
38
    data-loadogb
    data-loadcsv