feat(jepa_t_ingest): Wave-14a L-S50 — plaintext → ternary triplet pipeline for JEPA-T#811
Open
gHashTag wants to merge 1 commit into
Open
feat(jepa_t_ingest): Wave-14a L-S50 — plaintext → ternary triplet pipeline for JEPA-T#811gHashTag wants to merge 1 commit into
gHashTag wants to merge 1 commit into
Conversation
Closes #807 Add `crates/jepa_t_ingest/` — a Rust-only (R1 CROWN) crate that streams plaintext corpora into ternary-quantized triplet sequences for JEPA-T training on Trinity silicon. ## Quantizer — Wave-9b RTL byte-for-byte match pub fn quantize_phi_prior(fp_q15: i16) -> i8 Threshold: φ⁻² in Q1.15 = 12533 (0x30F4) if fp_q15 >= +12533 → +1 if fp_q15 <= -12533 → -1 else → 0 ## Deliverables - Cargo.toml (edition 2021, Apache-2.0) - src/lib.rs (quantize_phi_prior, IngestConfig, Triplet, ingest_text) - src/bin/jepa_t_ingest.rs (CLI: --input corpus.txt --output triplets.bin) - tests/quantize.rs (boundary: ±12532→0, ±12533→±1, 0, ±0x7FFF; exhaustive 65536-input scan) - tests/ingest.rs (golden corpus byte-compare, 3 triplets, 192 bytes each) - README.md ## Test results cargo test -p jepa_t_ingest: 32 tests, 0 failures cargo build --release --bin jepa_t_ingest: success Signed-off-by: Dmitrii Vasilev <admin@t27.ai>
This was referenced May 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #807
Summary
Adds
crates/jepa_t_ingest/— a Rust-only (R1 CROWN) crate that streams plaintext corpora into ternary-quantized triplet sequences for JEPA-T training on Trinity silicon (Wave-14a L-S50).Quantizer — Wave-9b RTL byte-for-byte match
Threshold: φ⁻² in Q1.15 = 12533 (0x30F4):
fp_q15 >= +12533→+1fp_q15 <= -12533→-10Deliverables
Cargo.tomlsrc/lib.rsquantize_phi_prior,IngestConfig,Triplet,ingest_textsrc/bin/jepa_t_ingest.rs--input corpus.txt --output triplets.bintests/quantize.rstests/ingest.rsREADME.mdcargo test -p jepa_t_ingestoutputQuantizer Parity Confirmation
R1 CROWN
No Python files in
crates/jepa_t_ingest/. Rust ONLY.References
phi_prior_quantizer.v