Unverified Commit 234a6ba3 authored by Matthias Fey's avatar Matthias Fey Committed by GitHub
Browse files

Merge pull request #97 from luwei0917/patch-1

typo fix in readme
parents 0058beb9 66da80c8
...@@ -164,7 +164,7 @@ Computes graph edges to the nearest *k* points. ...@@ -164,7 +164,7 @@ Computes graph edges to the nearest *k* points.
**Args:** **Args:**
* **x** *(Tensor)*: Node feature matrix of shape `[N, F]`. * **x** *(Tensor)*: Node feature matrix of shape `[N, F]`.
* **r** *(float)*: The radius. * **k** *(int)*: The number of neighbors.
* **batch** *(LongTensor, optional)*: Batch vector of shape `[N]`, which assigns each node to a specific example. `batch` needs to be sorted. (default: `None`) * **batch** *(LongTensor, optional)*: Batch vector of shape `[N]`, which assigns each node to a specific example. `batch` needs to be sorted. (default: `None`)
* **loop** *(bool, optional)*: If `True`, the graph will contain self-loops. (default: `False`) * **loop** *(bool, optional)*: If `True`, the graph will contain self-loops. (default: `False`)
* **flow** *(string, optional)*: The flow direction when using in combination with message passing (`"source_to_target"` or `"target_to_source"`). (default: `"source_to_target"`) * **flow** *(string, optional)*: The flow direction when using in combination with message passing (`"source_to_target"` or `"target_to_source"`). (default: `"source_to_target"`)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment