Skip to main content

winning

A package for dealing with races, correlated or not.

winning began as the reference implementation of the lattice ability transform (SIAM J. Financial Mathematics, 2021) and owns the whole line: the original density-agnostic engine, the factor-correlated generalization developed for "Scalable Share Calibration for Factor Multinomial Probit Models", an arena of competing methods, and a standing benchmark database.

  • winning.thurstone — the core engine, vendored home from the thurstone package (now a compatibility shim). Densities on a lattice, winner-of-many, dead heats, and the ability transform, for any base distribution.
  • winning.factor — the correlated extension: all-share forward pass, share calibration, Jacobian-vector products, and factor fitting. One general race, race_probabilities, takes the distribution and the factor rank as parameters; factor probit, the classic independent transform, Luce/softmax, and correlated softmax are named special cases, and custom standardized bases plug in as callables. The Gaussian specialization keeps its dedicated tail-exact kernel.
  • winning.methods — every contestant behind one interface: the lattice transform, direct and Sobol simulation, per-alternative factor-RQMC, GHK / Genz separation-of-variables, minimax tilting. Each passes closed-form and Monte Carlo anchors before admission.
  • winning.bench — a seeded problem grid, cached references, and append-only accuracy-time records: python -m winning.bench.runner.

CI License: MIT

The fastest time, the best offer and the most popular product are the same order statistic

Install

pip install winning        # core depends only on numpy and scipy

Quick start

Independent race: shares from abilities, and back.

import numpy as np
from winning import race_probabilities, calibrate_abilities

mu = np.array([-0.5, 0.0, 0.2, 0.3])          # lower is better (min-wins)
p = race_probabilities(mu)                     # array([0.443, 0.232, 0.175, 0.150])
mu_back = calibrate_abilities(p)               # recovers mu (mean zero)

Correlated race: a hundred runners moved by two common factors, all shares in one pass over a shared survival field, then inverted.

rng = np.random.default_rng(0)
N, k = 100, 2
mu = rng.normal(0, 1, N); mu -= mu.mean()
V = rng.normal(0, 0.4, (N, k))                # factor loadings
D = rng.uniform(0.5, 1.5, N)                  # idiosyncratic variances

p = race_probabilities(mu, V=V, D=D)          # all N shares, O(QNL)
mu_hat = calibrate_abilities(p, V=V, D=D)     # inversion

Counterfactuals and structure from the same shared field:

from winning import removal_shares, tie_densities

q = removal_shares(mu, V=V, D=D)   # q[i][j] = P(j wins | i removed)
w = tie_densities(mu, V=V, D=D)    # photo-finish weights: the Jacobian's
                                   # graph-Laplacian (circuit) conductances

For the probit literature, winning.probit speaks max-wins utilities and shares directly — the paper's own conventions — and is the one audited reflection onto the internal min-wins race. Both of the paper's calibrations live here: utilities from observed shares, and the factor structure itself from a supplied covariance.

from winning.probit import shares, utilities_from_shares, fit_factor_model

utilities = -mu                            # higher is better on this side
p = shares(utilities, V=V, D=D)            # all N choice probabilities
u = utilities_from_shares(p, V=V, D=D)     # the paper's calibration
Sigma = V @ V.T + np.diag(D)
V_hat, D_hat = fit_factor_model(Sigma, k=2)  # certified rank-k contrast fit
p2 = shares(utilities, Sigma=Sigma, k=2)   # same fit applied en route

One race, everything a parameter: distribution and correlation chosen per call, with factor probit just one named point in the family.

from winning.factor import race_probabilities

race_probabilities(mu)                       # the classic independent race
race_probabilities(mu, V=V, D=D)             # factor probit
race_probabilities(mu, base="gumbel")        # Luce / softmax, exactly
race_probabilities(mu, V=V, base="gumbel")   # correlated softmax
race_probabilities(mu, temperature=0.7)      # E[softmin(X/tau)]: soft credit

