Commit 3a566339 authored by Jelmer Mulder's avatar Jelmer Mulder
Browse files

Fix typo in kNN example.

parent 65374fb6
......@@ -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