Dharshan
Dharshan
Hi I am new to DI-engine. when I run [DI-engine](https://github.com/opendilab/DI-engine)/[dizoo](https://github.com/opendilab/DI-engine/tree/main/dizoo)/[gym_hybrid](https://github.com/opendilab/DI-engine/tree/main/dizoo/gym_hybrid)/[envs](https://github.com/opendilab/DI-engine/tree/main/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...
Hi I am new to DI-engine and trying to train the gym hybrid "[thomashirtz](https://github.com/thomashirtz)" agent using HPPO. could you please explain me what are [config](https://github.com/opendilab/DI-engine/tree/main/dizoo/gym_hybrid/config),[entry](https://github.com/opendilab/DI-engine/tree/main/dizoo/gym_hybrid/entry), [envs](https://github.com/opendilab/DI-engine/tree/main/dizoo/gym_hybrid/envs) folders are mentioning under...
Hi I was trying to train my customized environment with HPPO (Hybrid PPO) algorithm using DI-engine. Did you train the "[thomashirtz](https://github.com/thomashirtz)" -gym-hybrid agent using the HPPO because i have seen...
Hi i was training my model in jupyter notebook in google chrome for 7 hours. The chrome was crashed. Could anyone help me on this. my RAM is 8GB and...
### Checklist - [X] I added a descriptive title - [X] I searched open reports and couldn't find a duplicate ### What happened? When i was trying to update conda...
### Checklist - [X] I added a descriptive title - [X] I searched open reports and couldn't find a duplicate ### What happened? I was trying to install packages, but...
### Checklist - [X] I added a descriptive title - [X] I searched open reports and couldn't find a duplicate ### What happened? I coudn't pip install pycosat in my...
Hi, I am trying to define interval in between continuous action space as self.action_space = Tuple((Discrete(2), Box(-10, 10, (2,)))), in this parameterized action space. could u please tell me how...
Hi, Can i input data to deployed machine learning model (ex-using FastAPI) from OpenAI gym and get o/p from the FastAPI to control the agent in OpenAI gym paltform?
Hi, I was trying to define tuple action space in my customized env as , parameters_min = np.array([0, -1]) parameters_max = np.array([1, +1]) shape = np.array([0.1, 0.1]) self.action_space = spaces.Tuple((spaces.Discrete(3),spaces.Box(parameters_min,...