Static detection of training-serving skew in ML feature pipelines.
Project description
MirrorML
Find the bugs that make a machine learning model behave differently in testing than it does in production.
MirrorML checks whether two data pipelines that are supposed to compute the same thing actually do.
Here is the problem it solves. A machine learning model learns from "features": the input numbers fed into it. Those numbers are usually computed twice, by two separate pieces of code: once over saved historical data while the model is being trained, and again over live data while the model is running for real users. These two pieces of code are often written by different people, in different languages, at different times. When they fall out of sync even slightly (one rounds a number differently, one fills in missing values differently, one averages over a different time range), the model quietly makes worse predictions in production than it did in testing. This mismatch is called training-serving skew. Because nothing crashes and no error is raised, it can go unnoticed for a long time.
MirrorML reads both pieces of code and builds a short summary of what each one does, called a fingerprint. It then compares the two summaries. If they match, the pipelines are equivalent and there is no skew. If they do not, MirrorML points to the exact step that differs and labels what kind of difference it is (for example: a different time zone, a different rounding, adding numbers up where the other averages them, or handling missing values differently). It works by reading the code, so it does not need to run the pipelines or have any real data.
MirrorML checks only the feature code, the part that prepares a model's inputs. Whatever you train the model with afterward (PyTorch, JAX, XGBoost, or anything else) runs later and is outside what MirrorML looks at.
Status
Early development (v0.1.1). The core works end to end. MirrorML can read
pipelines written in pandas, Polars, or SQL (three common ways to work with
tables of data in Python and databases), summarize each one, compare them, and
point to the step that differs. The same pipeline written in any of the three
produces the same summary, so a training pipeline written in one language can be
checked against a production pipeline written in another.
MirrorML recognizes all fifteen kinds of difference it sets out to catch; the category support matrix lists exactly which pipeline patterns trigger each one. As a second, independent check, it can also run both pipelines on a small batch of generated data and compare the actual results. So far it has been tested mainly on examples we created ourselves, plus four real-world bugs rebuilt from published reports. Testing on pipelines collected from public projects is still to come, so there are not yet accuracy numbers from real-world use.
Install
uv add mirrorml # core
uv add 'mirrorml[pandas]' # pandas tracer
uv add 'mirrorml[polars]' # Polars tracer
The core install does not require pandas or Polars. Each one loads only when you
use its tracer (the part of MirrorML that reads that framework's code), so
import mirrorml stays fast.
For local development, work from a clone instead:
uv sync --all-extras --dev
Quickstart
The example below takes a training pipeline written in pandas and a production pipeline written in SQL, and confirms they compute the same thing. Then it changes the SQL side to add scores up instead of averaging them, and MirrorML reports the difference and where it is.
from mirrorml import diff, trace_pandas, trace_sql
EVENTS = (("uid", "int64"), ("score", "float64"))
def offline(df):
return df[df["score"] > 0].groupby("uid").agg({"score": "mean"})
pandas_fp = trace_pandas(offline, input_schema=EVENTS, source_name="events")
sql_fp = trace_sql(
"SELECT uid, AVG(score) AS score FROM events WHERE score > 0 GROUP BY uid",
schemas={"events": EVENTS},
)
assert diff(pandas_fp, sql_fp) == () # the two pipelines are equivalent
# Now the online side sums instead of averaging:
sql_skewed = trace_sql(
"SELECT uid, SUM(score) AS score FROM events WHERE score > 0 GROUP BY uid",
schemas={"events": EVENTS},
)
for d in diff(pandas_fp, sql_skewed):
print(d.category, "|", d.detail)
# aggregation_function | aggregation 'score': function 'mean' vs 'sum'
Two things matter when you adapt this to your own pipeline. First, source_name
must match the table the SQL reads from (events here): MirrorML treats the
source's name as part of the pipeline's identity, so a mismatch is itself
reported as a difference. Second, the dtype strings in input_schema (int64,
float64, and others such as timestamps and decimals) come from MirrorML's
dtype vocabulary.
The Polars tracer takes the same shape; its pipeline receives the frame plus a
pl expression namespace:
from mirrorml import trace_polars
def offline(lf, pl):
return lf.filter(pl.col("score") > 0).group_by("uid").agg(pl.col("score").mean())
polars_fp = trace_polars(offline, input_schema=EVENTS, source_name="events")
For a realistic, end-to-end example, see the demo: an offline pandas pipeline and an online SQL pipeline that compute the same churn feature, checked both ways (by reading the code, and by running both on a small batch of data and comparing the results).
CLI
# Emit one side of a pair as canonical fingerprint JSON
mirrorml trace path/to/pair --side offline -o offline.json
# Diff two on-disk fingerprints (exit 1 if they diverge)
mirrorml diff offline.json online.json
# Trace both sides of a pair, diff them, and check the result against the
# differences the pair says to expect; exits with an error code on a
# mismatch, so it can run as an automated check
mirrorml verify path/to/pair
A "pair" is a directory containing a meta.yaml (which names each side's
language, source file, and schema) plus the source files themselves. This is the
format the MirrorBench pairs under bench/pairs/ use, so those are the examples
to copy. To check your own two pipelines, the most direct path is the Python API
from the Quickstart above: trace each side, then diff. To run that check in
CI, see the GitHub Action.
Public API
The seven names exported from mirrorml are the entire stable surface:
| Name | Kind | Status |
|---|---|---|
Fingerprint |
Pydantic model | Stable |
fingerprint(...) |
constructor | Stable |
Divergence |
Pydantic model | Stable |
diff(...) |
function | Implemented |
trace_pandas(...) |
function | Implemented |
trace_sql(...) |
function | Implemented |
trace_polars(...) |
function | Implemented |
Anything not listed is internal and may change without notice.
Development
uv sync --all-extras --dev
uv run ruff check .
uv run ruff format --check .
uv run mypy
uv run pytest -q
License
Apache-2.0. See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mirrorml-0.1.1.tar.gz.
File metadata
- Download URL: mirrorml-0.1.1.tar.gz
- Upload date:
- Size: 129.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d37947e79ca393291f59eba65808f7f1accab6b6445b5d37410d3f8daf25cd4
|
|
| MD5 |
99bd1ffad4162d946530480855b4e43b
|
|
| BLAKE2b-256 |
ee5cd58db655d9f9074e3e76513df031c64843679bf746197ce9351a943314d7
|
Provenance
The following attestation bundles were made for mirrorml-0.1.1.tar.gz:
Publisher:
release.yml on JonathanBerhe/mirrorml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mirrorml-0.1.1.tar.gz -
Subject digest:
2d37947e79ca393291f59eba65808f7f1accab6b6445b5d37410d3f8daf25cd4 - Sigstore transparency entry: 1911977491
- Sigstore integration time:
-
Permalink:
JonathanBerhe/mirrorml@3b5f2e9c70771ad278803978542d4119f7f3b9d8 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/JonathanBerhe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3b5f2e9c70771ad278803978542d4119f7f3b9d8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mirrorml-0.1.1-py3-none-any.whl.
File metadata
- Download URL: mirrorml-0.1.1-py3-none-any.whl
- Upload date:
- Size: 91.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dd228e626523755c3f64219d799098e03cc796a61d9e1d8a96d66e5c923992d
|
|
| MD5 |
af50881004a1337011ed9e88c6a062f6
|
|
| BLAKE2b-256 |
ec77e6f42365d8a48a163a3d4bbcdac6bd7549e2e3408b64ca7895cb64733213
|
Provenance
The following attestation bundles were made for mirrorml-0.1.1-py3-none-any.whl:
Publisher:
release.yml on JonathanBerhe/mirrorml
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mirrorml-0.1.1-py3-none-any.whl -
Subject digest:
0dd228e626523755c3f64219d799098e03cc796a61d9e1d8a96d66e5c923992d - Sigstore transparency entry: 1911977640
- Sigstore integration time:
-
Permalink:
JonathanBerhe/mirrorml@3b5f2e9c70771ad278803978542d4119f7f3b9d8 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/JonathanBerhe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3b5f2e9c70771ad278803978542d4119f7f3b9d8 -
Trigger Event:
push
-
Statement type: