Unverified Commit 0194ebb6 authored by Matthias Fey's avatar Matthias Fey Committed by GitHub
Browse files

Merge pull request #50 from mdiephuis/master

Update readme
parents 36ebb1d2 506f4f2d
......@@ -182,10 +182,11 @@ walk = random_walk(row, col, start, walk_length=3)
```
print(walk)
tensor([[0, 1, 2, 1],
tensor([[0, 1, 2, 4],
[1, 3, 4, 2],
[3, 4, 3, 1],
[4, 2, 1, 0]])
[2, 4, 2, 1],
[3, 4, 2, 4],
[4, 3, 1, 0]])
```
## Running tests
......
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