dmlc--dgl
972a9f1323
* reorg and expose dgl.geometry * fix lint * fix test * fix
13 行
329 B
Python
13 行
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 .fps import *
|
|
from .edge_coarsening import *
|