"projects/vscode:/vscode.git/clone" did not exist on "c83ec3555dc1399789f8157475cb5fef7e691575"
Unverified Commit 4024ba48 authored by Matthias Fey's avatar Matthias Fey Committed by GitHub
Browse files

Merge pull request #15 from jelmr/master

Fix typo in kNN example.
parents 65374fb6 3a566339
......@@ -122,7 +122,7 @@ edge_index = knn_graph(x, k=2, batch=batch, loop=False)
```
print(edge_index)
tensor([[0, 0, 1, 1, 2, 2, 3, 3],
[1, 2, 0, 2, 0, 3, 1, 2]])
[1, 2, 0, 3, 0, 3, 1, 2]])
```
## Radius-Graph
......
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