configs:
- config_name: default
data_files:
- split: train
path: data.jsonl
license: cc-by-4.0
language:
- en
pretty_name: SCBE Governance Receipts v1
tags:
- scbe
- governance
- hyperbolic-geometry
- jepa
- safety
- hierarchical-jepa
- experimental
size_categories:
- n<1K
task_categories:
- text-classification
- other
Status: experimental. Experiment-specific slice. Primary public dataset: scbe-aethermoore-training-data.
SCBE Governance Receipts v1
Schema: scbe_governed_dataset_v1
Receipt schema: scbe_governance_receipt_v1
Built: 2026-05-04T23:45:37Z
Rows: 40
Dataset ID: scbe-governance-receipts-v1
What this is
A governed dataset where every row carries a full 34-field SCBE governance receipt (poly-embedded JEPA fingerprint + tri-vector cross-braid hash + Sacred Egg ring seal + tri-chromatic signed-cone governance + hierarchical-JEPA hyperbolic loss numbers).
Every row is independently verifiable: re-run the SCBE pipeline on
row.content, recompute row_sha256(content, receipt), and confirm
the digest matches.
Label breakdown
adversarial: 20benign: 20
Per-row schema
| field | type | meaning |
|---|---|---|
content |
string | original input text |
label |
string | caller-supplied label or unlabeled |
governance_receipt |
object | 34-field SCBE receipt (see below) |
row_sha256 |
string | SHA-256 of (content, canonical receipt JSON) |
Dataset files
data.jsonl— governed rowsdatacard.json— machine-readable schema and use notesmanifest.json— build-time hashes fordata.jsonlanddatacard.jsonREADME.md— this card
Governance receipt fields
binary_packet_sha256braid_exponent_sumbraid_word_lengthcone_governancecone_hashcone_interference_scorecone_joint_embeddingcone_joint_shadowcone_plateau_imbalancecone_positive_countcone_shadow_countcone_triple_intersection_scorecone_triple_shadow_scorecrossing_countdecisionegg_seal_sha3governance_statehjepa_hashhjepa_l1_losshjepa_l2_losshjepa_l3_losshjepa_total_losshjepa_triangle_residualmirror_tritordered_hashprimary_tritring_indexring_radiusschema_versionsecurity_actiontiletonguetriadic_stabletrust_level
Reproducibility note (added 2026-07-29)
The verification snippet below cannot be run from this repository or from the
public SCBE-AETHERMOORE repo as written. All four modules named under Stack
provenance were searched for by exact filename across the whole public tree and
none is present:
python/scbe/poly_embedded_jepa.py- not foundpython/scbe/tri_braid_embedding.py- not foundpython/scbe/tri_cone_embedding.py- not foundpython/scbe/hjepa_embedding.py- not found
The rows themselves are intact and self-consistent: 40/40 share one top-level
key-set and one nested governance_receipt key-set, and every row carries its
own row_sha256. What is missing is the published implementation needed to
recompute that digest independently, so a third party currently cannot verify a
row offline. Treat the receipt fields as a documented schema, not as
independently reproducible output, until the implementation is published.
How to verify a row offline
from python.scbe.tri_braid_embedding import governance_receipt
import json, hashlib
def verify(row):
expected = governance_receipt(row['content'])
canonical = json.dumps(expected, ensure_ascii=True, sort_keys=True, separators=(',', ':'))
digest = hashlib.sha256(f"{row['content']}|{canonical}".encode()).hexdigest()
return digest == row['row_sha256']
License
CC-BY-4.0 with SCBE attribution. The receipt schema is open; any third party can re-implement the SCBE pipeline against the public specification and produce compatible receipts.
Intended use
- Governance receipt verification examples
- Safety and provenance dataset demonstrations
- SCBE training and audit pipeline smoke tests
Limitations
- Small reference bundle, not a broad production safety corpus
- Rows are fixture-derived unless rebuilt with an external source corpus
- Receipt verification requires the matching SCBE implementation version
Publish command
hf upload issdandavis/scbe-governance-receipts-v1 dataset/scbe-governance-receipts-v1 . --repo-type dataset --commit-message "publish: governed receipts"
Stack provenance
- Tile-level (L1):
python/scbe/poly_embedded_jepa.py - Tongue-level (L2):
python/scbe/tri_braid_embedding.py - Chromatic-level (L3):
python/scbe/tri_cone_embedding.py - H-JEPA wrapper:
python/scbe/hjepa_embedding.py