-
Notifications
You must be signed in to change notification settings - Fork 86
PreReqs
Vikash Kumar edited this page Aug 1, 2022
·
2 revisions
- MDP formulations - Gym , dm-control
- Physics simulation -- MuJoCo
MDP formulations - Gym docs
- env = gym.make('hopper-v3')
- obs = env.get_obs()
- obs_next, rewards, done, env_info = env.step(actions)
- obs = env.reset()
- sim.model - non temporal data
- sim.data[t] - temporal data
- sim.forward() # forward kinematic
- sim.step() # time integration
RoboHive: A unified framework for robot learning