google-deepmind / google-deepmind/open_x_embodiment
What is the intuition behind all three keys inside action?
Open
- Dominant language
- Jupyter Notebook
- Stars
- 2k
- Forks
- 127
- PR merge metrics
- No merged PRs in 30d
Description
In the below function , what does world_vector , rotation_delta , gripper_closedness_action mean ??
def step_map_fn(step):
return {
'observation': {
'image': tf.image.resize(step['observation']['image'], (128, 128)),
},
'action': tf.concat([
step['action']['world_vector'],
step['action']['rotation_delta'],
step['action']['gripper_closedness_action'],
], axis=-1)
}
Contributor guide
Assessment
This issue has not been assessed yet.