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
In Tutorial 1 on W3D3 (Optimal Control) there is an issue with the code for Interactive Demo 4.
It sets the params as params = [stay_prob, high_rew_p, low_rew_p, threshold] while the function "binaryHMM_belief" unpacks those params in different order: p_stay, low_rew_p, high_rew_p, threshold = self.params
The code should be as this: params = [stay_prob, low_rew_p, high_rew_p, threshold]
The text was updated successfully, but these errors were encountered:
In Tutorial 1 on W3D3 (Optimal Control) there is an issue with the code for Interactive Demo 4.
It sets the params as
params = [stay_prob, high_rew_p, low_rew_p, threshold]
while the function "binaryHMM_belief" unpacks those params in different order:p_stay, low_rew_p, high_rew_p, threshold = self.params
The code should be as this:
params = [stay_prob, low_rew_p, high_rew_p, threshold]
The text was updated successfully, but these errors were encountered: