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
I have tried to work real time plotting on play_husky_camera.py for a while. Unfortunately, I met a little bit weird problem. I applied following steps and a weird error was occurred:
play(env, zoom=4, callback=plt.callback), PlayPlot class is imported as plt and it's callback function is called as callback function.
if callback is not None:
callback(prev_obs, obs, action, rew, env_done, info), the code is worked successively.
But, in this point the error (callback() missing 1 required positional argument: 'info') occurred in despite of def callback(self, obs_t, obs_tp1, action, rew, done, info):
Do you have any idea for solving this problem? Thank you in advance.
The text was updated successfully, but these errors were encountered:
Hello everyone,
I have tried to work real time plotting on play_husky_camera.py for a while. Unfortunately, I met a little bit weird problem. I applied following steps and a weird error was occurred:
callback(prev_obs, obs, action, rew, env_done, info), the code is worked successively.
Do you have any idea for solving this problem? Thank you in advance.
The text was updated successfully, but these errors were encountered: