Zhihao Liu

Results 10 comments of Zhihao Liu

FYI. Open AI does have envs with discrete observation space, such as the blackjack. Inside blackjack.py, self.observation_space is defined by ` self.observation_space = spaces.Tuple(( spaces.Discrete(32), spaces.Discrete(11), spaces.Discrete(2)))` So `action_dim=env.action_space.n,` may...

FYI. If using `spaces.Tuple` for the observation spaces, data format will be different. Please see `gym/spaces/tuple.py` #TODO: Initialization of any network, such as `dqn.py` `get_replay_buffer.py` ``` def get_space_size(space): if isinstance(space,...

> So how do I control an industrial robot with ros2? Do I have to write a driver without industrial_robot_client, directly connect to ros2_control ? What about those existing drivers,...

Same question. I am running on RTX3060 with 12G memory. ~12 FPS.

> Hi, I am trying your API with the following configuration setup: > > OS: Windows RAM: 32 GB GPU: 8GB, RTX 2080 SUPER OpenPose Version: 1.7 > > When...

Any news? I am using a gripper through RTDE and facing the same problem. The asynchronous controllers did not work...

> Hi, > > I had something similar working with an UR10e and a RobotiQ Hand-E gripper with ROS2 Humble. I was just wondering if I should start an issue...