{"id":20410035,"url":"https://github.com/thumnlab/autogl-light","last_synced_at":"2025-04-12T15:53:17.151Z","repository":{"id":211333987,"uuid":"724101212","full_name":"THUMNLab/AutoGL-light","owner":"THUMNLab","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-16T09:10:53.000Z","size":26209,"stargazers_count":13,"open_issues_count":1,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-03-26T10:21:29.521Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/THUMNLab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-27T11:57:54.000Z","updated_at":"2025-01-06T09:21:06.000Z","dependencies_parsed_at":"2024-08-01T10:25:56.651Z","dependency_job_id":null,"html_url":"https://github.com/THUMNLab/AutoGL-light","commit_stats":null,"previous_names":["thumnlab/autogl-light"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THUMNLab%2FAutoGL-light","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THUMNLab%2FAutoGL-light/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THUMNLab%2FAutoGL-light/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THUMNLab%2FAutoGL-light/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/THUMNLab","download_url":"https://codeload.github.com/THUMNLab/AutoGL-light/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248592140,"owners_count":21130190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T05:44:39.130Z","updated_at":"2025-04-12T15:53:17.127Z","avatar_url":"https://github.com/THUMNLab.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"[中文介绍](README_cn.md)\n\n# Lightweight Auto Graph Learning\n\nA lightweight AutoML framework \u0026 toolkit for machine learning on graphs.\n\nThis is an extended package of [AutoGL](https://github.com/THUMNLab/AutoGL).\n\n*Actively under development by @THUMNLab*\n\nFeel free to open \u003ca href=\"https://github.com/THUMNLab/AutoGL-light/issues\"\u003eissues\u003c/a\u003e or contact us at \u003ca href=\"mailto:autogl@tsinghua.edu.cn\"\u003eautogl@tsinghua.edu.cn\u003c/a\u003e if you have any comments or suggestions!\n\n\n## News!\n- We have released the first version 0.1.0! \n    - We support Hyper-parameter Optimization (HPO) and Neural Architecture Search (NAS) with flexible pipelines! \n    - We also provide showcases for using graph machine learning for bioinformatics.\n\t\n## Introduction\n Our AutoGL-light library aims to serve automated graph machine learning and currently includes two main functionalities: graph hyperparameter optimization (HPO) and graph neural network architecture search (NAS). We plan to make this library compatible with various graph machine learning libraries as backends, but currently, we primarily support PyTorch Geometric. Compared to AutoGL, AutoGL-light does not fix the pipeline, i.e., it allows to freely incorporate graph HPO and graph NAS at any step of the workflow. We also expect AutoGL-light to be more user-friendly, especially for new users. \n                                        \n### Graph Hyper-parameter Optimization                                        \nGraph HPO aims to automatically optimize the hyperparameters of models in graph machine learning. Currently, we support algorithms such as Grid, Random, Anneal, Bayes, CAMES, MOCAMES, Quasi random, TPE, and AutoNE for hyperparameter optimization. For more details, please refer to [HPO documentations](http://mn.cs.tsinghua.edu.cn/AutoGL-light/docfile/tutorial/t_hpo.html).        \n                                        \n### Graph Neural Architecture Search                                        \nGraph NAS aims to automatically design and optimize neural network architectures for graph machine learning. It searches for the optimal architecture within a given search space. Currently, we support search algorithms including Random, RL, EA, ENAS, SPOS, GraphNAS, DARTS, GRNA, GASSO, and GRACES. For more details, please refer to [NAS documentations](http://mn.cs.tsinghua.edu.cn/AutoGL-light/docfile/tutorial/t_nas.html).\n                                        \n## Applications\nTo promote and showcase the usage of AutoGL-light, particularly in handlying various downstream graph tasks, we have included examples of applying AutoGL-light to bioinformatics using graph HPO and graph NAS, including [ScGNN](https://www.nature.com/articles/s41467-021-22197-x), [MolCLR](https://www.nature.com/articles/s42256-022-00447-x), and [AutoGNNUQ](https://arxiv.org/abs/2307.10438). Please refer to [example files](https://github.com/THUMNLab/AutoGL-light/tree/main/example).\n\n## Installation\n### Requirements\nPlease make sure you meet the following requirements before installing AutoGL.\n\n1. Python \u003e= 3.6.0\n\n2. PyTorch (\u003e=1.6.0)\n\n    see \u003chttps://pytorch.org/\u003e for installation.    \n\n### Installation\n\n#### Install from pip\n\nRun the following command to install this package through `pip`.\n\n```\npip install autogl-light\n```\n\n#### Install from source\n\nRun the following command to install this package from the source.\n\n```\ngit clone https://github.com/THUMNLab/AutoGL-light.git\ncd AutoGL-light\npython setup.py install\n```\n\n#### Install for development\n\nIf you are a developer of the AutoGL-light project, please use the following command to create a soft link, then you can modify the local package without install them again.\n\n```\npip install -e .\n```\n\n\n## Cite\nPlease cite [our paper](https://openreview.net/forum?id=0yHwpLeInDn) as follows if you find our code useful:\n```\n@inproceedings{guan2021autogl,\n  title={Auto{GL}: A Library for Automated Graph Learning},\n  author={Chaoyu Guan and Ziwei Zhang and Haoyang Li and Heng Chang and Zeyang Zhang and Yijian Qin and Jiyan Jiang and Xin Wang and Wenwu Zhu},\n  booktitle={ICLR 2021 Workshop on Geometrical and Topological Representation Learning},\n  year={2021},\n  url={https://openreview.net/forum?id=0yHwpLeInDn}\n}\n```\n\nYou may also find our [survey paper](http://arxiv.org/abs/2103.00742) helpful:\n```\n@article{zhang2021automated,\n  title={Automated Machine Learning on Graphs: A Survey},\n  author={Zhang, Ziwei and Wang, Xin and Zhu, Wenwu},\n  booktitle = {Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence, {IJCAI-21}},\n  year={2021},\n  note={Survey track}\n}\n```\n\n## License\nWe follow [Apache license](LICENSE) across the entire codebase.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthumnlab%2Fautogl-light","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthumnlab%2Fautogl-light","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthumnlab%2Fautogl-light/lists"}