Update.
[mygpt.git] / picoclvr.py
index 712da17..601bdf7 100755 (executable)
@@ -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