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 the case for BB full with explicit parameters it previously could have happened that the beta parameter became negative. This happened when the nbeta parameter (the effective number of expected events after scaling with the betas) was below a certain threshold. To avoid this, the new parameter to be determined isu and defined as x = threshold + exp(u) ensuring x is always larger as the threshold and all beta parameters are always positive.
Since this can't be used with a fully quadratic likelihood anyways, wouldn't it be more appropriate to have multiplicative BBB uncertainties in this case?
Since this can't be used with a fully quadratic likelihood anyways, wouldn't it be more appropriate to have multiplicative BBB uncertainties in this case?
The BBB uncertainties are multiplicative. This is about finding the $x = \sum_j^{procs} n_j \beta_j$ per bin, which decouples the equations for the individual $\beta_j$ parameters. Ones we find $x$ we can compute $\beta_j$ analytically. But to find the $x$ we have to use 1D Newton minimization. To ensure it's above a certain threshold I've parameterized it as $x = threshold + \mathrm{e}^u$ such that I don't have to put any bound on $u$.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In the case for BB full with explicit parameters it previously could have happened that the beta parameter became negative. This happened when the nbeta parameter (the effective number of expected events after scaling with the betas) was below a certain threshold. To avoid this, the new parameter to be determined is
uand defined asx = threshold + exp(u)ensuring x is always larger as the threshold and all beta parameters are always positive.