Skip to content

Commit

Permalink
fix: fixing cont autoregressive act
Browse files Browse the repository at this point in the history
  • Loading branch information
OmaymaMahjoub committed Nov 11, 2024
1 parent cd025e4 commit ab6aba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mava/networks/utils/sable/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,4 @@ def continuous_autoregressive_act(
# Adds all except the last action to shifted_actions, as it is out of range
shifted_actions = shifted_actions.at[:, i + 1, :].set(action[:, i, :], mode="drop")

return output_action.astype(jnp.int32), output_action_log, hstates
return output_action, output_action_log, hstates

0 comments on commit ab6aba5

Please sign in to comment.