-
-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modeling Career Choice #1
Comments
@oyamad Thanks! |
Hi @oyamad, did you want to add max_iter=1000 in the sentence "To compute the median with β=0.99β=0.99 instead of the default value β=0.95β=0.95, replace wp = CareerWorkerProblem() with wp = CareerWorkerProblem(beta=0.99)" ? |
It seems like the relevant sentence has been added, although |
Fixed here: I think this issue is ready to be closed. |
The outcome of career/career_vf_plot.py does not look nice like the figure in the lecture.
In the solution to Exercise 1:
max_iter=200
should be added tocompute_fixed_point
.theta_path, epsilon_path = gen_path()
should be placed inside thefor ax in axes
loop.In the solution to Exercise 2, for the case of
beta=0.99
:RuntimeWarning
from non convergence,max_iter
should be set, for example, to1000
(if the default tolerance is used).The text was updated successfully, but these errors were encountered: