You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the way that irs_mpc_params.rollout_forward_dynamics_mode is implemented is a big bugged.
When we pass ForwardDynamics.SocpMp, ForwardDynamics.QpMp to irs_mpc, it would do fine. However, if we pass one of the smoothing modes such as ForwardDynamicsMode.kLogIcecream, it complains that kappa is set to nan because we never initialize it. (Probably same for randomized smoothing)
I think the reason is that we set a separate parameter for rollout (sim_p_rollout) since the original impc does rollout over true dynamics. But when we input the smoothing modes we never update the parameters of sim_p_rollout.
Will be submitting a fix soon.
The text was updated successfully, but these errors were encountered:
Currently, the way that
irs_mpc_params.rollout_forward_dynamics_mode
is implemented is a big bugged.When we pass
ForwardDynamics.SocpMp
,ForwardDynamics.QpMp
toirs_mpc
, it would do fine. However, if we pass one of the smoothing modes such asForwardDynamicsMode.kLogIcecream
, it complains thatkappa
is set to nan because we never initialize it. (Probably same for randomized smoothing)I think the reason is that we set a separate parameter for rollout (
sim_p_rollout
) since the original impc does rollout over true dynamics. But when we input the smoothing modes we never update the parameters ofsim_p_rollout
.Will be submitting a fix soon.
The text was updated successfully, but these errors were encountered: