-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
torch_geometric.sampler
package to docs (#5563)
* add sampler modules * add sampler.rst * add classes for docs * update changelog * update changelog * update Co-authored-by: rusty1s <matthias.fey@tu-dortmund.de>
- Loading branch information
Showing
8 changed files
with
55 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
torch_geometric.sampler | ||
======================= | ||
|
||
.. currentmodule:: torch_geometric.sampler | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
{% for cls in torch_geometric.sampler.classes %} | ||
{{ cls }} | ||
{% endfor %} | ||
|
||
.. autoclass:: torch_geometric.sampler.base.BaseSampler | ||
:members: | ||
|
||
.. automodule:: torch_geometric.sampler | ||
:members: | ||
:undoc-members: | ||
:exclude-members: BaseSampler, sample_from_nodes, sample_from_edges, edge_permutation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters