From b892548701d068886acd0823b450d1ec63b35770 Mon Sep 17 00:00:00 2001 From: ZW-ZHANG Date: Fri, 22 Apr 2022 14:21:18 +0800 Subject: [PATCH] update v0.3.1 --- README.md | 2 +- README_en.md | 4 +- autogl/__init__.py | 2 +- autogl/module/feature/__init__.py | 8 +- autogl/module/feature/_auto_feature.py | 4 +- .../_base_feature_engineer.py | 6 +- .../_base_feature_engineer_dgl.py | 2 +- .../_base_feature_engineer_pyg.py | 2 +- autogl/module/feature/_selectors/_basic.py | 8 +- autogl/module/feature/_selectors/_gbdt.py | 3 +- autogl/module/model/dgl/hetero/__init__.py | 0 autogl/module/nas/algorithm/enas.py | 1 - autogl/module/nas/algorithm/gasso.py | 1 - autogl/module/nas/algorithm/rl.py | 2 - autogl/module/nas/algorithm/spos.py | 1 - autogl/module/nas/space/autoattend.py | 3 + autogl/solver/classifier/node_classifier.py | 1 + docs/docfile/tutorial/t_backend.rst | 4 +- docs/docfile/tutorial/t_dataset.rst | 219 +++++------- docs/docfile/tutorial/t_fe.rst | 76 ++-- docs/docfile/tutorial/t_nas.rst | 22 +- docs/docfile/tutorial_cn/t_backend.rst | 33 ++ docs/docfile/tutorial_cn/t_dataset.rst | 101 ++++++ docs/docfile/tutorial_cn/t_ensemble.rst | 54 +++ docs/docfile/tutorial_cn/t_fe.rst | 100 ++++++ .../docfile/tutorial_cn/t_hetero_node_clf.rst | 160 +++++++++ .../t_homo_graph_classification_gin.rst | 327 ++++++++++++++++++ docs/docfile/tutorial_cn/t_hpo.rst | 150 ++++++++ docs/docfile/tutorial_cn/t_model.rst | 217 ++++++++++++ docs/docfile/tutorial_cn/t_nas.rst | 323 +++++++++++++++++ docs/docfile/tutorial_cn/t_quickstart.rst | 63 ++++ docs/docfile/tutorial_cn/t_solver.rst | 246 +++++++++++++ docs/docfile/tutorial_cn/t_trainer.rst | 182 ++++++++++ docs/index.rst | 24 +- examples/quickstart.py | 24 ++ setup.py | 2 +- test/fe/fe_tutorial.py | 35 ++ test/nas/node_classification.py | 17 +- 38 files changed, 2205 insertions(+), 224 deletions(-) create mode 100644 autogl/module/model/dgl/hetero/__init__.py create mode 100644 docs/docfile/tutorial_cn/t_backend.rst create mode 100644 docs/docfile/tutorial_cn/t_dataset.rst create mode 100644 docs/docfile/tutorial_cn/t_ensemble.rst create mode 100644 docs/docfile/tutorial_cn/t_fe.rst create mode 100644 docs/docfile/tutorial_cn/t_hetero_node_clf.rst create mode 100644 docs/docfile/tutorial_cn/t_homo_graph_classification_gin.rst create mode 100644 docs/docfile/tutorial_cn/t_hpo.rst create mode 100644 docs/docfile/tutorial_cn/t_model.rst create mode 100644 docs/docfile/tutorial_cn/t_nas.rst create mode 100644 docs/docfile/tutorial_cn/t_quickstart.rst create mode 100644 docs/docfile/tutorial_cn/t_solver.rst create mode 100644 docs/docfile/tutorial_cn/t_trainer.rst create mode 100644 examples/quickstart.py create mode 100644 test/fe/fe_tutorial.py diff --git a/README.md b/README.md index ad112e0c..403301e1 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ % [![Documentation Status](http://mn.cs.tsinghua.edu.cn/autogl/documentation/?badge=latest)](http://mn.cs.tsinghua.edu.cn/autogl/documentation/?badge=latest)--> ## 最新消息 - +- 2021.4.19 v0.3.1版本更新!首次更新中文教程! - 2021.12.31 v0.3.0-pre版本更新! - 智图目前支持[__Deep Graph Library (DGL)__](https://www.dgl.ai/)作为后端,以方便DGL的用户使用。目前在DGL后端已经支持同构图的节点分类、链接预测以及图分类等任务。智图现在也可兼容PyG 2.0版本。 - 智图可以支持__异构图__节点分类任务!详情请参考[异构图教程](http://mn.cs.tsinghua.edu.cn/autogl/documentation/docfile/tutorial/t_hetero_node_clf.html)。 diff --git a/README_en.md b/README_en.md index aee4d743..ee3d1e1d 100644 --- a/README_en.md +++ b/README_en.md @@ -4,7 +4,7 @@ An autoML framework & toolkit for machine learning on graphs. *Actively under development by @THUMNLab* -Feel free to open issues or contact us at autogl@tsinghua.edu.cn if you have any comments or suggestions! +Feel free to open issues or contact us at autogl@tsinghua.edu.cn if you have any comments or suggestions!