Skip to content

Commit 0058beb

Browse files
committed
fix typo
1 parent 69d3dc2 commit 0058beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ from torch_cluster import radius_graph
206206

207207
x = torch.tensor([[-1., -1.], [-1., 1.], [1., -1.], [1., 1.]])
208208
batch = torch.tensor([0, 0, 0, 0])
209-
edge_index = radius_graph(x, r=1.5, batch=batch, loop=False)
209+
edge_index = radius_graph(x, r=2.5, batch=batch, loop=False)
210210
```
211211

212212
```

0 commit comments

Comments
 (0)