mixle.stats.rankings.generalized_mallows module¶
Generalized Mallows distribution over permutations under a choice of distance metric.
The Mallows family concentrates probability around a central permutation sigma0 with dispersion
theta >= 0:
p(sigma) = exp(-theta * d(sigma, sigma0)) / Z(theta, n),
generalizing MallowsDistribution (Kendall-only) to any of the six
metrics in mixle.stats.rankings._permutation_kernels. The per-datum distance is the numba kernel;
this module supplies the metric-specific normalizer Z. Three metrics have a closed-form (fast-DP)
normalizer and moment E_theta[d]:
kendall Z = prod_{i=1}^{n-1} (1 - phi^{i+1}) / (1 - phi) (phi = e^{-theta}) cayley Z = prod_{i=1}^{n-1} (1 + i phi) hamming Z = sum_{m=0}^{n} C(n, m) D_m phi^m (D_m = subfactorial)
The other three are #P-hard and use an exact small-n normalizer with a numba Monte-Carlo fallback
beyond a size cap (the fallback is an approximation, controlled by n_mc / seed):
footrule Z = perm(phi^{|i-j|}) exact Ryser permanent for n <= max_exact (16), else MC spearman Z = perm(phi^{(i-j)^2}) exact Ryser permanent for n <= max_exact (16), else MC ulam Z = sum over the LIS-distance histogram, exact for n <= max_enum (9), else MC
Data type: List[int] – a full ordering, a permutation of 0..n-1 with x[r] the item at rank
r (best first).
- class GeneralizedMallowsDistribution(sigma0, theta=1.0, metric='kendall', name=None, keys=None, n_mc=20000, seed=0, max_exact=16, max_enum=9)[source]
Bases:
SequenceEncodableProbabilityDistributionMallows distribution under a configurable distance
metric(closed-form normalizer metrics).- Parameters:
- classmethod compute_capabilities()[source]
- distance(x)[source]
Distance between ordering
xand the central permutation under this metric.
- density(x)[source]
Return the probability density or mass at a single observation.
Concrete default: exponentiate
log_density(the abstract method subclasses must provide). Leaves with a cheaper closed form may override this.
- log_density(x)[source]
Return the log-density or log-mass at a single observation.
- seq_log_density(x)[source]
Return vectorized log-density values for sequence-encoded observations.
- sampler(seed=None)[source]
Return a sampler for drawing observations from this distribution.
- Parameters:
seed (int | None)
- Return type:
GeneralizedMallowsSampler
- estimator(pseudo_count=None)[source]
Return an estimator for fitting this distribution from data.
- Parameters:
pseudo_count (float | None)
- Return type:
GeneralizedMallowsEstimator
- dist_to_encoder()[source]
Return the data encoder used by this distribution for vectorized methods.
- Return type:
GeneralizedMallowsDataEncoder
- class GeneralizedMallowsSampler(dist, seed=None, burn=1000, thin=10)[source]
Bases:
DistributionSamplerDraw orderings via the exact RIM (Kendall) or a numba Metropolis sampler (other metrics).
- sample(size=None)[source]
Draw observations.
Combinator samplers (mixture/sequence/…) accept
batched. Withbatched=True(the default) each child stream is drawn in one vectorized call instead of a per-draw Python loop – far faster. Because every child sampler owns an independentRandomState, batching consumes each stream in the same order as the loop, so the draws are identical to the legacy path.batched=Falseforces that legacy per-draw loop as a guaranteed- stable reference. Leaf samplers are already vectorized and ignore the flag.
- class GeneralizedMallowsAccumulator(dim, reservoir=10000, keys=None)[source]
Bases:
SequenceEncodableStatisticAccumulatorAccumulate the rank-count matrix, the precede matrix, and a bounded reservoir of orderings.
rank_count[item, rank]andprecede[a, b]give the consensus (Borda / Copeland); the reservoir supplies the empirical mean metric-distance to the fitted center (exact when the data fit in it).- update(x, weight, estimate)[source]
- initialize(x, weight, rng)[source]
- Parameters:
weight (float)
rng (RandomState | None)
- Return type:
None
- seq_update(x, weights, estimate)[source]
- seq_initialize(x, weights, rng)[source]
- Parameters:
x (ndarray)
weights (ndarray)
rng (RandomState | None)
- Return type:
None
- combine(suff_stat)[source]
- Return type:
GeneralizedMallowsAccumulator
- value()[source]
- from_value(x)[source]
- Return type:
GeneralizedMallowsAccumulator
- key_merge(stats_dict)[source]
Pool this accumulator’s statistics into
stats_dictunder its merge key.The structural default implements the common single-key pattern: store the accumulator under
self.keysthe first time the key is seen, elsecombineinto the one already there. Accumulators with several named keys (e.g. an HMM’s init/trans/state keys) or a non-accumulator stats payload override this. AkeysofNone(the default) is a no-op.
- key_replace(stats_dict)[source]
Replace this accumulator’s statistics from the pooled
stats_dictentry (see key_merge).
- acc_to_encoder()[source]
- Return type:
GeneralizedMallowsDataEncoder
- class GeneralizedMallowsAccumulatorFactory(dim, reservoir=10000, keys=None)[source]
Bases:
StatisticAccumulatorFactory- make()[source]
- Return type:
GeneralizedMallowsAccumulator
- class GeneralizedMallowsEstimator(dim, metric='kendall', theta=None, reservoir=10000, name=None, keys=None, n_mc=20000, seed=0, max_exact=16, max_enum=9)[source]
Bases:
ParameterEstimatorEstimate the central permutation (Copeland/Borda) and dispersion theta (moment match).
- Parameters:
- accumulator_factory()[source]
- Return type:
GeneralizedMallowsAccumulatorFactory