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
Add the Log-Logistic (Fisk) distribution. Once LogisticDistribution (issue #54) is implemented, Log-Logistic is a log-space transformation of Logistic — the batch path reduces to vector_log + the Logistic SIMD pipeline.
The alternative direct formula CDF(x) = (x/β)^α / (1 + (x/β)^α) avoids a log+exp but loses precision for small x; the logistic form is numerically superior.
Dispatch thresholds: NEVER initially. Expect thresholds similar to LogNormal (log + exp chain).
is_delegation_wrapper = false — the implementation uses Logistic primitives but has its own parameterisation and moments.
Summary
Add the Log-Logistic (Fisk) distribution. Once
LogisticDistribution(issue #54) is implemented, Log-Logistic is a log-space transformation of Logistic — the batch path reduces tovector_log+ the Logistic SIMD pipeline.Parametrisation
Shape α > 0, scale β > 0. Scipy:
fisk. Support: x > 0.Batch CDF:
vector_log(x)→scalar_multiply(α)→scalar_add(-α·log(β))→ Logistic CDF pipeline (vector_exp+ arithmetic).Properties
Implementation notes
CDF(x) = (x/β)^α / (1 + (x/β)^α)avoids a log+exp but loses precision for small x; the logistic form is numerically superior.is_delegation_wrapper = false— the implementation uses Logistic primitives but has its own parameterisation and moments.