change "actions_id_pad" to "actions_is_pad"(🐛 Bug) (#774)

Co-authored-by: Steven Palma <imstevenpmwork@ieee.org>
This commit is contained in:
Yachen Kang 2025-03-05 08:31:56 +08:00 committed by GitHub
parent e8ce388109
commit b80e55ca44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ class PI0Policy(PreTrainedPolicy):
state = self.prepare_state(batch)
lang_tokens, lang_masks = self.prepare_language(batch)
actions = self.prepare_action(batch)
actions_is_pad = batch.get("actions_id_pad")
actions_is_pad = batch.get("actions_is_pad")
loss_dict = {}
losses = self.model.forward(images, img_masks, lang_tokens, lang_masks, state, actions, noise, time)