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
Uncertainties scaling can now be turned off, by parameter_estimation_settings['scaling_uncertainties_type'] = 'off'
Uncertainties scaling can now be done by a fixed constant by using a string that is a number, like this: parameter_estimation_settings['scaling_uncertainties_type'] = '1e3'
The default is "std".
However, we now have parameter bounds with
InputParameterPriorValues_upperBounds
InputParameterPriorValues_lowerBounds
This works with "off" for the scaling. It probably does not yet work for any other scaling.
##As of May 4th 2020, this only has been checked for scaling_uncertainties_type = 'off'
The text was updated successfully, but these errors were encountered:
it mightbe useful to put InputParameterPriorValues_upperBounds and the lower bound one in the mcmc sampling directly rather than just the likelihood, but we have to keep it in the likelihood as well in case somebody uses gridsearch or direct sampling.
There are two ways of implementing: One could include it in samples as "zero" probability (logP='-inf') without checking prior and likelihood, or one could even exclude it from the sampling. Both ways make sense to me.
AdityaSavara
changed the title
check on compatibility of parameter bounds with scaling_uncertainties
check on compatibility of parameter bounds with scaling_uncertainties and other features
May 10, 2020
As noted in this pull request,
#88
We have the following possibilities:
Uncertainties scaling can now be turned off, by parameter_estimation_settings['scaling_uncertainties_type'] = 'off'
Uncertainties scaling can now be done by a fixed constant by using a string that is a number, like this: parameter_estimation_settings['scaling_uncertainties_type'] = '1e3'
The default is "std".
However, we now have parameter bounds with
InputParameterPriorValues_upperBounds
InputParameterPriorValues_lowerBounds
This works with "off" for the scaling. It probably does not yet work for any other scaling.
##As of May 4th 2020, this only has been checked for scaling_uncertainties_type = 'off'
The text was updated successfully, but these errors were encountered: