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
episode_reward = 0
i=0
while i<100:
i+=1
observation, reward, done, info = env.step(env.action_space.sample())
if done:
break
episode_reward += reward
print(f"Step {i}, quality={episode_reward:.3%}")
Following the above code snippets will always return episode_reward equals to 0 for every step.
However, the environment works normally when removing SynchronousSqliteLogger wrapper.
Activity