README.md
setup.cfg
setup.py
graphgallery/__init__.py
graphgallery/data_type.py
graphgallery/version.py
graphgallery.egg-info/PKG-INFO
graphgallery.egg-info/SOURCES.txt
graphgallery.egg-info/dependency_links.txt
graphgallery.egg-info/requires.txt
graphgallery.egg-info/top_level.txt
graphgallery/attack/__init__.py
graphgallery/attack/attacker.py
graphgallery/attack/flip_attacker.py
graphgallery/attack/backdoor/__init__.py
graphgallery/attack/targeted/__init__.py
graphgallery/attack/targeted/registered_models.py
graphgallery/attack/targeted/targeted_attacker.py
graphgallery/attack/targeted/common/__init__.py
graphgallery/attack/targeted/common/dice.py
graphgallery/attack/targeted/common/gf_attack.py
graphgallery/attack/targeted/common/nettack.py
graphgallery/attack/targeted/common/node_embedding_attack.py
graphgallery/attack/targeted/common/rand.py
graphgallery/attack/targeted/pytorch/__init__.py
graphgallery/attack/targeted/tensorflow/__init__.py
graphgallery/attack/targeted/tensorflow/fgsm.py
graphgallery/attack/targeted/tensorflow/integrated_gradient_attack.py
graphgallery/attack/targeted/tensorflow/iterative_gradient_attack.py
graphgallery/attack/targeted/tensorflow/sga.py
graphgallery/attack/untargeted/__init__.py
graphgallery/attack/untargeted/registered_models.py
graphgallery/attack/untargeted/untargeted_attacker.py
graphgallery/attack/untargeted/common/__init__.py
graphgallery/attack/untargeted/common/degree.py
graphgallery/attack/untargeted/common/dice.py
graphgallery/attack/untargeted/common/node_embedding_attack.py
graphgallery/attack/untargeted/common/rand.py
graphgallery/attack/untargeted/pytorch/__init__.py
graphgallery/attack/untargeted/pytorch/metattack.py
graphgallery/attack/untargeted/pytorch/pgd.py
graphgallery/attack/untargeted/tensorflow/__init__.py
graphgallery/attack/untargeted/tensorflow/fgsm.py
graphgallery/attack/untargeted/tensorflow/metattack.py
graphgallery/attack/untargeted/tensorflow/pgd.py
graphgallery/attack/untargeted/tensorflow/experimental/__init__.py
graphgallery/attack/untargeted/tensorflow/experimental/pgd_poisoning.py
graphgallery/attack/utils/__init__.py
graphgallery/attack/utils/estimate_utils.py
graphgallery/backend/__init__.py
graphgallery/backend/backend.py
graphgallery/backend/config.py
graphgallery/backend/gpu.py
graphgallery/backend/modules.py
graphgallery/backend/regist.py
graphgallery/data/__init__.py
graphgallery/data/apply.py
graphgallery/data/base_graph.py
graphgallery/data/dictgraph.py
graphgallery/data/edge_graph.py
graphgallery/data/graph.py
graphgallery/data/hetegraph.py
graphgallery/data/homograph.py
graphgallery/data/io.py
graphgallery/data/listgraph.py
graphgallery/data/multi_edge_graph.py
graphgallery/data/multi_graph.py
graphgallery/data/preprocess.py
graphgallery/data/utils.py
graphgallery/datasets/__init__.py
graphgallery/datasets/dataset.py
graphgallery/datasets/in_memory_dataset.py
graphgallery/datasets/npz_dataset.py
graphgallery/datasets/planetoid.py
graphgallery/datasets/ppi.py
graphgallery/datasets/reddit.py
graphgallery/datasets/tu_dataset.py
graphgallery/functional/__init__.py
graphgallery/functional/bunchdict.py
graphgallery/functional/decorators.py
graphgallery/functional/functions.py
graphgallery/functional/get_transform.py
graphgallery/functional/random.py
graphgallery/functional/registry.py
graphgallery/functional/transforms.py
graphgallery/functional/dense/__init__.py
graphgallery/functional/dense/attr_transform.py
graphgallery/functional/dense/flip.py
graphgallery/functional/dense/node_sim.py
graphgallery/functional/dense/onehot.py
graphgallery/functional/dense/similarity.py
graphgallery/functional/edge_level/__init__.py
graphgallery/functional/edge_level/edge_filter.py
graphgallery/functional/edge_level/edge_selector.py
graphgallery/functional/edge_level/edge_transform.py
graphgallery/functional/edge_level/score_calculator.py
graphgallery/functional/edge_level/shape.py
graphgallery/functional/edge_level/to_adj.py
graphgallery/functional/graph_level/__init__.py
graphgallery/functional/graph_level/generate_attr.py
graphgallery/functional/graph_level/graph_partition.py
graphgallery/functional/graph_level/purification.py
graphgallery/functional/graph_level/standardize.py
graphgallery/functional/sparse/__init__.py
graphgallery/functional/sparse/add_selfloops.py
graphgallery/functional/sparse/augment_adj.py
graphgallery/functional/sparse/chebyshef.py
graphgallery/functional/sparse/degree.py
graphgallery/functional/sparse/ego.py
graphgallery/functional/sparse/flip.py
graphgallery/functional/sparse/gdc.py
graphgallery/functional/sparse/neighbor_sampler.py
graphgallery/functional/sparse/normalize_adj.py
graphgallery/functional/sparse/sample.py
graphgallery/functional/sparse/sparse_reshape.py
graphgallery/functional/sparse/to_edge.py
graphgallery/functional/sparse/wavelet.py
graphgallery/functional/tensor/__init__.py
graphgallery/functional/tensor/device.py
graphgallery/functional/tensor/ops.py
graphgallery/functional/tensor/tensor.py
graphgallery/functional/tensor/pytorch/__init__.py
graphgallery/functional/tensor/pytorch/device.py
graphgallery/functional/tensor/pytorch/ops.py
graphgallery/functional/tensor/pytorch/tensor.py
graphgallery/functional/tensor/tensorflow/__init__.py
graphgallery/functional/tensor/tensorflow/device.py
graphgallery/functional/tensor/tensorflow/ops.py
graphgallery/functional/tensor/tensorflow/tensor.py
graphgallery/gallery/__init__.py
graphgallery/gallery/default.py
graphgallery/gallery/model.py
graphgallery/gallery/registered_models.py
graphgallery/gallery/trainer.py
graphgallery/gallery/common/__init__.py
graphgallery/gallery/common/sklearn_model/__init__.py
graphgallery/gallery/common/sklearn_model/deepwalk.py
graphgallery/gallery/common/sklearn_model/node2vec.py
graphgallery/gallery/common/sklearn_model/sklearn_model.py
graphgallery/gallery/gallery_model/__init__.py
graphgallery/gallery/gallery_model/dgl_tf/__init__.py
graphgallery/gallery/gallery_model/dgl_tf/gcn.py
graphgallery/gallery/gallery_model/dgl_torch/__init__.py
graphgallery/gallery/gallery_model/dgl_torch/gat.py
graphgallery/gallery/gallery_model/dgl_torch/gcn.py
graphgallery/gallery/gallery_model/dgl_torch/sgc.py
graphgallery/gallery/gallery_model/pyg/__init__.py
graphgallery/gallery/gallery_model/pyg/gat.py
graphgallery/gallery/gallery_model/pyg/gcn.py
graphgallery/gallery/gallery_model/pyg/sgc.py
graphgallery/gallery/gallery_model/pytorch/__init__.py
graphgallery/gallery/gallery_model/pytorch/clustergcn.py
graphgallery/gallery/gallery_model/pytorch/dagnn.py
graphgallery/gallery/gallery_model/pytorch/fastgcn.py
graphgallery/gallery/gallery_model/pytorch/gat.py
graphgallery/gallery/gallery_model/pytorch/gcn.py
graphgallery/gallery/gallery_model/pytorch/mlp.py
graphgallery/gallery/gallery_model/pytorch/sgc.py
graphgallery/gallery/gallery_model/pytorch/simpgcn.py
graphgallery/gallery/gallery_model/pytorch/experimental/__init__.py
graphgallery/gallery/gallery_model/pytorch/experimental/median_gcn.py
graphgallery/gallery/gallery_model/pytorch/experimental/trimmed_gcn.py
graphgallery/gallery/gallery_model/pytorch/pairnorm/__init__.py
graphgallery/gallery/gallery_model/pytorch/pairnorm/sgc_pn.py
graphgallery/gallery/gallery_model/tensorflow/__init__.py
graphgallery/gallery/gallery_model/tensorflow/chebynet.py
graphgallery/gallery/gallery_model/tensorflow/clustergcn.py
graphgallery/gallery/gallery_model/tensorflow/dagnn.py
graphgallery/gallery/gallery_model/tensorflow/densegcn.py
graphgallery/gallery/gallery_model/tensorflow/fastgcn.py
graphgallery/gallery/gallery_model/tensorflow/gat.py
graphgallery/gallery/gallery_model/tensorflow/gcn.py
graphgallery/gallery/gallery_model/tensorflow/gmnn.py
graphgallery/gallery/gallery_model/tensorflow/graphsage.py
graphgallery/gallery/gallery_model/tensorflow/gwnn.py
graphgallery/gallery/gallery_model/tensorflow/lgcn.py
graphgallery/gallery/gallery_model/tensorflow/mlp.py
graphgallery/gallery/gallery_model/tensorflow/obvat.py
graphgallery/gallery/gallery_model/tensorflow/robustgcn.py
graphgallery/gallery/gallery_model/tensorflow/sbvat.py
graphgallery/gallery/gallery_model/tensorflow/sgc.py
graphgallery/gallery/gallery_model/tensorflow/experimental/__init__.py
graphgallery/gallery/gallery_model/tensorflow/experimental/edgeconv.py
graphgallery/gallery/gallery_model/tensorflow/experimental/gcn_mix.py
graphgallery/gallery/gallery_model/tensorflow/experimental/gcna.py
graphgallery/gallery/gallery_model/tensorflow/experimental/s_obvat.py
graphgallery/gallery/gallery_model/tensorflow/experimental/sat.py
graphgallery/gallery/utils/__init__.py
graphgallery/gallery/utils/bvat_utils.py
graphgallery/gallery/utils/walker.py
graphgallery/nn/__init__.py
graphgallery/nn/functions/__init__.py
graphgallery/nn/functions/activations.py
graphgallery/nn/init/__init__.py
graphgallery/nn/init/pytorch/__init__.py
graphgallery/nn/init/pytorch/init.py
graphgallery/nn/init/tensorflow/__init__.py
graphgallery/nn/layers/__init__.py
graphgallery/nn/layers/pytorch/__init__.py
graphgallery/nn/layers/pytorch/get_activation.py
graphgallery/nn/layers/pytorch/conv/__init__.py
graphgallery/nn/layers/pytorch/conv/dagnn.py
graphgallery/nn/layers/pytorch/conv/gat.py
graphgallery/nn/layers/pytorch/conv/gcn.py
graphgallery/nn/layers/pytorch/conv/median.py
graphgallery/nn/layers/pytorch/conv/sgc.py
graphgallery/nn/layers/pytorch/conv/trainable_sgc.py
graphgallery/nn/layers/pytorch/conv/trimmed_conv.py
graphgallery/nn/layers/pytorch/norm/__init__.py
graphgallery/nn/layers/pytorch/norm/pairnorm.py
graphgallery/nn/layers/tensorflow/__init__.py
graphgallery/nn/layers/tensorflow/misc.py
graphgallery/nn/layers/tensorflow/normalize.py
graphgallery/nn/layers/tensorflow/top_k.py
graphgallery/nn/layers/tensorflow/conv/__init__.py
graphgallery/nn/layers/tensorflow/conv/chebynet.py
graphgallery/nn/layers/tensorflow/conv/dagnn.py
graphgallery/nn/layers/tensorflow/conv/densegcn.py
graphgallery/nn/layers/tensorflow/conv/edgeconv.py
graphgallery/nn/layers/tensorflow/conv/gat.py
graphgallery/nn/layers/tensorflow/conv/gcn.py
graphgallery/nn/layers/tensorflow/conv/gcna.py
graphgallery/nn/layers/tensorflow/conv/gin.py
graphgallery/nn/layers/tensorflow/conv/graphsage.py
graphgallery/nn/layers/tensorflow/conv/gwnn.py
graphgallery/nn/layers/tensorflow/conv/lgcn.py
graphgallery/nn/layers/tensorflow/conv/median.py
graphgallery/nn/layers/tensorflow/conv/mediansage.py
graphgallery/nn/layers/tensorflow/conv/robustgcn.py
graphgallery/nn/layers/tensorflow/conv/sgc.py
graphgallery/nn/metrics/__init__.py
graphgallery/nn/metrics/pytorch/__init__.py
graphgallery/nn/metrics/pytorch/accuracy.py
graphgallery/nn/metrics/pytorch/metric.py
graphgallery/nn/metrics/tensorflow/__init__.py
graphgallery/nn/models/__init__.py
graphgallery/nn/models/tf_keras.py
graphgallery/nn/models/torch_keras.py
graphgallery/nn/models/dgl_tf/__init__.py
graphgallery/nn/models/dgl_tf/gcn.py
graphgallery/nn/models/dgl_torch/__init__.py
graphgallery/nn/models/dgl_torch/gat.py
graphgallery/nn/models/dgl_torch/gcn.py
graphgallery/nn/models/dgl_torch/sgc.py
graphgallery/nn/models/pyg/__init__.py
graphgallery/nn/models/pyg/gat.py
graphgallery/nn/models/pyg/gcn.py
graphgallery/nn/models/pyg/sgc.py
graphgallery/nn/models/pytorch/__init__.py
graphgallery/nn/models/pytorch/dagnn.py
graphgallery/nn/models/pytorch/fastgcn.py
graphgallery/nn/models/pytorch/gat.py
graphgallery/nn/models/pytorch/gcn.py
graphgallery/nn/models/pytorch/median.py
graphgallery/nn/models/pytorch/mlp.py
graphgallery/nn/models/pytorch/sgc.py
graphgallery/nn/models/pytorch/simpgcn.py
graphgallery/nn/models/pytorch/trimmed_gcn.py
graphgallery/nn/models/pytorch/parinorm/__init__.py
graphgallery/nn/models/pytorch/parinorm/sgc_pn.py
graphgallery/nn/models/tensorflow/__init__.py
graphgallery/nn/models/tensorflow/chebynet.py
graphgallery/nn/models/tensorflow/dagnn.py
graphgallery/nn/models/tensorflow/densegcn.py
graphgallery/nn/models/tensorflow/edgeconv.py
graphgallery/nn/models/tensorflow/fastgcn.py
graphgallery/nn/models/tensorflow/gat.py
graphgallery/nn/models/tensorflow/gcn.py
graphgallery/nn/models/tensorflow/gcna.py
graphgallery/nn/models/tensorflow/graphsage.py
graphgallery/nn/models/tensorflow/gwnn.py
graphgallery/nn/models/tensorflow/lgcn.py
graphgallery/nn/models/tensorflow/mlp.py
graphgallery/nn/models/tensorflow/robustgcn.py
graphgallery/nn/models/tensorflow/sgc.py
graphgallery/sequence/__init__.py
graphgallery/sequence/base_sequence.py
graphgallery/sequence/fullbatch_sequence.py
graphgallery/sequence/minibatch_sequence.py
graphgallery/sequence/null_sequence.py
graphgallery/sequence/sample_sequence.py
graphgallery/utils/__init__.py
graphgallery/utils/context_manager.py
graphgallery/utils/misc.py
graphgallery/utils/progbar.py
graphgallery/utils/raise_error.py
graphgallery/utils/tqdm.py