Trust Center · LQS Verified v3.1

The procurement trust layer for training data.

Cryptographically-signed certificates, public verification endpoints, published methodology, an auditable revocation registry. Everything a Fortune 500 procurement team, auditor, or standards reviewer needs to cite LabelSets in a contract.

Verify a cert → Get the public key Methodology
Scorer version
LQS v3.1
19 dims · oracle consensus
Oracles in consensus
7
5 classical + 2 transformer
Public key fingerprint
aa4c07…e2ea
Ed25519 · rotating 2027
Verify endpoint SLA
99.9%
No auth · free · public
01 · Public API

Three endpoints, zero auth.

The procurement-side verification surface. Any auditor, regulator, or buyer can call them from curl, a browser, or any HTTP client without creating an account.

GET
/api/verify-lqs-cert/:hash

Look up and verify a cert by its SHA-256 hash. Returns valid / revoked / tampered / not_found with the full payload.

GET
/api/lqs-public-key

Ed25519 public key in PEM format. Use for offline signature verification in air-gapped environments.

GET
/api/health

Liveness probe for SLA monitoring. Plug into your uptime dashboard.

02 · Cryptography

The Ed25519 public key.

Every LQS cert is signed with a single LabelSets Ed25519 keypair. Fetch the public key once, cache it, and re-verify any cert offline without trusting our infrastructure. If we go offline tomorrow, every cert ever issued stays verifiable.

Current key LabelSets LQS Signing Key (v1)
Loading public key from /api/lqs-public-key…
Algorithm · Ed25519 Fingerprint · aa4c070af907e2ea Format · PEM / SPKI
03 · SDK

Verify online or offline from Python.

The labelsets pip package ships three operations: online cert lookup, public-key fetch, and fully offline Ed25519 signature verification.

Online

Fetch + verify via API

pip install labelsets

import labelsets
r = labelsets.verify_lqs_cert(cert_hash)
print(r.valid, r.composite, r.tier)
# True 87 gold
Offline

Verify without network access

pip install labelsets[offline]

import labelsets
pk = labelsets.get_lqs_public_key()
ov = labelsets.lqs_offline_verify(cert, pk)
# True — signature verified locally
CI / CD Gate training pipelines on LQS cert
GitHub →

Drop-in GitHub Action that fails CI if training data doesn't meet LQS thresholds. Also available for Airflow, MLflow, Weights & Biases, DBT, and Kubeflow.

- uses: labelsets/lqs-verify@v1
  with:
    cert_hash: ${{ vars.TRAINING_DATA_LQS_CERT }}
    min_score: 85
    min_ci_low: 82
    reject_contamination_tier: contaminated,severe
    reject_oracle_tier: brittle,divergent
04 · Cert schema

What a LabelSets cert contains.

A cert is a canonical-JSON payload + base64 Ed25519 signature + SHA-256 payload hash. Sorted-keys + whitespace-free UTF-8 canonicalization is identical between signer and verifier.

{
  "v": "1.0",
  "issuer": "Labelsets LLC",
  "methodology_url": "https://labelsets.ai/lqs-methodology#v3.1",
  "dataset_id": "d9e75396-2629-44dc-a609-4280d5571038",
  "scored_at": "2026-04-23T00:59:45.219Z",
  "scorer_version": "3.1",
  "composite": 87,
  "composite_ci_95": { "low": 85.2, "high": 88.8, "se": 0.9 },
  "tier": "gold",
  "task_conditional": { "task": "binary_classification", "task_source": "data_driven" },
  "oracle_consensus": { "agreement_score": 92, "tier": "consensus", "kappa_fleiss": 0.84 },
  "contamination": { "score": 95, "tier": "clean", "worst_benchmark": "MMLU" },
  "downstream_projection": { "tier": "learning", "headroom_score": 45 }
}

Ready to cite LabelSets in procurement?

Legal and ML teams: we'll walk you through the Ed25519 cert, the methodology whitepaper, BAA/DPA templates, and how to reference LQS in your SR 11-7, EU AI Act Art. 10, or HHS §1557 paperwork.