README.md
setup.py
autogl/__init__.py
autogl.egg-info/PKG-INFO
autogl.egg-info/SOURCES.txt
autogl.egg-info/dependency_links.txt
autogl.egg-info/requires.txt
autogl.egg-info/top_level.txt
autogl/data/__init__.py
autogl/data/batch.py
autogl/data/data.py
autogl/data/dataloader.py
autogl/data/dataset.py
autogl/data/download.py
autogl/data/extract.py
autogl/data/makedirs.py
autogl/datasets/__init__.py
autogl/datasets/gatne.py
autogl/datasets/gtn_data.py
autogl/datasets/han_data.py
autogl/datasets/matlab_matrix.py
autogl/datasets/modelnet.py
autogl/datasets/ogb.py
autogl/datasets/pyg.py
autogl/datasets/utils.py
autogl/module/__init__.py
autogl/module/ensemble/__init__.py
autogl/module/ensemble/base.py
autogl/module/ensemble/stacking.py
autogl/module/ensemble/voting.py
autogl/module/feature/__init__.py
autogl/module/feature/auto_feature.py
autogl/module/feature/base.py
autogl/module/feature/utils.py
autogl/module/feature/generators/__init__.py
autogl/module/feature/generators/base.py
autogl/module/feature/generators/eigen.py
autogl/module/feature/generators/graphlet.py
autogl/module/feature/generators/page_rank.py
autogl/module/feature/generators/pyg.py
autogl/module/feature/graph/__init__.py
autogl/module/feature/graph/base.py
autogl/module/feature/graph/netlsd.py
autogl/module/feature/graph/nx.py
autogl/module/feature/selectors/__init__.py
autogl/module/feature/selectors/base.py
autogl/module/feature/selectors/se_filter_constant.py
autogl/module/feature/selectors/se_gbdt.py
autogl/module/hpo/__init__.py
autogl/module/hpo/advisorbase.py
autogl/module/hpo/anneal_advisorhpo.py
autogl/module/hpo/autone.py
autogl/module/hpo/base.py
autogl/module/hpo/bayes_advisor.py
autogl/module/hpo/bayes_advisorchoco.py
autogl/module/hpo/cmaes_advisorchoco.py
autogl/module/hpo/grid_advisor.py
autogl/module/hpo/grid_advisorchoco.py
autogl/module/hpo/mocmaes_advisorchoco.py
autogl/module/hpo/quasi_advisorchoco.py
autogl/module/hpo/rand_advisor.py
autogl/module/hpo/rand_advisorchoco.py
autogl/module/hpo/tpe_advisorhpo.py
autogl/module/hpo/autone_file/__init__.py
autogl/module/hpo/autone_file/utils.py
autogl/module/hpo/suggestion/__init__.py
autogl/module/hpo/suggestion/models.py
autogl/module/hpo/suggestion/algorithm/__init__.py
autogl/module/hpo/suggestion/algorithm/abstract_algorithm.py
autogl/module/hpo/suggestion/algorithm/base_chocolate_algorithm.py
autogl/module/hpo/suggestion/algorithm/base_hyperopt_algorithm.py
autogl/module/hpo/suggestion/algorithm/base_skopt_algorithm.py
autogl/module/hpo/suggestion/algorithm/bayesian_optimization.py
autogl/module/hpo/suggestion/algorithm/chocolate_bayes.py
autogl/module/hpo/suggestion/algorithm/chocolate_grid_search.py
autogl/module/hpo/suggestion/algorithm/chocolate_random_search.py
autogl/module/hpo/suggestion/algorithm/cmaes.py
autogl/module/hpo/suggestion/algorithm/grid_search.py
autogl/module/hpo/suggestion/algorithm/hyperopt_random_search.py
autogl/module/hpo/suggestion/algorithm/mocmaes.py
autogl/module/hpo/suggestion/algorithm/particle_swarm_optimization.py
autogl/module/hpo/suggestion/algorithm/quasi_random_search.py
autogl/module/hpo/suggestion/algorithm/random_search.py
autogl/module/hpo/suggestion/algorithm/simulate_anneal.py
autogl/module/hpo/suggestion/algorithm/skopt_bayesian_optimization.py
autogl/module/hpo/suggestion/algorithm/tpe.py
autogl/module/hpo/suggestion/algorithm/util.py
autogl/module/hpo/suggestion/early_stop_algorithm/__init__.py
autogl/module/hpo/suggestion/early_stop_algorithm/abstract_early_stop.py
autogl/module/hpo/suggestion/early_stop_algorithm/abstract_early_stop_test.py
autogl/module/hpo/suggestion/early_stop_algorithm/early_stop_descending.py
autogl/module/hpo/suggestion/early_stop_algorithm/early_stop_descending_test.py
autogl/module/hpo/suggestion/early_stop_algorithm/early_stop_first_trial.py
autogl/module/hpo/suggestion/early_stop_algorithm/early_stop_first_trial_test.py
autogl/module/hpo/suggestion/early_stop_algorithm/no_early_stop.py
autogl/module/hpo/suggestion/early_stop_algorithm/no_early_stop_test.py
autogl/module/hpo/suggestion/migrations/0001_initial.py
autogl/module/hpo/suggestion/migrations/__init__.py
autogl/module/model/__init__.py
autogl/module/model/_model_registry.py
autogl/module/model/base.py
autogl/module/model/gat.py
autogl/module/model/gcn.py
autogl/module/model/gin.py
autogl/module/model/graph_saint.py
autogl/module/model/graphsage.py
autogl/module/model/topkpool.py
autogl/module/nas/__init__.py
autogl/module/nas/utils.py
autogl/module/nas/algorithm/__init__.py
autogl/module/nas/algorithm/base.py
autogl/module/nas/algorithm/darts.py
autogl/module/nas/algorithm/enas.py
autogl/module/nas/algorithm/random_search.py
autogl/module/nas/algorithm/rl.py
autogl/module/nas/estimator/__init__.py
autogl/module/nas/estimator/base.py
autogl/module/nas/estimator/one_shot.py
autogl/module/nas/estimator/train_scratch.py
autogl/module/nas/space/__init__.py
autogl/module/nas/space/base.py
autogl/module/nas/space/graph_nas.py
autogl/module/nas/space/graph_nas_macro.py
autogl/module/nas/space/operation.py
autogl/module/nas/space/single_path.py
autogl/module/train/__init__.py
autogl/module/train/base.py
autogl/module/train/evaluation.py
autogl/module/train/graph_classification_full.py
autogl/module/train/link_prediction.py
autogl/module/train/node_classification_full.py
autogl/module/train/node_classification_trainer/__init__.py
autogl/module/train/node_classification_trainer/node_classification_sampled_trainer.py
autogl/module/train/sampling/__init__.py
autogl/module/train/sampling/sampler/__init__.py
autogl/module/train/sampling/sampler/graphsaint_sampler.py
autogl/module/train/sampling/sampler/layer_dependent_importance_sampler.py
autogl/module/train/sampling/sampler/neighbor_sampler.py
autogl/module/train/sampling/sampler/target_dependant_sampler.py
autogl/solver/__init__.py
autogl/solver/base.py
autogl/solver/utils.py
autogl/solver/classifier/__init__.py
autogl/solver/classifier/base.py
autogl/solver/classifier/graph_classifier.py
autogl/solver/classifier/link_predictor.py
autogl/solver/classifier/node_classifier.py
autogl/utils/__init__.py
autogl/utils/device.py
autogl/utils/log.py