The dataset could not be loaded because the splits use different data file formats, which is not supported. Read more about the splits configuration. Click for more details.
Error code: FileFormatMismatchBetweenSplitsError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Loko Release Gate Records
Public, third-party anchored Release Gate decision artifacts for pinned vision model revisions.
This repository publishes two runs that demonstrate the difference between:
- Run A (Baseline Repro): reproducible benchmark surface on COCO
- Run B (Production Gate): class-scoped operational gating under low-light conditions
This is not a benchmark leaderboard claim. It is an audit-friendly release record pattern.
Note: Hugging Face’s Dataset Viewer may show a warning because this repo is an artifact record store (reports, manifests, receipts), not a dataset split intended for browsing.
What a “Release Gate Record” contains
Each run includes:
- Pinned model repo + exact commit revision
- Pinned dataset repo + exact commit revision
- Declared release predicate (the gate)
- Deterministic PASS/FAIL container (certificate)
- Metrics JSON (filled when the run is executed)
- Offline HTML report + receipt bundle
- Checkout manifest + signature
- Full folder manifest (hash index)
Runs
Run A — Baseline Repro (COCO)
Goal: Bind a release decision to pinned, reproducible inputs on a benchmark surface.
- Model:
Ultralytics/YOLOv5@553ca28641b8c2129596b0ecc50fc0902f7bd7ac(yolov5s.pt) - Dataset:
rafaelpadilla/coco2017@7d5136d6952da2df12d99106e2cce2a65324617d(split:validation) - Gate:
coco_baseline_map50_floor_v1(mAP@0.50 >= 0.36)
Artifacts:
- Report: run-a-baseline-repro/report.html
- Certificate: run-a-baseline-repro/release_certificate.json
- Metrics: run-a-baseline-repro/evaluation_metrics.json
- Checkout manifest: run-a-baseline-repro/checkout_manifest.json
- Signature: run-a-baseline-repro/checkout_manifest.sig
- Full hash index: run-a-baseline-repro/loko_manifest.json
Run B — Production Gate (Low-Light, class-scoped)
Goal: Demonstrate production-style gating: PASS/FAIL is defined by operational predicates, not benchmark bragging.
- Model:
Ultralytics/YOLOv5@553ca28641b8c2129596b0ecc50fc0902f7bd7ac(yolov5s.pt) - Dataset:
SatwikKambham/ex-dark@f2a15374dae8c90395f461c5ba0546c034751665 - Scope: class-scoped to
person - Gate:
exdark_person_operational_gate_v2_strictat confidence 0.5- precision >= 0.85
- recall >= 0.80
Artifacts:
- Report: run-b-production-gate/report.html
- Certificate: run-b-production-gate/release_certificate.json
- Metrics: run-b-production-gate/evaluation_metrics.json
- Checkout manifest: run-b-production-gate/checkout_manifest.json
- Signature: run-b-production-gate/checkout_manifest.sig
- Full hash index: run-b-production-gate/loko_manifest.json
Quick verify in 30 seconds
- Open the certificate and confirm the decision:
- Run A: PASS
- Run B: FAIL
- Confirm the receipt bundle is fully indexed:
checkout_manifest.jsonlistsreceipt_bundle/**with sha256 + sizes
- Confirm the folder is fully indexed:
loko_manifest.jsonlists the full run folder (including the manifest + signature files) with sha256 + sizes
- Confirm the signer identity is pinned:
PUBKEY_PIN.txtcontains the pinned pubkey hashoperator_ed25519_public.pemprovides the demo public key used for signing
How to fetch this repo by revision
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="LokoAI/release-gate-records",
repo_type="dataset",
revision="main"
)
Offline package (ZIP + .loko payload)
This repo also publishes a single Windows zip that contains:
- the two
.lokopayloads (Run A + Run B) - their
.loko.sha256receipts - a lightweight verifier script
sha256.txtfor the zip contentsRUNME.txt
Download:
ReleaseGate_win.zipReleaseGate_win.zip.sha256
Windows (PowerShell)
Expand-Archive .\ReleaseGate_win.zip -DestinationPath .\ReleaseGate -Force
# Verify Run A
python .\ReleaseGate\bin\verify_release_gate_loko.py --loko .\ReleaseGate\incoming\run-a-baseline-repro.loko --out .\REVIEW_run_a --pubkey-pin 1f61014bc8bf5bedc9389c5950d9a46c703c8d91701d762b892fd1a924dcd367
# Verify Run B
python .\ReleaseGate\bin\verify_release_gate_loko.py --loko .\ReleaseGate\incoming\run-b-production-gate.loko --out .\REVIEW_run_b --pubkey-pin 1f61014bc8bf5bedc9389c5950d9a46c703c8d91701d762b892fd1a924dcd367
Verification performs:
.loko.sha256validation- Safe extraction
- Pinned signer identity check (pubkey pin)
checkout_manifest.sigsignature validationloko_manifest.jsonfile index verification (sha256 + size)
Expected result:
- Run A → PASS
- Run B → FAIL (strict operational gate not satisfied)
- Downloads last month
- 56