You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the state of the environment is correct:
obs = env.state # right after initializing
print("Steps left on load:", obs[0]['observation']['players_raw'][0]['steps_left'])
print("env steps length:", len(env.steps))
# output is:
# Steps left on load: 1252
# env steps length: 1750
However when I take the first 'step' from env.step:
I'm attempting to replay earlier games to see how same agent does. I keep track of list of observations that I get from step:
Then I set it on
steps
when I build the environment:It looks like the state of the environment is correct:
However when I take the first 'step' from
env.step
:... it resets the environment:
What am I doing wrong?
The text was updated successfully, but these errors were encountered: