Skip to content

Commit

Permalink
fix: sokoban generator fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
clement-bonnet committed Mar 14, 2024
1 parent b492701 commit 56975ec
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions jumanji/environments/routing/sokoban/env_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from jumanji.environments.routing.sokoban.constants import AGENT, BOX, TARGET, WALL
from jumanji.environments.routing.sokoban.env import Sokoban
from jumanji.environments.routing.sokoban.generator import (
DeepMindGenerator,
HuggingFaceDeepMindGenerator,
SimpleSolveGenerator,
)
from jumanji.environments.routing.sokoban.types import State
Expand All @@ -33,10 +33,9 @@
@pytest.fixture(scope="session")
def sokoban() -> Sokoban:
env = Sokoban(
generator=DeepMindGenerator(
difficulty="unfiltered",
split="train",
proportion_of_files=0.005,
generator=HuggingFaceDeepMindGenerator(
"unfiltered-train",
proportion_of_files=0.01,
)
)
return env
Expand Down

0 comments on commit 56975ec

Please sign in to comment.