AssertionError: gym_hybrid
Hi I am new to DI-engine. when I run DI-engine/dizoo/gym_hybrid/envs/gym_hybrid_env.py (gym_hybrid_env.py ) code only in jupyter notebook, i am getting the AssertionError: gym_hybrid error. can anyone please help me on how to get rid from this?? The documents are required to understand the DI-Engine.
Can you provide more details, like screen snapshots of your errors?
Can you provide more details, like screen snapshots of your errors? Thank you for your reply. Sure, I ran this code { DI-engine/dizoo/gym_hybrid/envs/gym_hybrid_env.py} in jupyter notebook but i got the following error message
What this error mentioning about gym_hybrid?
This error could be a repeat register error, which is caused by the repeat import of GymHybridEnv.
For simplicity, you can modify line 14 like @ENV_REGISTRY.register('gym_hybrid', force_overwrite=True) to figure it out.
This error could be a repeat register error, which is caused by the repeat import of
GymHybridEnv.For simplicity, you can modify line 14 like
@ENV_REGISTRY.register('gym_hybrid', force_overwrite=True)to figure it out.
Yes it worked. Thank you
Why this error occurs? Is that because of python 3?? I ran the DI-engine/dizoo/gym_hybrid/config/gym_hybrid_ddpg_config.py code

please let me know, why am i getting this error when i run the DI-engine/dizoo/gym_hybrid/entry/gym_hybrid_ddpg_eval.py code ??

Also please let me know, why am i getting this error when i run the DI-engine/dizoo/gym_hybrid/entry/gym_hybrid_ddpg_main.py code??

Also please let me know, why am i getting this error when i run the DI-engine/dizoo/gym_hybrid/entry/gym_hybrid_ddpg_main.py code??
For this problem, you should add replay_path field in your config, just like
gym_hybrid_hppo_config = dict(
env=dict(
replay_path="your own file directory path to save replay video"
),
...,
)
For more detailed discussion, you can join our slack channel and some message to us.
For more detailed discussion, you can join our slack channel and some message to us.
The replay path is not activated in the ddpg config, ?? DI-engine/dizoo/gym_hybrid/config/gym_hybrid_ddpg_config.py

