Unverified Commit 506f4f2d authored by Maurits's avatar Maurits Committed by GitHub
Browse files

Update readme

Fixed a tiny error in the random walk example output.
parent 36ebb1d2
...@@ -182,10 +182,11 @@ walk = random_walk(row, col, start, walk_length=3) ...@@ -182,10 +182,11 @@ walk = random_walk(row, col, start, walk_length=3)
``` ```
print(walk) print(walk)
tensor([[0, 1, 2, 1], tensor([[0, 1, 2, 4],
[1, 3, 4, 2], [1, 3, 4, 2],
[3, 4, 3, 1], [2, 4, 2, 1],
[4, 2, 1, 0]]) [3, 4, 2, 4],
[4, 3, 1, 0]])
``` ```
## Running tests ## 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