Files
dgl/docs/source/api/python/dgl.geometry.rst
Tong He 972a9f1323 [Doc] Re-organize the code for dgl.geometry, and expose it in the doc (#2982)
* reorg and expose dgl.geometry

* fix lint

* fix test

* fix
2021-06-07 11:19:39 +08:00

27 lines
661 B
ReStructuredText

.. _api-geometry:
dgl.geometry
=================================
.. automodule:: dgl.geometry
.. _api-geometry-farthest-point-sampler:
Farthest Point Sampler
-----------
Farthest point sampling is a greedy algorithm that samples from a point cloud
data iteratively. It starts from a random single sample of point. In each iteration,
it samples from the rest points that is the farthest from the set of sampled points.
.. autoclass:: farthest_point_sampler
.. _api-geometry-neighbor-matching:
Neighbor Matching
-----------------------------
Neighbor matching is an important module in the Graclus clustering algorithm.
.. autoclass:: neighbor_matching