LICENSE
README.md
setup.cfg
setup.py
csrc/cpu/neighbor_sampler_cpu.cpp
csrc/cpu/neighbor_sampler_cpu.cpp
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/pytorch/sga.py
graphgallery/attack/targeted/tensorflow/__init__.py
graphgallery/attack/targeted/tensorflow/faster_sga.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/memory.py
graphgallery/backend/modules.py
graphgallery/backend/registry.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/reader.py
graphgallery/data/utils.py
graphgallery/datasets/__init__.py
graphgallery/datasets/dataset.py
graphgallery/datasets/in_memory_dataset.py
graphgallery/datasets/karateclub.py
graphgallery/datasets/musae.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/base_transforms.py
graphgallery/functional/bunchdict.py
graphgallery/functional/decorators.py
graphgallery/functional/functions.py
graphgallery/functional/random.py
graphgallery/functional/registry.py
graphgallery/functional/transform.py
graphgallery/functional/dense/__init__.py
graphgallery/functional/dense/activations.py
graphgallery/functional/dense/attr_transform.py
graphgallery/functional/dense/erase.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/graph_level/__init__.py
graphgallery/functional/graph_level/dict_transform.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/graph_level/subgraph.py
graphgallery/functional/network/__init__.py
graphgallery/functional/network/classic.py
graphgallery/functional/network/degree.py
graphgallery/functional/network/ego.py
graphgallery/functional/network/property.py
graphgallery/functional/network/transform.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/clip.py
graphgallery/functional/sparse/flip.py
graphgallery/functional/sparse/gdc.py
graphgallery/functional/sparse/normalize_adj.py
graphgallery/functional/sparse/power.py
graphgallery/functional/sparse/ppr.py
graphgallery/functional/sparse/reshape.py
graphgallery/functional/sparse/sample.py
graphgallery/functional/sparse/to_dense.py
graphgallery/functional/sparse/to_edge.py
graphgallery/functional/sparse/to_neighbor_matrix.py
graphgallery/functional/sparse/topk.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/callbacks.py
graphgallery/gallery/model.py
graphgallery/gallery/trainer.py
graphgallery/gallery/embedding/__init__.py
graphgallery/gallery/embedding/bane.py
graphgallery/gallery/embedding/boostne.py
graphgallery/gallery/embedding/deepwalk.py
graphgallery/gallery/embedding/default.py
graphgallery/gallery/embedding/diff2vec.py
graphgallery/gallery/embedding/diffuser.py
graphgallery/gallery/embedding/glee.py
graphgallery/gallery/embedding/graphwave.py
graphgallery/gallery/embedding/grarep.py
graphgallery/gallery/embedding/hope.py
graphgallery/gallery/embedding/laplacianeigenmaps.py
graphgallery/gallery/embedding/netmf.py
graphgallery/gallery/embedding/nmfadmm.py
graphgallery/gallery/embedding/node2vec.py
graphgallery/gallery/embedding/nodesketch.py
graphgallery/gallery/embedding/randne.py
graphgallery/gallery/embedding/role2vec.py
graphgallery/gallery/embedding/trainer.py
graphgallery/gallery/embedding/treefeatures.py
graphgallery/gallery/embedding/utils.py
graphgallery/gallery/embedding/walker.py
graphgallery/gallery/graphclas/__init__.py
graphgallery/gallery/linkpred/__init__.py
graphgallery/gallery/linkpred/default.py
graphgallery/gallery/linkpred/registered_models.py
graphgallery/gallery/linkpred/dgl/__init__.py
graphgallery/gallery/linkpred/pyg/__init__.py
graphgallery/gallery/linkpred/pyg/gae.py
graphgallery/gallery/linkpred/pyg/vgae.py
graphgallery/gallery/linkpred/pytorch/__init__.py
graphgallery/gallery/linkpred/pytorch/gae.py
graphgallery/gallery/linkpred/pytorch/vgae.py
graphgallery/gallery/linkpred/tensorflow/__init__.py
graphgallery/gallery/nodeclas/__init__.py
graphgallery/gallery/nodeclas/default.py
graphgallery/gallery/nodeclas/registered_models.py
graphgallery/gallery/nodeclas/dgl/__init__.py
graphgallery/gallery/nodeclas/dgl/appnp.py
graphgallery/gallery/nodeclas/dgl/dagnn.py
graphgallery/gallery/nodeclas/dgl/gat.py
graphgallery/gallery/nodeclas/dgl/gcn.py
graphgallery/gallery/nodeclas/dgl/grand.py
graphgallery/gallery/nodeclas/dgl/jknet.py
graphgallery/gallery/nodeclas/dgl/mixhop.py
graphgallery/gallery/nodeclas/dgl/sgc.py
graphgallery/gallery/nodeclas/dgl/ala_gnn/__init__.py
graphgallery/gallery/nodeclas/dgl/ala_gnn/ala_gat.py
graphgallery/gallery/nodeclas/dgl/ala_gnn/ala_gcn.py
graphgallery/gallery/nodeclas/pyg/__init__.py
graphgallery/gallery/nodeclas/pyg/gat.py
graphgallery/gallery/nodeclas/pyg/gcn.py
graphgallery/gallery/nodeclas/pyg/graphsage.py
graphgallery/gallery/nodeclas/pyg/pdn.py
graphgallery/gallery/nodeclas/pyg/sgc.py
graphgallery/gallery/nodeclas/pytorch/__init__.py
graphgallery/gallery/nodeclas/pytorch/agnn.py
graphgallery/gallery/nodeclas/pytorch/appnp.py
graphgallery/gallery/nodeclas/pytorch/clustergcn.py
graphgallery/gallery/nodeclas/pytorch/dagnn.py
graphgallery/gallery/nodeclas/pytorch/dgat.py
graphgallery/gallery/nodeclas/pytorch/fastgcn.py
graphgallery/gallery/nodeclas/pytorch/gat.py
graphgallery/gallery/nodeclas/pytorch/gcn.py
graphgallery/gallery/nodeclas/pytorch/graphmlp.py
graphgallery/gallery/nodeclas/pytorch/graphsage.py
graphgallery/gallery/nodeclas/pytorch/latgcn.py
graphgallery/gallery/nodeclas/pytorch/median_gcn.py
graphgallery/gallery/nodeclas/pytorch/mlp.py
graphgallery/gallery/nodeclas/pytorch/sgc.py
graphgallery/gallery/nodeclas/pytorch/simpgcn.py
graphgallery/gallery/nodeclas/pytorch/ssgc.py
graphgallery/gallery/nodeclas/pytorch/tagcn.py
graphgallery/gallery/nodeclas/pytorch/trimmed_gcn.py
graphgallery/gallery/nodeclas/pytorch/bvat/__init__.py
graphgallery/gallery/nodeclas/pytorch/bvat/obvat.py
graphgallery/gallery/nodeclas/pytorch/bvat/sbvat.py
graphgallery/gallery/nodeclas/pytorch/experimental/__init__.py
graphgallery/gallery/nodeclas/pytorch/experimental/sat.py
graphgallery/gallery/nodeclas/pytorch/graphat/__init__.py
graphgallery/gallery/nodeclas/pytorch/graphat/gcn_vat.py
graphgallery/gallery/nodeclas/pytorch/graphat/graph_vat.py
graphgallery/gallery/nodeclas/pytorch/pairnorm/__init__.py
graphgallery/gallery/nodeclas/pytorch/pairnorm/sgc_pn.py
graphgallery/gallery/nodeclas/tensorflow/__init__.py
graphgallery/gallery/nodeclas/tensorflow/agnn.py
graphgallery/gallery/nodeclas/tensorflow/appnp.py
graphgallery/gallery/nodeclas/tensorflow/arma.py
graphgallery/gallery/nodeclas/tensorflow/chebynet.py
graphgallery/gallery/nodeclas/tensorflow/clustergcn.py
graphgallery/gallery/nodeclas/tensorflow/dagnn.py
graphgallery/gallery/nodeclas/tensorflow/densegcn.py
graphgallery/gallery/nodeclas/tensorflow/fastgcn.py
graphgallery/gallery/nodeclas/tensorflow/gat.py
graphgallery/gallery/nodeclas/tensorflow/gcn.py
graphgallery/gallery/nodeclas/tensorflow/gmnn.py
graphgallery/gallery/nodeclas/tensorflow/graphsage.py
graphgallery/gallery/nodeclas/tensorflow/gwnn.py
graphgallery/gallery/nodeclas/tensorflow/lgcn.py
graphgallery/gallery/nodeclas/tensorflow/mlp.py
graphgallery/gallery/nodeclas/tensorflow/robustgcn.py
graphgallery/gallery/nodeclas/tensorflow/sgc.py
graphgallery/gallery/nodeclas/tensorflow/ssgc.py
graphgallery/gallery/nodeclas/tensorflow/tagcn.py
graphgallery/gallery/nodeclas/tensorflow/BVAT/__init__.py
graphgallery/gallery/nodeclas/tensorflow/BVAT/obvat.py
graphgallery/gallery/nodeclas/tensorflow/BVAT/sbvat.py
graphgallery/gallery/nodeclas/tensorflow/BVAT/utils.py
graphgallery/gallery/nodeclas/tensorflow/bvat/__init__.py
graphgallery/gallery/nodeclas/tensorflow/bvat/obvat.py
graphgallery/gallery/nodeclas/tensorflow/bvat/sbvat.py
graphgallery/gallery/nodeclas/tensorflow/bvat/utils.py
graphgallery/gallery/nodeclas/tensorflow/experimental/__init__.py
graphgallery/gallery/nodeclas/tensorflow/experimental/edgeconv.py
graphgallery/gallery/nodeclas/tensorflow/experimental/gcn_mix.py
graphgallery/gallery/nodeclas/tensorflow/experimental/gcna.py
graphgallery/gallery/nodeclas/tensorflow/experimental/s_obvat.py
graphgallery/gallery/nodeclas/tensorflow/experimental/sat.py
graphgallery/nn/__init__.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/dgl/__init__.py
graphgallery/nn/layers/dgl/ala_gnn.py
graphgallery/nn/layers/dgl/dagnn.py
graphgallery/nn/layers/dgl/mixhop.py
graphgallery/nn/layers/pytorch/__init__.py
graphgallery/nn/layers/pytorch/activations.py
graphgallery/nn/layers/pytorch/container.py
graphgallery/nn/layers/pytorch/conv/__init__.py
graphgallery/nn/layers/pytorch/conv/agnn.py
graphgallery/nn/layers/pytorch/conv/appnp.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/graphsage.py
graphgallery/nn/layers/pytorch/conv/median.py
graphgallery/nn/layers/pytorch/conv/sat.py
graphgallery/nn/layers/pytorch/conv/sgc.py
graphgallery/nn/layers/pytorch/conv/ssgc.py
graphgallery/nn/layers/pytorch/conv/tagcn.py
graphgallery/nn/layers/pytorch/conv/trainable_sgc.py
graphgallery/nn/layers/pytorch/conv/trimmed_conv.py
graphgallery/nn/layers/pytorch/dropout/__init__.py
graphgallery/nn/layers/pytorch/dropout/dropout.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/agnn.py
graphgallery/nn/layers/tensorflow/conv/appnp.py
graphgallery/nn/layers/tensorflow/conv/arma.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/layers/tensorflow/conv/ssgc.py
graphgallery/nn/layers/tensorflow/conv/tagcn.py
graphgallery/nn/layers/tensorflow/dropout/__init__.py
graphgallery/nn/layers/tensorflow/dropout/dropout.py
graphgallery/nn/metrics/__init__.py
graphgallery/nn/metrics/pytorch/__init__.py
graphgallery/nn/metrics/pytorch/accuracy.py
graphgallery/nn/metrics/pytorch/auc.py
graphgallery/nn/metrics/pytorch/average_precision.py
graphgallery/nn/metrics/pytorch/f1_score.py
graphgallery/nn/metrics/pytorch/mae.py
graphgallery/nn/metrics/pytorch/metric.py
graphgallery/nn/metrics/pytorch/mse.py
graphgallery/nn/metrics/pytorch/rmse.py
graphgallery/nn/metrics/tensorflow/__init__.py
graphgallery/nn/models/__init__.py
graphgallery/nn/models/core.py
graphgallery/nn/models/tf_keras.py
graphgallery/nn/models/torch_keras.py
graphgallery/nn/models/dgl/__init__.py
graphgallery/nn/models/dgl/appnp.py
graphgallery/nn/models/dgl/dagnn.py
graphgallery/nn/models/dgl/gat.py
graphgallery/nn/models/dgl/gcn.py
graphgallery/nn/models/dgl/grand.py
graphgallery/nn/models/dgl/jknet.py
graphgallery/nn/models/dgl/mixhop.py
graphgallery/nn/models/dgl/sgc.py
graphgallery/nn/models/dgl/ala_gnn/__init__.py
graphgallery/nn/models/dgl/ala_gnn/ala_gat.py
graphgallery/nn/models/dgl/ala_gnn/ala_gcn.py
graphgallery/nn/models/pyg/__init__.py
graphgallery/nn/models/pyg/gat.py
graphgallery/nn/models/pyg/gcn.py
graphgallery/nn/models/pyg/graphsage.py
graphgallery/nn/models/pyg/pdn.py
graphgallery/nn/models/pyg/sgc.py
graphgallery/nn/models/pyg/autoencoder/__init__.py
graphgallery/nn/models/pyg/autoencoder/autoencoder.py
graphgallery/nn/models/pyg/autoencoder/gae.py
graphgallery/nn/models/pyg/autoencoder/loss.py
graphgallery/nn/models/pyg/autoencoder/vgae.py
graphgallery/nn/models/pytorch/__init__.py
graphgallery/nn/models/pytorch/agnn.py
graphgallery/nn/models/pytorch/appnp.py
graphgallery/nn/models/pytorch/dagnn.py
graphgallery/nn/models/pytorch/dgat.py
graphgallery/nn/models/pytorch/fastgcn.py
graphgallery/nn/models/pytorch/gat.py
graphgallery/nn/models/pytorch/gcn.py
graphgallery/nn/models/pytorch/graphmlp.py
graphgallery/nn/models/pytorch/graphsage.py
graphgallery/nn/models/pytorch/label_propagation.py
graphgallery/nn/models/pytorch/latgcn.py
graphgallery/nn/models/pytorch/median.py
graphgallery/nn/models/pytorch/mlp.py
graphgallery/nn/models/pytorch/simpgcn.py
graphgallery/nn/models/pytorch/tagcn.py
graphgallery/nn/models/pytorch/trimmed_gcn.py
graphgallery/nn/models/pytorch/autoencoder/__init__.py
graphgallery/nn/models/pytorch/autoencoder/autoencoder.py
graphgallery/nn/models/pytorch/autoencoder/decoder.py
graphgallery/nn/models/pytorch/autoencoder/gae.py
graphgallery/nn/models/pytorch/autoencoder/loss.py
graphgallery/nn/models/pytorch/autoencoder/vgae.py
graphgallery/nn/models/pytorch/bvat/__init__.py
graphgallery/nn/models/pytorch/bvat/obvat.py
graphgallery/nn/models/pytorch/bvat/sbvat.py
graphgallery/nn/models/pytorch/bvat/utils.py
graphgallery/nn/models/pytorch/graphat/__init__.py
graphgallery/nn/models/pytorch/graphat/gcn_vat.py
graphgallery/nn/models/pytorch/graphat/graph_vat.py
graphgallery/nn/models/pytorch/graphat/utils.py
graphgallery/nn/models/pytorch/parinorm/__init__.py
graphgallery/nn/models/pytorch/parinorm/sgc_pn.py
graphgallery/nn/models/pytorch/sat/__init__.py
graphgallery/nn/models/pytorch/sat/base_sat.py
graphgallery/nn/models/pytorch/sat/gcn.py
graphgallery/nn/models/pytorch/sat/sgc.py
graphgallery/nn/models/pytorch/sat/ssgc.py
graphgallery/nn/models/tensorflow/__init__.py
graphgallery/nn/models/tensorflow/agnn.py
graphgallery/nn/models/tensorflow/appnp.py
graphgallery/nn/models/tensorflow/arma.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/tagcn.py
graphgallery/sequence/__init__.py
graphgallery/sequence/sequence.py
graphgallery/utils/__init__.py
graphgallery/utils/context_manager.py
graphgallery/utils/ipynb.py
graphgallery/utils/logger.py
graphgallery/utils/misc.py
graphgallery/utils/neighbor_sampler.py
graphgallery/utils/pickle.py
graphgallery/utils/progbar.py
graphgallery/utils/raise_error.py
graphgallery/utils/timeout.py
graphgallery/utils/tqdm.py