"docs/vscode:/vscode.git/clone" did not exist on "2bfa5a61fb21e03cb3e70b0cdace7bd8466a2817"
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) ...@@ -122,7 +122,7 @@ edge_index = knn_graph(x, k=2, batch=batch, loop=False)
``` ```
print(edge_index) print(edge_index)
tensor([[0, 0, 1, 1, 2, 2, 3, 3], 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 ## 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