What Is AI Model Provenance, and Why Does It Matter?

Provenance, in the general sense, means being able to trace an artifact's origin and verify it hasn't been altered since. Applied to AI model weights specifically, it means being able to answer: who published this checkpoint, when, and is the copy I have identical to what they published?

Why it matters

A few concrete situations where this stops being academic:

The three pieces Weight Registry provides

Integrity -- cryptographic hashing that fingerprints the exact bytes of the weights, config, and tokenizer files. Timestamping -- an attestation recording that fingerprint and a claimed release date at a specific, provable point in time. Permissionless verification -- anyone can check both independently, without needing an account, a relationship with Weight Registry, or trust in any single intermediary.

What this doesn't cover

"Model provenance" is sometimes used in machine learning research to mean tracing a model's full training lineage -- what data it was trained on, what earlier checkpoints or models it derived from. Weight Registry addresses artifact-level provenance (the released files themselves), not training-data lineage, which is a separate and much harder problem.