mirror of
https://github.com/dmlc/dgl.git
synced 2026-06-05 19:54:25 +08:00
* neighbor sampler data loader first commit * more commit * nodedataloader * fix * update RGCN example * update OGB * fixes * fix minibatch RGCN crashing with self loop * reverting gatconv test code * fix * change to new solution that doesn't require tf dataloader * fix * lint * fix * fixes * change doc * fix docstring * docstring fixes * return seeds and input nodes from data loader * fixes * fix test * fix windows build problem * add pytorch wrapper * fixes * add pytorch wrapper * add unit test * add -1 support to sample_neighbors & fix docstrings * docstring fix * lint * add minibatch rgcn evaluations Co-authored-by: xiang song(charlie.song) <classicxsong@gmail.com> Co-authored-by: Tong He <hetong007@gmail.com>
33 lines
541 B
ReStructuredText
33 lines
541 B
ReStructuredText
.. _api-transform:
|
|
|
|
dgl.transform
|
|
=================================
|
|
|
|
.. automodule:: dgl.transform
|
|
|
|
Common algorithms on graphs.
|
|
|
|
.. autosummary::
|
|
:toctree: ../../generated/
|
|
|
|
line_graph
|
|
khop_adj
|
|
khop_graph
|
|
reverse
|
|
to_simple_graph
|
|
to_bidirected
|
|
laplacian_lambda_max
|
|
knn_graph
|
|
segmented_knn_graph
|
|
add_self_loop
|
|
remove_self_loop
|
|
metapath_reachable_graph
|
|
compact_graphs
|
|
to_block
|
|
to_simple
|
|
in_subgraph
|
|
out_subgraph
|
|
remove_edges
|
|
as_immutable_graph
|
|
as_heterograph
|