Temperature is exact, not approximate: by the Gumbel-argmin identity the softmin expectation equals the hard race with each base convolved with the tau-scaled Gumbel kernel, so the same engine serves it. It is not identifiable from a single race, so inversion holds it fixed.

Arbitrary densities (skewed, multimodal, empirical) run through custom bases or winning.thurstone — see the module docs and research/demos/.

The paper

The correlated calibration is documented in Scalable Share Calibration for Factor Multinomial Probit Models (papers/factor-probit-transform, submitted): all shares of a correlated Gaussian race in one O(QNL) pass, matrix-free graph-Laplacian derivatives, and inversion at ten thousand alternatives in under a minute. Every number comes from a committed, seeded script in research/experiments (index in its README); research/experiments/run_all_paper.py regenerates the lot.

Demos and other languages

research/demos holds explanatory scripts (the shared survival field, the cavity downdate). js/factor is a dependency-free JavaScript port at machine-precision parity with the Python, for browser demos; r/winning is a pure-R package; rust/fastrace holds the optional compiled kernels — build with pip install maturin && maturin develop --release, and winning.methods uses them automatically. Julia is on the roadmap.

Rating systems (research line)

The renovation-era ratings layer — whole-density beliefs, exact full-finish-order updates, benchmarked against TrueSkill, OpenSkill, Glicko-2 and Elo on twelve datasets — lives in src/ pending integration, with results in BENCHMARKS.md. Headlines: decisive win on Formula 1 (1,158 grands prix), best calibration on chess (ECE 0.0047), statistical ties atop WTA/ATP/EPL, and markets remaining the ceiling wherever they exist. The ThurstoneRating API documented there ships with a future release; it is not importable from the current package.

History

Versions 1.x were the SIAM paper's reference implementation, and those imports still work. A 2.0 renovation explored splitting the numerical core into the separate thurstone package with winning as an applications layer; the decision went the other way. winning owns the core — heritage and name — the thurstone implementation is vendored here as winning.thurstone, and the thurstone package is a compatibility shim whose imports resolve to this one. The renovation's migration notes and unported ideas are preserved in planning/ and attic/.

Cite

@article{doi:10.1137/19M1276261,
author = {Cotton, Peter},
title = {Inferring Relative Ability from Winning Probability in Multientrant Contests},
journal = {SIAM Journal on Financial Mathematics},
volume = {12},
number = {1},
pages = {295-317},
year = {2021},
doi = {10.1137/19M1276261},
URL = {https://doi.org/10.1137/19M1276261}
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

winning-1.1.1.tar.gz (123.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

winning-1.1.1-py3-none-any.whl (134.6 kB view details)

Uploaded Python 3

File details

Details for the file winning-1.1.1.tar.gz.

File metadata

  • Download URL: winning-1.1.1.tar.gz
  • Upload date:
  • Size: 123.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for winning-1.1.1.tar.gz
Algorithm Hash digest
SHA256 713a0caf7ddd7de166fbf36bbc263a995b812ff1fcd39f47425d16cb0ae66605
MD5 64e886566c6cc9bbf00056cd5d6f0f40
BLAKE2b-256 aea5e2ae99e5228313d2d0045690e8675ff6f66f346a31d56d5c1a03c792709f

See more details on using hashes here.

Provenance

The following attestation bundles were made for winning-1.1.1.tar.gz:

Publisher: publish.yml on microprediction/winning

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file winning-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: winning-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 134.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for winning-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8792708a1ab78b28698d6f4c3e69c9e2a8efc2f0d521c8adc77f425e2678a7bf
MD5 723e0bb2b2626b7394745e17592d80a7
BLAKE2b-256 75fe1fda9f126447e5db9936705d1baf9b8327dd33c9daabd1d6550cf8d23e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for winning-1.1.1-py3-none-any.whl:

Publisher: publish.yml on microprediction/winning

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.4.0

2 files

1.3.0

2 files

1.2.0

2 files

This release

1.1.1 This release

2 files

1.1.0

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.5.0

2 files

0.4.9

2 files

0.4.6

2 files

0.4.5

2 files

0.4.3

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

2 files

0.1.0

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page