Closed rliu100 closed 7 months ago
@MitchellKiely - Is this an issue on your end?
Apologies @rliu100 for the late reply, I just returned from leave. Yes, you are correct, this was a remnant from the previous CAGE challenges. Thanks for picking up on this mistake, I've pushed the changes to main.
Should the import at the beginning of RandomAgent be
from gymnasium import Space
?Below, I've used
RandomAgent
in my submission.py file, similar to the example withDummyAgent
.However, if I run the evaluation.py script, I get the following message because the action space is of type
gymnasium.spaces.Discrete
.If I change the import to
from gymnasium import Space
, the error goes away.