jzloko commited on
Commit
a898930
·
verified ·
1 Parent(s): edf2477

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -11
README.md CHANGED
@@ -17,6 +17,8 @@ This repository publishes two runs that demonstrate the difference between:
17
 
18
  This is not a benchmark leaderboard claim. It is an audit-friendly release record pattern.
19
 
 
 
20
  ---
21
 
22
  ## What a “Release Gate Record” contains
@@ -26,8 +28,10 @@ Each run includes:
26
  - Pinned **dataset repo + exact commit revision**
27
  - Declared **release predicate** (the gate)
28
  - Deterministic **PASS/FAIL** container (certificate)
29
- - Metrics JSON placeholder (filled when the run is executed)
30
- - Paths reserved for a portable offline report and receipt bundle
 
 
31
 
32
  ---
33
 
@@ -41,7 +45,14 @@ Each run includes:
41
  - Dataset: `rafaelpadilla/coco2017` @ `7d5136d6952da2df12d99106e2cce2a65324617d` (split: `validation`)
42
  - Gate: `coco_baseline_map50_floor_v1` (mAP@0.50 >= 0.36)
43
 
44
- Folder: `run-a-baseline-repro/`
 
 
 
 
 
 
 
45
 
46
  ---
47
 
@@ -52,19 +63,40 @@ Folder: `run-a-baseline-repro/`
52
  - Model: `Ultralytics/YOLOv5` @ `553ca28641b8c2129596b0ecc50fc0902f7bd7ac` (`yolov5s.pt`)
53
  - Dataset: `SatwikKambham/ex-dark` @ `f2a15374dae8c90395f461c5ba0546c034751665`
54
  - Scope: class-scoped to `person`
55
- - Gate: `exdark_person_operational_gate_v1` at confidence 0.5
56
- - precision >= 0.70
57
- - recall >= 0.60
58
-
59
- Folder: `run-b-production-gate/`
 
 
 
 
 
 
 
60
 
61
  ---
62
 
63
- ## How to verify the pinned inputs
 
 
 
 
 
 
 
64
 
65
- You can fetch an exact revision of a repo using the `revision` parameter.
 
 
 
 
 
 
 
66
 
67
- ### Download this repo at a specific commit
68
 
69
  ```python
70
  from huggingface_hub import snapshot_download
 
17
 
18
  This is not a benchmark leaderboard claim. It is an audit-friendly release record pattern.
19
 
20
+ > 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.
21
+
22
  ---
23
 
24
  ## What a “Release Gate Record” contains
 
28
  - Pinned **dataset repo + exact commit revision**
29
  - Declared **release predicate** (the gate)
30
  - Deterministic **PASS/FAIL** container (certificate)
31
+ - Metrics JSON (filled when the run is executed)
32
+ - Offline HTML report + receipt bundle
33
+ - Checkout manifest + signature
34
+ - Full folder manifest (hash index)
35
 
36
  ---
37
 
 
45
  - Dataset: `rafaelpadilla/coco2017` @ `7d5136d6952da2df12d99106e2cce2a65324617d` (split: `validation`)
46
  - Gate: `coco_baseline_map50_floor_v1` (mAP@0.50 >= 0.36)
47
 
48
+ Artifacts:
49
+ - Folder: [run-a-baseline-repro/](run-a-baseline-repro)
50
+ - Report: [run-a-baseline-repro/report.html](run-a-baseline-repro/report.html)
51
+ - Certificate: [run-a-baseline-repro/release_certificate.json](run-a-baseline-repro/release_certificate.json)
52
+ - Metrics: [run-a-baseline-repro/evaluation_metrics.json](run-a-baseline-repro/evaluation_metrics.json)
53
+ - Checkout manifest: [run-a-baseline-repro/checkout_manifest.json](run-a-baseline-repro/checkout_manifest.json)
54
+ - Signature: [run-a-baseline-repro/checkout_manifest.sig](run-a-baseline-repro/checkout_manifest.sig)
55
+ - Full hash index: [run-a-baseline-repro/loko_manifest.json](run-a-baseline-repro/loko_manifest.json)
56
 
57
  ---
58
 
 
63
  - Model: `Ultralytics/YOLOv5` @ `553ca28641b8c2129596b0ecc50fc0902f7bd7ac` (`yolov5s.pt`)
64
  - Dataset: `SatwikKambham/ex-dark` @ `f2a15374dae8c90395f461c5ba0546c034751665`
65
  - Scope: class-scoped to `person`
66
+ - Gate: `exdark_person_operational_gate_v2_strict` at confidence 0.5
67
+ - precision >= 0.85
68
+ - recall >= 0.80
69
+
70
+ Artifacts:
71
+ - Folder: [run-b-production-gate/](run-b-production-gate)
72
+ - Report: [run-b-production-gate/report.html](run-b-production-gate/report.html)
73
+ - Certificate: [run-b-production-gate/release_certificate.json](run-b-production-gate/release_certificate.json)
74
+ - Metrics: [run-b-production-gate/evaluation_metrics.json](run-b-production-gate/evaluation_metrics.json)
75
+ - Checkout manifest: [run-b-production-gate/checkout_manifest.json](run-b-production-gate/checkout_manifest.json)
76
+ - Signature: [run-b-production-gate/checkout_manifest.sig](run-b-production-gate/checkout_manifest.sig)
77
+ - Full hash index: [run-b-production-gate/loko_manifest.json](run-b-production-gate/loko_manifest.json)
78
 
79
  ---
80
 
81
+ ## Quick verify in 30 seconds
82
+
83
+ 1) Open the **certificate** and confirm the decision:
84
+ - Run A: PASS
85
+ - Run B: FAIL
86
+
87
+ 2) Confirm the **receipt bundle** is fully indexed:
88
+ - `checkout_manifest.json` lists `receipt_bundle/**` with sha256 + sizes
89
 
90
+ 3) Confirm the folder is fully indexed:
91
+ - `loko_manifest.json` lists the full run folder (including the manifest + signature files) with sha256 + sizes
92
+
93
+ 4) Confirm the signer identity is pinned:
94
+ - `PUBKEY_PIN.txt` contains the pinned pubkey hash
95
+ - `operator_ed25519_public.pem` provides the demo public key used for signing
96
+
97
+ ---
98
 
99
+ ## How to fetch this repo by revision
100
 
101
  ```python
102
  from huggingface_hub import snapshot_download