-
-
Notifications
You must be signed in to change notification settings - Fork 199
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
Make calcChoiceProbs more accurate, and make simultaneous evalution f… #242
Conversation
…aster (and more accurate).
@mnwhite would it be possible for you to look at these changes? It'd probably make sense for them to make it into HARK before the next version, as the way they're calculated here is quite important to be able to replicate the DCEGM paper for example. With the old way of handling overflow, DCEGM figures do not match those published (and the fault is ours) cc @shaunagm as I feel like this is slightly release blocking |
Yes, I think these should be in the release -- but I thought they'd already
been merged into the master branch?
…On Fri, Apr 5, 2019 at 5:05 AM Patrick Kofod Mogensen < ***@***.***> wrote:
@mnwhite <https://github.com/mnwhite> would it be possible for you to
look at these changes? It'd probably make sense for them to make it into
HARK before the next version, as the way they're calculated here is quite
important to be able to replicate the DCEGM paper for example. With the old
way of handling overflow, DCEGM figures do not match those published (and
the fault is ours)
cc @shaunagm <https://github.com/shaunagm> as I feel like this is
slightly release blocking
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#242 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ABQlf3_h5b-IzCgkzN8dqZ_azqgYiliVks5vdxHvgaJpZM4b76ja>
.
--
- Chris Carroll
|
Some version of the collection of functions are there, but this PR hasn't been merged, so the improvements are not. Edit: so the things we discussed with Shujaat are not in the master branch until this is merged. |
Ack, I'm in Bordeaux right now, flying to Dublin momentarily. I'm sorry
this keeps slipping. I will try to merge in tonight (European).
…On Fri, Apr 5, 2019, 10:05 AM Patrick Kofod Mogensen < ***@***.***> wrote:
@mnwhite <https://github.com/mnwhite> would it be possible for you to
look at these changes? It'd probably make sense for them to make it into
HARK before the next version, as the way they're calculated here is quite
important to be able to replicate the DCEGM paper for example. With the old
way of handling overflow, DCEGM figures do not match those published (and
the fault is ours)
cc @shaunagm <https://github.com/shaunagm> as I feel like this is
slightly release blocking
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#242 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ANUQFaCfI8DSscIA2PmJYMly1JGTA_bVks5vdxHwgaJpZM4b76ja>
.
|
The loop at 3395 can be done with an indexing scheme (and no loop). But (from my own experience with this exact step) it makes the code harder to read and doesn't actually result in a speedup-- the number of choices is usually like 2-5, so it's not much of a loop to avoid. Merging now. |
"Improve accuracy and performance of functions for evaluating the integrated value function and conditional choice probabilities for models with extreme value type I taste shocks." |
…aster (and more accurate).
The commit message should say it. It makes the simultaneous evaluation faster and more accurate, and the choice prob evaluation more accurate on its own.
Improvements where needed for econ-ark/REMARK#9 to fully replicate DCEGM paper.