hqfang commited on
Commit
8242e7b
·
verified ·
1 Parent(s): 7fc43ad

remove normalization of gripper state

Browse files
Files changed (1) hide show
  1. modeling_molmoact.py +2 -0
modeling_molmoact.py CHANGED
@@ -1955,6 +1955,8 @@ class MolmoActForActionReasoning(MolmoActPreTrainedModel, GenerationMixin):
1955
  q01 = np.asarray(stats["q01"], dtype=np.float32)
1956
  q99 = np.asarray(stats["q99"], dtype=np.float32)
1957
  mask = np.asarray(stats.get("mask", np.ones_like(q01, dtype=bool)), dtype=bool)
 
 
1958
 
1959
  # Lazily load the tokenizer (shared across calls)
1960
  if self._qwen_tokenizer is None:
 
1955
  q01 = np.asarray(stats["q01"], dtype=np.float32)
1956
  q99 = np.asarray(stats["q99"], dtype=np.float32)
1957
  mask = np.asarray(stats.get("mask", np.ones_like(q01, dtype=bool)), dtype=bool)
1958
+ # the gripper state should not be normalized
1959
+ mask[-1] = False
1960
 
1961
  # Lazily load the tokenizer (shared across calls)
1962
  if self._qwen_tokenizer is None: