mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
reduce size of default shortest_path maze grid
This commit is contained in:
parent
c5f37d5e9f
commit
45e452bff6
1 changed files with 4 additions and 4 deletions
|
|
@ -43,10 +43,10 @@ Now, find the length of the shortest path from * to # in the following grid:
|
|||
class ShortestPathConfig:
|
||||
"""Configuration for Shortest Path dataset generation"""
|
||||
|
||||
min_rows: int = 10
|
||||
max_rows: int = 30
|
||||
min_cols: int = 10
|
||||
max_cols: int = 30
|
||||
min_rows: int = 5
|
||||
max_rows: int = 8
|
||||
min_cols: int = 5
|
||||
max_cols: int = 8
|
||||
p_blocked: float = 0.4
|
||||
|
||||
size: int = 500 # Virtual dataset size
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue