"git@developer.sourcefind.cn:change/sglang.git" did not exist on "5ccf0b03bda06d49f5951b2d246ca6a9f035e55c"
dgl.geometry.rst 661 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.. _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