@@ -21,6 +21,7 @@ The package consists of the following clustering algorithms:
***[Iterative Farthest Point Sampling](#farthestpointsampling)** from, *e.g.* Qi *et al.*: [PointNet++: Deep Hierarchical Feature Learning on Point Sets in a Metric Space](https://arxiv.org/abs/1706.02413)(NIPS 2017)
***[k-NN](#knn-graph)** and **[Radius](#radius-graph)** graph generation
* Clustering based on **[Nearest](#nearest)** points
***[Random Walk Sampling](#randomwalk-sampling)** from, *e.g.*, Grover and Leskovec: [node2vec: Scalable Feature Learning for Networks](https://arxiv.org/abs/1607.00653)(KDD 2016)
All included operations work on varying data types and are implemented both for CPU and GPU.
...
...
@@ -164,6 +165,29 @@ print(cluster)
tensor([0, 0, 1, 1])
```
## RandomWalk-Sampling
Samples random walks of length `walk_length` from all node indices in `start` in the graph given by `(row, col)`.