13 lines
329 B
Python
13 lines
329 B
Python
"""The ``dgl.geometry`` package contains geometry operations:
|
|
|
|
* Farthest point sampling for point cloud sampling
|
|
|
|
* Neighbor matching module for graclus pooling
|
|
|
|
.. note::
|
|
This package is experimental and the interfaces may be subject
|
|
to changes in future releases.
|
|
"""
|
|
from .edge_coarsening import *
|
|
from .fps import *
|