"docs/vscode:/vscode.git/clone" did not exist on "88b3409129fbd6d926a63faafde3ad0575b06d33"
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) ...@@ -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