Skip to content

Commit

Permalink
fix: restore dueling example
Browse files Browse the repository at this point in the history
  • Loading branch information
epignatelli committed Dec 20, 2023
1 parent 12218b6 commit 5cd1c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/dueling_navix_empty.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def main(argv):

# environment
env = nx.environments.Room(5, 5, 100, observation_fn=nx.observations.categorical)
env = helx.environment.to_helx(env) # type: ignore
env = helx.envs.interop.to_helx(env)

# optimiser
optimiser = optax.rmsprop(
Expand Down

0 comments on commit 5cd1c13

Please sign in to comment.