class UniformErrorDistribution( ScaledErrorDistribution ) | Source |
---|
To calculate a Uniform likelihood, eg. for digitization noise.
For one residual, x, it holds
L( x ) = 1 / ( 2 * s ) if |x| < s
0 otherwise
where s is the scale. s is a hyperparameter, which might be estimated from the data.
The variance of this function is σ2 = s / 6. See: toSigma()
The function is mostly used to calculate the likelihood L over N residuals, or easier using log likelihood, logL.
logL = -log( 2 * s ) * N
Note that it is required that all residuals are smaller than s, otherwise the logL becomes -inf.
Using weights this becomes
logL = -log( 2 * s ) * ∑ w
Author Do Kester.
UniformErrorDistribution( scale=1.0, limits=None, copy=None ) |
---|
Constructor of Uniform Distribution.
Parameters
- scale : float
noise scale - limits : None or list of 2 floats [low,high]
None no limits implying fixed scale
low low limit on scale (needs to be >0)
high high limit on scale
when limits are set, the scale is not fixed. - copy : UniformErrorDistribution
distribution to be copied.
copy( ) |
---|
acceptWeight( ) |
---|
getScale( problem, allpars=None ) |
---|
Parameters
- problem : Problem
to be solved - allpars : array_like
None take parameters from problem.model
list of all parameters in the problem
toSigma( scale ) |
---|
- scale : float
the scale of this Uniform distribution.
logLikelihood_alt( problem, allpars ) |
---|
Alternate calculation.
Outside the range the likelihood is zero, so the logL should be -inf. However for computational reasons the maximum negative value is returned.
Parameters
- problem : Problem
to be solved - allpars : array_like
parameters of the problem
logLdata( problem, allpars, mockdata=None ) |
---|
logL = sum( logLdata )
Parameters
- problem : Problem
to be solved - allpars : array_like
list of all parameters in the problem - mockdata : array_like
as calculated by the model
partialLogL_alt( problem, allpars, fitIndex ) |
---|
dL/ds is not implemented for problems with accuracy
Parameters
- problem : Problem
to be solved - allpars : array_like
parameters of the problem - fitIndex : array_like
indices of parameters to be fitted
nextPartialData( problem, allpars, fitIndex, mockdata=None ) |
---|
dL/ds is not implemented for problems with accuracy
Parameters
- problem : Problem
to be solved - allpars : array_like
parameters of the problem - fitIndex : array_like
indices of parameters to be fitted - mockdata : array_like
as calculated by the model
Methods inherited from ScaledErrorDistribution |
---|
Methods inherited from ErrorDistribution |
---|
- getGaussianScale( problem, allpars=None )
- getResiduals( problem, allpars=None )
- getChisq( problem, allpars=None )
- isBound( )
- keepFixed( fixed=None )
- setPriors( priors )
- domain2Unit( dval, ks )
- unit2Domain( uval, ks )
- logCLhood( problem, allpars )
- logLhood( problem, allpars )
- partialLogL( problem, allpars, fitIndex )
- numPartialLogL( problem, allpars, fitIndex )
- updateLogL( problem, allpars, parval=None )
- setResult( )
- hyparname( k )