@@ -86,7 +86,7 @@ Please make sure you meet the following requirements before installing AutoGL.
3. Graph Library Backend
You will need either PyTorch Geometric (PyG) or Deep Graph Library (DGL) as the backend. You can select a backend following [here](TODO) if you install both.
You will need either PyTorch Geometric (PyG) or Deep Graph Library (DGL) as the backend. You can select a backend following [here](TODO) if you install both.
@@ -13,7 +13,7 @@ The workflow below shows the overall framework of AutoGL.
.. image:: ../resources/workflow.svg
:align: center
AutoGL uses ``AutoGL Dataset`` to maintain datasets for graph-based machine learning, which is based on the dataset in PyTorch Geometric with some support added to corporate with the auto solver framework.
AutoGL uses ``AutoGL Dataset`` to maintain datasets for graph-based machine learning, which is based on the dataset in PyTorch Geometric or Deep Graph Library with some support added to corporate with the auto solver framework.
Different graph-based machine learning tasks are solved by different ``AutoGL Solvers`` , which make use of four main modules to automatically solve given tasks, namely ``Auto Feature Engineer``, ``Auto Model``, ``Neural Architecture Search``, ``HyperParameter Optimization``, and ``Auto Ensemble``.
@@ -31,17 +31,17 @@ Please make sure you meet the following requirements before installing AutoGL.
see `PyTorch <https://pytorch.org/>`_ for installation.
If you want to use Pytorch Geometric backend, you need to install:
3. Graph Library Backend
3. PyTorch Geometric (>=1.7.0)
You will need either PyTorch Geometric (PyG) or Deep Graph Library (DGL) as the backend.
see `PyTorch Geometric <https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html>`_ for installation.
3.1 PyTorch Geometric (>=1.7.0)
If you want to use Deep Graph Library backend, you need to install:
see <https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html> for installation.
3. Deep Graph Library (>=0.7)
3.2 Deep Graph Library (>=0.7.0)
see `Deep Graph Library <https://docs.dgl.ai/install/index.html>`_ for installation.
see <https://dgl.ai> for installation.
Installation
~~~~~~~~~~~~
@@ -97,8 +97,11 @@ In AutoGL, the tasks are solved by corresponding solvers, which in general do th
docfile/tutorial/t_hetero_node_clf
docfile/tutorial/t_homo_graph_classification_gin
docfile/tutorial/t_backend
docfile/tutorial/t_dataset
docfile/tutorial/t_fe
..
docfile/tutorial/t_dataset
docfile/tutorial/t_fe
docfile/tutorial/t_model
docfile/tutorial/t_trainer
docfile/tutorial/t_hpo
@@ -111,8 +114,11 @@ In AutoGL, the tasks are solved by corresponding solvers, which in general do th