Replies: 2 comments
|
Thanks for the question! A couple of clarifications first, since the right approach depends a lot on the setup. In For your specific case, a couple of things to clarify:
If you can post a minimal snippet of how you build the simulator, prior, and the |
|
Imagine our true model is y = max(0, a + b * x + error), where x and y are continuous. My simulator will be def sim(theta, x): We want to estimate posterior theta given observed (x, y) |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
We have an observed outcome y that has a lot of 0s and some positive values.
Generally we find that any model will find theta where almost all prediction of y are 0. We could add a loss penalty for 0 predictions.
How would you estimate this in SBI and avoid the zero collapse?
All reactions