This release is a pre-release and may not be stable for production use.
Merriv
An optimized model can match backend outputs and still become a worse release. Merriv catches the regression, records the evidence, and identifies the first bad build before a promotion controller acts.
Merriv is the vendor-neutral release-evidence layer for deployable AI models. It turns a change between model builds into a portable, content-addressed, and independently checkable Model Change Report.
Model Change Report is the portable evidence contract. Merriv is its reference implementation.
Status: Pre-alpha reference implementation · seeking three external release pilots, not claiming a standard or external adoption · roadmap
Named products in the diagram are interoperability examples, not bundled dependencies or endorsements. Verification covers declared integrity and conformance; it does not establish producer identity. The diagram has an editable draw.io source.
[!IMPORTANT] Real historical regression: llama.cpp issue #22544 identifies a first-bad commit where
--tensor-typewas ignored during quantization; merged PR #22572 fixed it. The source-anchored replay returnsBLOCKon the two tensor assignments published upstream. It is a replay, not a fresh 27B model execution or a model-quality claim.
Quick start
Run the offline demo without cloning the repository:
[!NOTE] This quickstart intentionally produces
BLOCKand exits with code2. That is the expected successful demonstration of the release gate.
uvx --python 3.13 --from git+https://github.com/niansia/Merriv.git merriv demo --output runs/quickstart
The declared rare slice regresses more sharply than the common slice. The command
writes a compiled release plan, evidence manifest, Model Change Report JSON,
Markdown, JUnit, and
SARIF. It is a synthetic behavior demo, not adoption or empirical evidence. A
tagged PyPI release will shorten this to uvx --from merriv merriv demo; until
then the Git URL keeps the no-clone path honest. See the
full quickstart.
Already have retained Polygraphy results? Import them without first learning the recorded JSONL format:
merriv import polygraphy run-results.json \
--baseline-runner onnxrt-runner \
--candidate-runner trt-runner \
--policy policy.yaml \
--output runs/polygraphy-mcr
The importer uses Polygraphy's native comparator. --format normalized is a
wiring/test interchange and is explicitly labeled as non-live evidence.
Why this exists
Model builds cross optimizer, compiler, runtime, hardware, registry, and CI boundaries. Each tool may produce a correct local answer while the release still lacks one portable object that binds the exact artifacts, evidence, statistics, policy, decision, and regression onset.
Merriv does not replace native tools:
| Existing capability | Keep using it for | Merriv adds |
|---|---|---|
| Model optimizers and compilers | Producing deployable artifacts | Artifact identity, retained evidence, and release semantics |
| Backend debuggers such as Polygraphy | Layer/output comparison | A portable bundle for downstream verification and policy |
| Evaluation and registry systems such as MLflow | Metrics, experiments, and lifecycle workflows | Cross-tool evidence and a producer-neutral Model Change Report boundary |
| CI and promotion controllers | Workflow execution | Fail-closed PASS/WARN/INSUFFICIENT_POWER/BLOCK/ERROR decisions with auditable inputs |
Those are evaluation decisions, not deployment authority. A Model Change
Report says whether its bound evaluation policy was satisfied. The consuming
organization combines the verified report, producer identity, provenance, BOM,
risk, and environment policy
to make its separate ALLOW/DENY decision.
For prompts, RAG applications, or agent trajectories, use an application-evaluation tool first. For backend or layer debugging, use the native debugger first. Merriv starts where those results must become reviewable release evidence. The detailed boundaries are documented in when to use each tool.
Reproducible release regression
The CPU-only ONNX experiment exports one fixed model to FP16 and three real INT8 QDQ builds and evaluates 629 paired holdout cases. It intentionally changes the calibration range, so it is a controlled regression test—not the headline proof:
| Build | Overall (n=629) | Critical slice (n=47) | Gate |
|---|---|---|---|
| FP16 baseline | 94.8% | 91.5% | PASS |
| INT8 balanced | 94.8–94.9% | 91.5–93.6% | PASS |
| INT8 scale 0.65 | 92.9–93.2% | 74.5–78.7% | WARN–BLOCK |
| INT8 scale 0.60 | 92.4–92.9% | 70.2–76.6% | BLOCK |
For the retained NVIDIA scale-0.65 run, the critical-slice paired change is
-12.77 percentage points with a raw 95% percentile-bootstrap CI of
[-23.40, -4.26] points (n=47). That width is why reports now expose sample
size, CI level, family-wise alpha, Holm-adjusted evidence, target power, and MDE.
Its archived report predates multiplicity correction; the current two-rule Holm
family classifies the same 43/47 to 37/47 outcomes as WARN, not BLOCK.
Scale 0.65 always fails closed, but its Holm-adjusted interval is platform
dependent: some kernels produce WARN, others BLOCK. Scale 0.60 is the first
cross-platform conclusive BLOCK; localization reports build 02 only when its
evidence is decisive, otherwise it retains the build 01–03 uncertainty interval.
The example also records ONNX semantic diff, per-tensor numerical divergence,
gate evidence, and executed bisect. Run it with:
python -m pip install -e ".[onnx-demo]"
python examples/onnx_quantization/run_demo.py --output runs/onnx-quantization
The NVIDIA vertical exercises the same boundary with ModelOpt, TensorRT, and Polygraphy on an RTX 4060 Laptop GPU. Its large retained evidence is distributed as a GitHub Release asset rather than stored in Git history; the repository keeps the small receipt, hashes, scripts, and reproducible case study.
Reproduce on your hardware
Independent reproductions across NVIDIA GPUs, TensorRT versions, operating systems, and other deployment runtimes are welcome. If you reproduce this release story on another system, open an External Reproduction report. Repository-owned reruns are not counted as external adoption.
Model Change Report at a glance
Version 0.4 binds:
- immutable baseline and candidate snapshot identities;
- executor, runtime, platform, and build provenance;
- paired metrics, uncertainty, sample size, and slice scope;
- the exact versioned policy and five-state evaluation decision;
- policy-wide Holm-Bonferroni correction, family-wise alpha, target power, and MDE;
- content-addressed evidence sets and supplemental evidence;
- a replay-stable
evidence_id, decision-bound reportid, and exactrun_id; - optional artifact diff, numerical diff, and first-bad-build evidence.
Any conforming producer may emit a Model Change Report without using the Merriv
CLI. A consumer can verify and consume it without importing the merriv Python
module:
merriv conformance producer examples/mcr_conformance
merriv mcr verify examples/mcr_conformance/full --strict
valid means the performed integrity checks passed. It does not mean the
producer is authenticated, a transparency record was checked, an independent
party reproduced the evidence, the model is safe, or deployment is authorized.
Verification reports each trust dimension separately.
Project map
| Area | Entry point |
|---|---|
| Quickstart and generated files | docs/quickstart.md |
| Architecture and extension boundaries | docs/architecture.md |
| Statistical gate semantics | docs/statistical-gating.md |
| Model Change Report specification | docs/mcr-specification.md |
| Normative JSON Schemas | schemas/mcr-0.4 |
| Producer/consumer conformance | docs/mcr-conformance.md |
| External producer boundary | docs/external-producers.md |
| in-toto, OCI, SLSA, OMS, and BOM composition | docs/supply-chain-interop.md |
| Compatibility and migrations | docs/mcr-compatibility.md · docs/mcr-0.4-migration.md |
| Golden vectors and cross-language identity | examples/content_identity |
| Reference integrations | integrations |
| Regression corpus | corpus |
| Real historical replay | llama.cpp #22544 |
| Threat model and security reporting | SECURITY.md |
| Protocol governance and design decisions | docs/protocol-governance.md · rfcs |
| Planned compatibility work | ROADMAP.md |
The base package has four runtime dependencies: httpx, pydantic, PyYAML,
and typer. ONNX, demo, and integration toolchains remain optional.
Trust and attestation direction
Model Change Report content IDs establish integrity, not producer identity. The integration direction is therefore an in-toto Statement predicate that can be signed with Sigstore/cosign and carried by existing artifact attestation systems. Merriv should not invent a competing signature envelope.
merriv mcr predicate runs/release \
> mcr.predicate.json
cosign attest --yes \
--type https://github.com/niansia/Merriv/attestations/model-change-report/v0.1 \
--predicate mcr.predicate.json \
<artifact-reference>
Cosign supplies the in-toto subject and Statement envelope, then signs it. Merriv only emits the predicate body; it does not hold signing keys or claim that content identity authenticates its producer.
For a registry-native prototype, emit a complete unsigned Statement or an OCI 1.1 subject/referrer layout:
merriv mcr statement runs/release \
--subject-name registry.example/model:v42 \
--subject-sha256 <64-hex-digest>
merriv mcr oci-layout runs/release \
--subject-name registry.example/model:v42 \
--subject-digest sha256:<manifest-digest> \
--subject-size <manifest-size> \
--output runs/release-oci
See supply-chain interoperability for the exact boundary: a Model Change Report does not replace SLSA provenance, SPDX/CycloneDX ML-BOM, OpenSSF Model Signing/Sigstore, OCI transport, or consumer-side deployment policy.
Regulated release records
The immediate design-partner target is teams that already need traceable model release records in healthcare, finance, automotive, critical infrastructure, or other governed environments. This project is not a compliance certification. The EU AI Act high-risk requirements now apply from 2 December 2027 for Annex III systems and 2 August 2028 for Annex I product systems; see the official regulation. The practical product claim is narrower: a Model Change Report can retain exact release evidence that an organization's own risk, quality, and compliance process decides it needs.
Development
uv sync --frozen --extra dev --extra onnx
uv run --frozen ruff check .
uv run --frozen mypy src
uv run --frozen pytest
CI also checks schema drift, content-identity vectors, Rust interoperability, reproducible builds, the composite action, CPU ONNX evidence on Linux and Windows, dependency review, CodeQL, and OpenSSF Scorecard signals. The release workflow already builds, attests, and uses PyPI Trusted Publishing; the remaining external step is registering the project/publisher and cutting the first brand-cleared tag.
Merriv is pre-alpha. Public contracts use explicit schema versions, but stability
is not promised until v1.0. The project currently has no publicly verified
external adopter; repository-owned integrations are not counted as adoption.
The public name, Python distribution, import namespace, and CLI are all merriv.
See the naming decision.
Contributing and security
Read CONTRIBUTING.md before opening a change. Compatibility reports and questions follow SUPPORT.md. Report vulnerabilities only through the private security advisory form, not a public issue.
Citation
Citation metadata is available in CITATION.cff.
License
Apache-2.0. See LICENSE.
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 merriv-0.1.0a2.tar.gz.
File metadata
- Download URL: merriv-0.1.0a2.tar.gz
- Upload date:
- Size: 481.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf1ab9f3f85ee1ad40f94d6f1e623f101c787d1b201c13f50c83d6d4f61af865
|
|
| MD5 |
01db0a0681bde494fe0d272a99dfcf75
|
|
| BLAKE2b-256 |
793bd92273d5369a6e7ae173c27ededc8ee4544290569b5a7b9eed03fa7df16f
|
Provenance
The following attestation bundles were made for merriv-0.1.0a2.tar.gz:
Publisher:
release.yml on niansia/Merriv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
merriv-0.1.0a2.tar.gz -
Subject digest:
bf1ab9f3f85ee1ad40f94d6f1e623f101c787d1b201c13f50c83d6d4f61af865 - Sigstore transparency entry: 2650215827
- Sigstore integration time:
-
Permalink:
niansia/Merriv@cff5951cdd25183cf3da9fe3cfa4ddd95b58a028 -
Branch / Tag:
refs/tags/v0.1.0a2 - Owner: https://github.com/niansia
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cff5951cdd25183cf3da9fe3cfa4ddd95b58a028 -
Trigger Event:
push
-
Statement type:
File details
Details for the file merriv-0.1.0a2-py3-none-any.whl.
File metadata
- Download URL: merriv-0.1.0a2-py3-none-any.whl
- Upload date:
- Size: 130.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62867b3681ed5340036316bc47125873493c96563471f65051eec2f5a855aa60
|
|
| MD5 |
a4bccf245adbf352fd2805530cf7584d
|
|
| BLAKE2b-256 |
8c2e2897dbf7131485e5410636efdb8897daa72f7052c23d943842b1830a2a96
|
Provenance
The following attestation bundles were made for merriv-0.1.0a2-py3-none-any.whl:
Publisher:
release.yml on niansia/Merriv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
merriv-0.1.0a2-py3-none-any.whl -
Subject digest:
62867b3681ed5340036316bc47125873493c96563471f65051eec2f5a855aa60 - Sigstore transparency entry: 2650215895
- Sigstore integration time:
-
Permalink:
niansia/Merriv@cff5951cdd25183cf3da9fe3cfa4ddd95b58a028 -
Branch / Tag:
refs/tags/v0.1.0a2 - Owner: https://github.com/niansia
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cff5951cdd25183cf3da9fe3cfa4ddd95b58a028 -
Trigger Event:
push
-
Statement type: