projects
/
mygpt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d62602e
)
Update.
author
Francois Fleuret
<francois@fleuret.org>
Fri, 1 Jul 2022 08:01:27 +0000
(10:01 +0200)
committer
Francois Fleuret
<francois@fleuret.org>
Fri, 1 Jul 2022 08:01:27 +0000
(10:01 +0200)
picoclvr.py
patch
|
blob
|
history
diff --git
a/picoclvr.py
b/picoclvr.py
index
712da17
..
601bdf7
100755
(executable)
--- a/
picoclvr.py
+++ b/
picoclvr.py
@@
-83,6
+83,7
@@
def generate(nb, height = 6, width = 8,
nb_squares = torch.randint(max_nb_squares, (1,)) + 1
square_position = torch.randperm(height * width)[:nb_squares]
+ # color 0 is white and reserved for the background
square_c = torch.randperm(nb_colors)[:nb_squares] + 1
square_i = square_position.div(width, rounding_mode = 'floor')
square_j = square_position % width