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
where on line 89 Ez was indexed by k1 and k2. However on line 82: Ez = np.sum(expected_joints, axis=2) # marginal over z from T=1 to T-1
and after checking the dimensions of expected_joints:
I believe it should have dimensions (T-1, K, K). As a result Ez would have dimensions (T-1, K), but as shown above the time dimension was actually indexed using k1, which is a bit confusing to me.
Could you clarify if this behavior is intentional, or if there might be a mistake in how Ez is used? I may be missing something here, so I’d appreciate your insight. Thanks for your time and support!
The text was updated successfully, but these errors were encountered:
Hi, thank you for the great package.
I am working with the transition module of mp_srlds and came across the code:
ssm/ssm/extensions/mp_srslds/transitions_ext.py
Lines 82 to 97 in 6c856ad
where on line 89
Ez
was indexed byk1
andk2
. However on line 82:Ez = np.sum(expected_joints, axis=2) # marginal over z from T=1 to T-1
and after checking the dimensions of
expected_joints
:ssm/ssm/messages.py
Lines 186 to 198 in 6c856ad
I believe it should have dimensions
(T-1, K, K)
. As a resultEz
would have dimensions(T-1, K)
, but as shown above the time dimension was actually indexed usingk1
, which is a bit confusing to me.Could you clarify if this behavior is intentional, or if there might be a mistake in how Ez is used? I may be missing something here, so I’d appreciate your insight. Thanks for your time and support!
The text was updated successfully, but these errors were encountered: