mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
pre-commit
This commit is contained in:
parent
feeb85c7ae
commit
b185ba0f3e
1 changed files with 6 additions and 2 deletions
|
|
@ -31,8 +31,12 @@ class LargestIslandConfig:
|
|||
|
||||
rows: int = 10 # Number of rows in the grid
|
||||
cols: int = 10 # Number of columns in the grid
|
||||
max_num_islands: int = 5 # Maximum number of islands (actual max might be smaller due to merging of islands during random walk)
|
||||
max_island_size: int = 10 # Maximum size of an island (actual max might be larger due to merging of islands during random walk)
|
||||
max_num_islands: int = (
|
||||
5 # Maximum number of islands (actual max might be smaller due to merging of islands during random walk)
|
||||
)
|
||||
max_island_size: int = (
|
||||
10 # Maximum size of an island (actual max might be larger due to merging of islands during random walk)
|
||||
)
|
||||
|
||||
size: int = 500 # Virtual dataset size
|
||||
seed: Optional[int] = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue