import string_insertion, minor whitespace fixes, gallery update

This commit is contained in:
Andreas Koepf 2025-02-14 07:55:38 +01:00
parent e24093c9f0
commit ee2c03ea65
4 changed files with 648 additions and 141 deletions

View file

@ -67,7 +67,7 @@ class GameOfLifeDataset(ProceduralDataset):
)
rows = [json.dumps(board[0, i].tolist(), separators=(",", ":")) for i in range(board.shape[1])]
board_str = "[" + ", \n ".join(rows) + "]"
board_str = "[" + ",\n ".join(rows) + "]"
final_step = evolved[-1]
final_step_list = final_step.tolist()