Paper 1 artifact status. This repository is preserved as the research artifact for “Leakage-Aware Probing of Arabic Morphology in Small Language Models.” Treat paper outputs, figures, tables, datasets, and probe reports as citable artifacts; do not change them casually. Future Ember backend/refactor work, including further llama.cpp integration, should happen in a separate repository.
a lightweight research layer for hidden-state extraction, leakage-aware probing, and reproducible morphology experiments over GGUF models. Ember keeps an inspectable Rust inference path for validation. This Paper 1 artifact includes some backend-ready scaffolding, but ongoing external-backend work should happen outside this repository.
research write-up: https://voidwest.dev/ember
Sarf Atlas has moved to its own repository: https://github.com/voidwest/sarf-atlas
Use the standalone package for backend-agnostic Arabic morphology workflow scaffolding:
pip install sarf-atlasEmber is a research layer for hidden-state extraction, leakage-aware probing, and reproducible morphology experiments over GGUF models. The native Rust path remains an inspectable reference backend for small-to-medium models and validation work.
Ember is not trying to beat llama.cpp on throughput, model coverage, or production readiness. llama.cpp is the better default if the goal is broad, high-performance local inference. Future Ember backend work should use llama.cpp where that is the right tool, while keeping dataset handling, prompt construction, token-position selection, hidden-state artifact schemas, probes, baselines, metrics, reports, and validation in Ember.
The current research direction is Arabic morphology probing and validation.
This repo includes a local Python pipeline for preparing CAMELMORPH/CAMeL-style Arabic morphology exports for root/pattern probing and later SFT experiments. It produces canonical morphology JSONL, SFT chat JSONL, probing JSONL, deterministic held-out splits, stats, and leakage validation reports without requiring CAMeL Tools at runtime.
Optional local install:
python3 -m venv .venv
.venv/bin/python -m pip install -e ".[dev]"
.venv/bin/pytest -qRun the tiny bundled sample:
python3 scripts/arabic_morph_dataset.py run-config --config configs/arabic_morph_sample.tomlRun the larger imbalanced fixture:
python3 scripts/generate_arabic_morph_fixture.py \
--output data/arabic_morph_sample/camelmorph_imbalanced_sample.jsonl \
--seed 17
python3 scripts/arabic_morph_dataset.py run-config --config configs/arabic_morph_imbalanced_sample.tomlTo use real data, export CAMELMORPH/CAMeL/CALIMAStar analyses to JSONL, CSV, or
TSV with fields such as word, diac, lex, root, pattern,
pattern_concrete, pos, and feature columns like gen, num, per, asp,
vox, mod, cas, and stt. Then copy
configs/arabic_morph_sample.toml, point input_path, output_dir, and
source_name at the export, and choose a split strategy such as
root_heldout, abstract_pattern_heldout, concrete_pattern_heldout,
root_pattern_heldout, or lemma_heldout.
See docs/dataset_pipeline.md for the full input format, output schemas, split guarantees, CLI commands, and validation reports.
Use these levels when interpreting Ember runs:
- smoke: structural execution only. The command ran, loaded artifacts, and produced output. This is not numerical validation or output-quality evidence.
- golden logits: output-logit comparison against a trusted reference for the same model, tokenizer, prompt, and quantization path.
- activation reference checks: internal hidden-state comparison against a trusted implementation. This is required before treating layer geometry as numerically validated.
- probes: linear or MLP classifiers over cached hidden states. These show decodability or recoverability, not causal use.
- interventions: causal tests that first verify a probe-score drop after removing or perturbing a direction, then measure logit or generation effects.
| architecture | smoke | golden logits | activation reference | probe runs | status |
|---|---|---|---|---|---|
| gpt-2 | structural smoke works when local GGUF is present | none | none | not a standard Arabic morphology run yet | loader baseline; negative-control work pending |
| llama | local/cloud structural smokes and probe extraction | pending | pending | preliminary LLaMA 1B/3B/8B decoder probe runs | research findings are preliminary until references and reports are complete |
| qwen2.5 | selected warning-prone smokes through llama-family path | none | none | pending validation | experimental; do not treat as quality-compatible |
| qwen3 | Qwen3 0.6B smoke/probe paths run locally | pending target | pending | Qwen3 0.6B local probe run exists | promising engineering path, not yet numerically validated |
| gemma4 | local BOS smoke and llama.cpp reference comparison run | final-logit cosine ~0.87; not a golden pass | per-layer comparison pipeline operational; L0 attn_norm bit-identical | pending full runs | structural fixes applied, but the remaining numerical gap still prevents a parity claim; RMSNorm amplification is the current working explanation |
| hf encoders | external Hugging Face extraction path works for mBERT smoke | not applicable to Ember GGUF numerics | external stack not activation-checked here | mBERT PADT smoke; full encoder suite pending | useful benchmark path, not an Ember inference validation result |
- gguf v3 loader: reads f32, f16, bf16, and q8_0 tensors. File-loaded q8_0 weights retain shared ranges into a read-only mmap instead of being copied into a second allocation; f16 and bf16 tensors are materialized as f32.
- packed q8_0 matmul: q8_0 weights remain block-compressed and activations are quantized once per row. Decode uses runtime-dispatched scalar, AVX2, or AVX-512 VNNI Q8×Q8 integer-dot kernels, while prompt prefill uses tiled multi-row kernels and Rayon scheduling.
- shared projection packing: Q/K/V and gate/up projections can reuse one packed activation buffer when their weights are q8_0.
- backend trait: model code is generic over a
Backendtrait for linear ops, embeddings, and element-wise math - swap cpu for gpu later without rewriting those paths. The CPU attention path uses SIMD inner loops and Rayon above measured work thresholds. - execution backend interface: extraction can now be routed through a model
execution backend.
nativewraps Ember's Rust inference path;llama-cppis reserved for a patched/custom external extraction binary and currently errors clearly as not implemented. - explicit memory: pre-allocated f16 kv caches, context-sized prompt-only caches, and explicit tensor ownership make inference memory use visible and easy to profile.
- alloc-first design: core tensor types and model code avoid
stdwhere practical, usingallocfor vec-backed storage. - hidden-state probing: extract per-layer activations at any token position.
probe mode (
--probe) feeds stimuli through the model and saves full hidden-state tensors as.npyfor downstream analysis. - probing pipeline: python scripts for linear probes (with task-specific splits, control tasks, and selectivity), CCA, RSA, divergence analysis, cross-model comparison plots, and tokenizer fertility analysis.
| CLI architecture | Supported model family | Status and boundaries |
|---|---|---|
gpt2 |
GPT-2 GGUF | baseline generation and tensor tests; experiment hooks are not integrated |
llama |
dense LLaMA-family decoders | generation, KV-cached decode, tracing, extraction, and both built-in experiments |
qwen3 |
Qwen3 dense decoders | explicit split-half RoPE and pre-RoPE QK normalization; generation, tracing, extraction, and both experiments |
qwen3 |
Qwen2/Qwen2.5 metadata through the shared loader | experimental; tokenizer and real-model validation remain model-specific |
gemma4 |
dense text-only Gemma 4 | generation, tracing, extraction, packed gate/up dispatch, and both experiments; no MoE or multimodal path |
The GGUF loader accepts these tensor encodings:
| GGUF tensor type | In-memory treatment | CPU execution |
|---|---|---|
| F32 | materialized as f32 | generic f32 kernels |
| F16 | converted once to f32 while loading | generic f32 kernels |
| BF16 | converted once to f32 while loading | generic f32 kernels |
| Q8_0 | retained block-compressed, mmap-backed for file loads | scalar/AVX2/AVX-512 decode and tiled/packed prefill dispatch |
Other quantization formats, including K-quants, are not supported. A GGUF may mix the listed types, as real models commonly do for norms, embeddings, and linear weights. “Supported” here means Ember has an execution path; external golden-logit or activation-reference status is tracked separately in the validation tables below.
- systems programming in rust: manual memory layout for the kv cache
(
[layer][head][pos][head_dim]), explicit stride math for tensor indexing, and scoped allocations that can be profiled and optimized directly. - generic backend architecture: the transformer is written against a
Backendtrait - the same model code works on cpu today and could run on gpu tomorrow without modification. - ml fundamentals: causal multi-head attention with kv caching, numerically stable softmax (handles all-masked rows), layer norm, gelu activation, top-k/top-p sampling.
- file format parsing: gguf v3 loader with f32, f16, bf16, and q8_0 quantization support.
- memory-conscious inference: q8_0 weights stay mapped in their compressed representation, tied q8_0 embeddings can be reused directly as the LM head, and K/V state is stored as f16.
- edge case handling: uniform fallback when every logit is -inf, categorical sampling with inverse cdf, nucleus cutoff logic.
cargo run --release -- --model gpt2.Q8_0.gguf --prompt "hello"Backend-ready hidden-state extraction uses a declarative config. Save the
minimal example below as extract.toml, then run:
cargo run --release -- extract --backend native --config extract.tomlMinimal config shape:
run_id = "qwen3_word_probe_smoke"
model_path = "model.gguf"
architecture = "llama"
backend = "native"
prompt_template = "Analyze the word: {word}"
input_jsonl_path = "data/prompts.jsonl"
output_dir = "runs"
layers = [0, 8, 16]
token_position = "word_final_subtoken"
batch_size = 1
dtype = "f32"
output_format = "npy"The run writes the frozen Ember artifact contract under
runs/qwen3_word_probe_smoke/: manifest.json, samples.jsonl,
tokenization.jsonl, positions.jsonl, per-layer layers/layer_XXXX.npy
files, checksums.json, and report.json. See
docs/artifact_contract.md.
Validate a single artifact run with cargo run -- validate-run <run-dir>.
Backend-to-backend comparisons use validate-backends, and external parity
audits use gguf-parity-tools; see
docs/backend_validation.md.
llama-cpp config validation is wired, but hidden-state extraction still needs
the external patched/custom llama.cpp binary integration. That backend must
write the same artifact contract as native.
The external-process backend is available as backend plumbing:
cargo run --release -- extract \
--backend llama-cpp-external \
--llama-bin ./build/bin/llama-ember-extract \
--model ./models/qwen3-0.6b-q8_0.gguf \
--samples ./data/samples.jsonl \
--out runs/test-qwen-llama-backendFor now llama-cpp-external supports tokenization-only smoke plumbing when
paired with an external helper. Hidden-state layer requests are rejected until
the patched extractor contract is implemented.
| flag | default | description |
|---|---|---|
-m, --model |
gpt2.Q8_0.gguf |
path to gguf model file |
--arch |
gpt2 |
model architecture: gpt2, llama, qwen3, or gemma4 |
--tokenizer |
arch-dependent | path to tokenizer.json (tokenizer-gpt2.json for gpt-2, tokenizer.json for llama/qwen2.5, tokenizer-qwen3.json for qwen3, tokenizer-gemma4.json for gemma 4) |
-p, --prompt |
The |
text prompt to complete |
-n, --max-tokens |
20 |
tokens to generate |
--max-seq-len |
model metadata | cap usable context length below the model metadata value |
-t, --temperature |
0.8 |
sampling temp (0 = greedy) |
--top-k |
(none) | top-k sampling |
--top-p |
(none) | nucleus sampling |
-i, --interactive |
(none) | repl mode after first prompt |
--demo |
(none) | fixed prompts with timing and deterministic output |
--delay-ms |
0 |
delay between tokens in demo mode (0 = instant) |
--benchmark |
(none) | print prefill/decode timing to stderr |
--zero-layer-output |
(none) | experimental `LAYER:attention |
--activation-stats |
(none) | observation-only experiment that writes activation norms and fingerprints to JSON |
--trace |
(none) | enable per-operation execution tracing (ops) |
--trace-out |
stderr | write trace JSON to a file |
--trace-values |
none |
optionally record output norms and fingerprints (summary) |
--trace-run-metadata |
(none) | attach CPU, thread, governor, and commit metadata to traces |
--dump-logits |
(none) | write last-prompt logits for --prompt to .npy and exit |
--dump-layers |
(none) | write Gemma 4 last-token layer states as flat native-endian f32 |
--write-run-manifest |
(none) | write a reproducibility manifest with model/tokenizer hashes, git commit, compiler, Rayon, and CPU feature data |
--record-model-sha256 |
(none) | compute and record model file sha256 in probe metadata |
--dump-gguf-metadata |
(none) | write parsed GGUF metadata to JSON |
--probe |
(none) | run probe mode: extract hidden states from each block |
--probe-stimuli |
stimuli/nonce_root_pattern.json |
path to stimuli json for probe mode |
--probe-output |
data/activations.npy |
output path for probe activations (.npy) |
--probe-template |
en_zero |
stimulus prompt key to probe (en_zero, en_one, ar_zero, ar_one, or generated controls) |
--probe-templates |
(none) | comma-separated prompt template keys for batch probe extraction |
--probe-position |
last |
hidden-state position to pool: last, root, pattern, or prompt_mean |
--probe-positions |
(none) | comma-separated hidden-state positions for batch probe extraction |
--probe-output-dir |
data/probe_matrix in batch mode |
output directory for batch probe extraction |
--probe-output-prefix |
probe |
output filename prefix for batch probe extraction |
--probe-generate-tokens |
16 |
continuation length for probe behavioral scoring |
--probe-limit |
(none) | cap probe extraction to the first N stimuli for smoke tests |
Ember v0.1 has an intentionally unstable, statically compiled experiment API. It intentionally ships with two proof points: one observation experiment and one intervention experiment.
To observe execution without changing it, record activation norms and fingerprints:
target/release/ember \
--arch qwen3 \
--model Qwen3-0.6B-Q8_0.gguf \
--tokenizer tokenizer-qwen3.json \
--prompt "The capital of France is" \
--max-tokens 4 \
--temperature 0 \
--activation-stats activation-stats.json
jq '.records[] | select(.stage == "after_layer") |
{phase, layer_index, sequence_length, l2_norm, fingerprint}' \
activation-stats.jsonThe artifact is observation-only: generated output remains numerically identical, although scanning activations and writing JSON adds work. To perform an intervention instead, zero one selected layer contribution:
target/release/ember \
--arch qwen3 \
--model Qwen3-0.6B-Q8_0.gguf \
--tokenizer tokenizer-qwen3.json \
--prompt "The capital of France is" \
--temperature 0 \
--zero-layer-output 4:mlpExperiment notices and summaries go to stderr; generated text keeps its normal stdout format. The two options conflict because Ember supports one active experiment per run. Active experiments do not currently participate in probes, hidden-state extraction, logits/layer dumps, demos, or benchmark subcommands. Dynamic third-party plugin loading and multiple simultaneous experiments are intentionally unsupported. See docs/experiments.md for the artifact schema, hook lifecycle, mutation boundaries, and guarantees.
For a model-only decode comparison with llama-bench, build once and exclude
loading, prefill, tokenization, and sampling on both sides:
cargo build --release
RAYON_NUM_THREADS=4 target/release/ember bench-decode \
--model models/gemma-4-E2B-it.Q8_0.gguf \
--arch gemma4 \
--tokens 128 \
--warmups 2 \
--repetitions 5The command creates a fresh cache per repetition, performs one untimed seed
evaluation, then times deterministic single-token evaluations. It emits JSON
with every timing sample, median throughput, thread count, CPU metadata, model
size, commit, and explicit timing exclusions. Use --token-id to change the
fixed input token and --max-seq-len to cap the benchmark context.
The release measurements use a fixed power policy, one worker per physical
core, warmups, retained raw samples, and alternating revision order such as
ABBA BAAB. On Intel P-state systems, verify both the selected power profile
and energy_performance_preference; the exposed scaling-governor name may
remain powersave.
powerprofilesctl set performance
taskset -c 0-3 env RAYON_NUM_THREADS=4 target/release/ember bench-decode \
--model Qwen3-0.6B-Q8_0.gguf \
--arch qwen3 \
--tokens 32 \
--warmups 2 \
--repetitions 3 \
--max-seq-len 128 \
> qwen-decode.json
taskset -c 0-3 env RAYON_NUM_THREADS=4 target/release/ember \
--model Qwen3-0.6B-Q8_0.gguf \
--tokenizer tokenizer-qwen3.json \
--arch qwen3 \
--prompt "Explain why CPU cache locality matters in transformer inference." \
--max-seq-len 128 \
--max-tokens 1 \
--temperature 0 \
--benchmark
powerprofilesctl set balancedRepeat both commands with clean binaries from revisions A and B in counterbalanced order. See the cleanup validation report and the packed Q8 note for complete protocols, correctness gates, raw-shape operator commands, and external llama.cpp reference numbers.
Trace the native generation path to stderr, or add --trace-out trace.json for
a reusable report:
RAYON_NUM_THREADS=1 target/release/ember \
--arch qwen3 \
--model Qwen3-0.6B-Q8_0.gguf \
--prompt "The capital of France is" \
--max-tokens 1 \
--temperature 0 \
--trace ops \
--trace-values summary \
--trace-run-metadataTracing is thread-local; use one Rayon thread when a complete per-operation
decode trace is more important than throughput. See TRACE.md for the event
schema, recorded operation types, and caveats.
| command | purpose |
|---|---|
extract |
write the versioned artifact contract with the native backend, or exercise the current llama.cpp backend plumbing |
native-logits-reference |
write a native logits-only artifact run from an extraction config |
validate-run |
validate checksums, metadata, row counts, and optional layer shards for one run directory |
validate-backends |
compare existing native and external artifact runs |
bench-decode |
measure model-only single-token decode and emit JSON |
cargo run --release -- --demoruns through a fixed set of prompts using greedy sampling (temperature 0)
for deterministic, repeatable output. useful for screen recordings
(asciinema, script, terminal capture) and benchmarking.
each prompt reports its completion, token counts, and per-phase timing. a summary table at the end shows aggregate throughput across all prompts.
Use the smoke wrapper for local GGUF checks instead of hand-running
/usr/bin/time -v. It records the command, model/tokenizer paths, arch, prompt,
generated token count, commit hash, host, date, raw generation text, benchmark
timing if parsed, and peak RSS under logs/.
python3 scripts/run_smoke.py --model qwen3_06b --tokens 32Run every configured model that is available locally:
python3 scripts/run_smoke.py --all --tokens 32 --continue-on-failInspect commands without running inference:
python3 scripts/run_smoke.py --all --dry-runSmoke output is structural validation only. smoke_pass means the Ember command
exited 0 and produced output; smoke_pass_generation_warning means it exited 0
but a simple repetition heuristic, or a known experimental config marker, flagged
the raw generated text. smoke_fail means the command returned nonzero or did
not produce output. Smoke tests validate model loading, tokenization, generation
execution, benchmark logging, and memory use. They are not quality benchmarks.
Quality validation requires golden-logit or reference checks against trusted
implementations for the exact model, tokenizer, prompt, and quantization path.
TPS comparisons against llama.cpp require matched hardware, model, quantization,
prompt length, decode length, thread settings, and repeated runs. Qwen2.5 is
currently experimental in Ember: it is routed through the qwen3 path, has shown
degenerate smoke generation, and should not be treated as quality-compatible
until reference checks pass.
Build a Markdown benchmark table from existing smoke summaries:
python3 scripts/summarize_smokes.py --logs logs --output data/smoke_benchmark_table.mdBenchmark decode throughput across Rayon thread counts:
python3 scripts/benchmark_threads.py \
--model qwen3_06b:Qwen3-0.6B-Q8_0.gguf \
--arch qwen3 \
--tokenizer tokenizer-qwen3.json \
--max-seq-len 128 \
--threads 1,2,4,8 \
--tokens 16 \
--output data/thread_benchmarks.jsonThe script sets RAYON_NUM_THREADS for each run and parses Ember's
--benchmark output. This is the preferred way to compare the parallel
attention and q8 decode paths because small prompts and large vocab-head
projections scale differently.
Ember can dump the final-position logits for one prompt:
cargo run --release -- \
--arch llama \
--model Llama-3.2-1B-Instruct-Q8_0.gguf \
--tokenizer tokenizer.json \
--prompt "The capital of France is" \
--dump-logits data/golden/llama32_1b_ember_logits.npy
cargo run --release -- \
--arch qwen3 \
--model Qwen3-0.6B-Q8_0.gguf \
--tokenizer tokenizer-qwen3.json \
--prompt "The capital of France is" \
--dump-logits data/golden/qwen3_06b_ember_logits.npy--dump-logits also writes *_metadata.json with Ember's token audit. The
trusted reference must provide matching token IDs, either as a reference
metadata sidecar or as a combined token audit JSON.
Compare Ember logits to a trusted .npy reference:
python3 probes/check_golden_logits.py \
--ember data/golden/qwen3_06b_ember_logits.npy \
--reference data/golden/qwen3_06b_reference_logits.npy \
--metadata data/golden/qwen3_06b_ember_logits_metadata.json \
--reference-metadata data/golden/qwen3_06b_reference_logits_metadata.json \
--label qwen3_06b \
--tokenizer tokenizer-qwen3.json \
--top-k 10 \
--topk-overlap-threshold 0.8 \
--output data/golden/qwen3_06b_golden_report.jsonBuild compact JSON and Markdown summaries from all golden reports:
python3 probes/golden_summary.py
python3 probes/golden_summary.py \
--glob 'data/golden/*golden_report.json' \
--output-json data/golden/golden_summary.json \
--output-md data/golden/golden_summary.mdThe report classifies runs as golden_pass, golden_warn, or golden_fail
using shape checks, top-1 agreement, top-k overlap, and any configured numerical
thresholds (--max-diff-threshold, --mean-diff-threshold,
--topk-overlap-threshold). Do not claim quality parity until these reports pass
for the exact artifacts being compared. golden_summary.py copies
classification/status fields from source reports only; if a report omits them,
the summary records missing rather than inferring pass/fail from metrics.
Reference logits can come from Hugging Face Transformers by loading the matching
model/tokenizer, running the same prompt with no generation, taking
outputs.logits[:, -1, :], converting to float32, and saving with
numpy.save. llama.cpp is also acceptable if a local, audited logit-dump command
or patch is available for the same model and prompt. An exact llama.cpp logit
dump command is pending in this repo; do not substitute normal generated text for
golden-logit validation.
cargo run --release -icommands inside the repl: /quit, /help, /stats.
cargo run --release -- --probe --model Llama-3.2-1B-Instruct-Q8_0.gguf --arch llamafeeds each stimulus from the stimuli json file through the model and collects
pooled per-layer hidden states at the selected prompt position. saves a 3d
.npy array (n_stimuli, n_layers, embed_dim) plus _correctness.json and
_metadata.json sidecars with next-token predictions, generated continuations,
match results, and the exact prompt template, position, model, shape, and token
selections used.
works with gpt-2, llama/qwen-family models, and dense text-only gemma 4
models through the ForwardModel trait.
batch extraction lets one model load produce a full prompt/position matrix:
cargo run --release -- \
--arch llama \
--model Llama-3.2-1B-Instruct-Q8_0.gguf \
--probe \
--probe-stimuli stimuli/nonce_root_pattern.json \
--probe-output-dir data/matrix \
--probe-output-prefix llama1b \
--probe-templates en_zero,en_one,ar_zero,ar_one \
--probe-positions last,root,pattern,prompt_mean \
--probe-generate-tokens 1when several positions are requested for the same template, extraction groups
them together. the prompt is tokenized once, the model forward pass runs once,
and pooled outputs are written separately for each requested position. this
keeps the existing file layout (*_last_activations.npy,
*_root_activations.npy, etc.) while avoiding redundant forwards across
last, root, pattern, and prompt_mean. probe extraction also pools
hidden states during the forward pass, so it no longer stores full per-layer
sequence activations just to average a selected token span.
the matrix runner wraps that extraction and then runs probes, cca, rsa, and divergence for each emitted activation file:
python probes/run_probe_matrix.py \
--model 1b:Llama-3.2-1B-Instruct-Q8_0.gguf \
--templates en_zero en_one \
--positions last root \
--jobs 2 \
--generate-tokens 1 \
--dry-run--jobs controls parallel post-extraction analysis bundles. each
template/position bundle still runs its own probe -> CCA -> RSA -> divergence
steps in order, but independent bundles can run concurrently after extraction
finishes. extraction itself remains serial per model to avoid multiplying GGUF
memory use.
canonical smoke probe:
cargo run --release -- \
--arch qwen3 \
--model Qwen3-0.6B-Q8_0.gguf \
--probe \
--probe-limit 5 \
--probe-output data/qwen3_smoke_activations.npy \
--probe-generate-tokens 1gemma 4 uses the same probe pipeline:
cargo run --release -- \
--arch gemma4 \
--model models/gemma-4-E2B-it.Q8_0.gguf \
--tokenizer tokenizer-gemma4.json \
--probe \
--probe-stimuli stimuli/nonce_root_pattern.json \
--probe-output data/gemma4_activations.npy \
--probe-generate-tokens 1the probes/ directory contains python scripts for downstream analysis:
| script | purpose |
|---|---|
train_linear_probe.py |
logistic linear, SGD linear, and small-MLP probes with task-specific CV splits, sparse label filtering, control tasks, and selectivity |
cca_analysis.py |
canonical correlation analysis, layer similarity matrices |
rsa_analysis.py |
representational similarity analysis, distance metrics |
divergence_analysis.py |
correct-vs-incorrect hidden state divergence |
tokenizer_fertility.py |
subword tokenization comparison across tokenizers |
plot_results.py |
visualization: generic probe accuracy/selectivity, CCA/RSA heatmaps, cross-model comparison, fertility |
plot_root_scale_comparison.py |
compact root-accuracy comparison across Llama model scales |
run_probe_matrix.py |
repeatable model/template/position probe matrix runner |
build_conllu_benchmark.py |
convert CoNLL-U morphology annotations into token-level benchmark JSON |
extract_hf_encoder.py |
optional Hugging Face encoder hidden-state extractor |
mdl_probe.py |
data-efficiency / MDL-style probing curves |
run_benchmark.py |
manifest-driven extraction + probe + MDL + RSA benchmark runner |
render_benchmark_report.py |
render benchmark_summary.json into a conservative Markdown report |
check_golden_logits.py |
compare Ember logits with trusted reference logits |
golden_summary.py |
summarize golden-logit reports into compact JSON and Markdown |
stimuli are defined in stimuli/ and generated by stimuli/generate_stimuli.py.
the current stimulus set targets arabic nonce root-pattern morphology (200
stimuli: 20 roots x 10 patterns, from Alakeel et al. 2026).
pass --include-ablations to add masked-root, masked-pattern, both-masked, and
fake-pattern control prompts without changing the default stimulus output.
generated probe outputs (*_activations.npy, *_activations_correctness.json,
*_activations_metadata.json, .npz bundles, benchmark outputs, golden-logit
artifacts, UD downloads, ad hoc plots, logs, and Python bytecode caches) are
ignored.
checked-in fixtures and published figures are kept small and explicit.
for smoke runs, train_linear_probe.py --probe-kind sgd gives a fast linear
classifier for pipeline validation. for headline results, use the full
logistic linear probe and report random-label selectivity/MDL. for hardening
runs, --probe-kind mlp tests whether features that drop under linear probing
remain recoverable non-linearly. run_probe_matrix.py --dry-run prints the
full extraction/analysis command matrix for model, prompt-template, and
probe-position ablations. the matrix runner uses batch probe extraction so each
model is loaded once per matrix run, and grouped extraction avoids rerunning the
same template forward pass for multiple pooling positions. for local cpu runs,
--probe-generate-tokens 1 is the practical default for matrix sweeps; longer
behavioral continuations should run on a larger machine.
train_linear_probe.py supports explicit split policies. Missing split fields
or impossible grouped splits fail with an error; they do not fall back to random
splits.
| policy | grouping | prevents |
|---|---|---|
random / random-stratified |
stratified random folds by label | class imbalance across folds where possible |
root-heldout / root |
root |
the same root appearing in train and test |
pattern-heldout / pattern |
pattern |
the same pattern appearing in train and test |
combination-heldout / root-pattern |
root + pattern pair |
the same root-pattern pair appearing in train and test |
template-heldout / template |
prompt template metadata | the same prompt template appearing in train and test |
--group-field FIELD |
any dotted JSON field | the same custom group appearing in train and test |
Defaults for nonce morphology preserve the established cross-generalization
setup: root probes use pattern-heldout, and pattern probes use
root-heldout. A direct root-heldout root probe is usually invalid because
test roots are unseen classes; Ember reports that as a split error instead of
training a misleading probe.
python probes/train_linear_probe.py \
--activations data/activations.npy \
--stimuli stimuli/nonce_root_pattern.json \
--tasks root pattern \
--root-split pattern-heldout \
--pattern-split root-heldout \
--output data/probes.npzProbe outputs include split metadata in the .npz under split_policy_json
and in a sidecar named like *_split_policy.json.
probes/run_benchmark.py is the higher-level benchmark entry point. It runs a
JSON manifest that can mix Ember GGUF decoder extraction and optional Hugging
Face encoder extraction, then trains generic label-field probes, MDL-style
data-efficiency curves, CCA/RSA, plots, optional divergence, optional fertility,
and a canonical benchmark_summary.json.
python probes/run_benchmark.py \
--config probes/benchmarks/qwen3_smoke.json \
--dry-runRender a human-readable Markdown report from a benchmark summary:
python probes/render_benchmark_report.py \
--summary data/benchmarks/qwen3-smoke/benchmark_summary.json \
--output data/benchmarks/qwen3-smoke/report.mdManifest split policy examples:
{
"split_policy": {
"root": "pattern-heldout",
"pattern": "root-heldout"
}
}{
"split_policy": {
"default": "template-heldout"
}
}For UD or other structured benchmarks, use a grouped field such as
"group_field": "sentence_id" to avoid leakage across rows from the same
sentence.
Encoder-side benchmarks use CoNLL-U-derived JSON rows:
python probes/build_conllu_benchmark.py \
--input path/to/ar.conllu \
--output data/benchmarks/ar_ud.json
python probes/extract_hf_encoder.py \
--model bert-base-multilingual-cased \
--benchmark data/benchmarks/ar_ud.json \
--output data/benchmarks/bert_ar_ud_activations.npyThe encoder extractor requires the optional encoder stack:
.venv/bin/python -m pip install torch transformers datasets conlluThe generic probe runner can target fields such as labels.upos,
labels.Gender, root, or pattern. Sparse fields are filtered per task so
UD features such as Gender and Aspect do not need to exist on every token.
Current encoder benchmark manifests:
| manifest | purpose |
|---|---|
probes/benchmarks/ar_ud_mbert_smoke.json |
1000-row PADT mBERT smoke using fast SGD linear probes |
probes/benchmarks/ar_ud_mbert_full.json |
full PADT mBERT run |
probes/benchmarks/ar_ud_encoder_suite.json |
mBERT, XLM-R, and AraBERTv2 encoder suite |
The first local mBERT smoke completed on Arabic UD PADT with activation shape
(1000, 13, 768). Its benchmark_summary.json reported best probe accuracies
of 0.915 for labels.upos, 0.862 for labels.Gender, 0.900 for
labels.Number, and 0.895 for labels.Aspect. Treat this as a pipeline
smoke result; publishable claims need the full encoder suite and trusted
golden/reference checks.
cargo fmt -- --check
cargo test
cargo clippy --all-targets --all-features -- -D warnings
python3 -m compileall -q probes stimuli scripts
python3 probes/test_probe_workflows.pythe integration suite covers tensor operations, sampling, tokenizer loading,
in-memory and mmap-backed gguf fixtures, grouped q8_0 projections, and f16
cache attention. the model smoke test also runs a gpt-2 forward pass when
gpt2.Q8_0.gguf is present locally; otherwise it skips so ci does not need to
download large model weights.
The static site lives in docs/. Shared HTML fragments such as the top
navigation and syntax-highlighting scripts are regenerated in-place:
python3 scripts/build_docs.py
python3 scripts/check_docs.pyRun this after changing docs navigation, language-pair links, or code-block
pages. The generated regions are marked with docs:* comments in each HTML
file, while the visual system lives in docs/style.css. Optional visual
snapshots can be captured with python3 scripts/screenshot_docs.py when
Playwright is installed. Open Graph preview images can be regenerated with:
python3 scripts/generate_og_images.pyGenerated charts and social cards read their palette from docs/style.css
through scripts/voidwest_theme.py. Change the site tokens first, then rerun
the relevant generator; categorical colors, heatmaps, typography, borders,
and dark/light figure backgrounds are derived from that shared theme.
ember supports llama-compatible architectures via --arch llama. qwen-family
ggufs run through the same llama-family model path; use --arch qwen3 for
qwen3-specific metadata handling. the following models have been tested:
- llama 3.2 1b instruct (
Llama-3.2-1B-Instruct-Q8_0.gguf) - 1.2b params, q8_0 (~1.3 gb) - llama 3.2 3b instruct (
Llama-3.2-3B-Instruct-Q8_0.gguf) - 3.2b params, q8_0 (~3.4 gb) - llama 3.1 8b instruct (
meta-llama-3.1-8b-instruct.Q8_0.gguf) - 8b params, q8_0 (~8.5 gb) - qwen2.5 1.5b instruct (
qwen2.5-1.5b-instruct-q8_0.gguf) - 1.5b params, q8_0 (~1.8 gb)
Both --arch llama and --arch qwen3 dispatch to the shared Llama-family
implementation; the GGUF general.architecture metadata selects the llama,
qwen2, or qwen3 configuration keys. The smoke wrapper currently labels
Qwen2.5 as qwen3 and passes tokenizer-qwen2.5.json explicitly, but Qwen2.5
remains experimental because its generated smoke output has been degenerate.
| architecture | loads | generates | probe smoke | full 200-stimulus probe | golden checked |
|---|---|---|---|---|---|
| gpt-2 | yes | yes | yes | not standard | no |
| llama | yes | yes | yes | yes, local/cloud depending on size | no |
| qwen2.5 | experimental through the shared Llama-family path | warning-prone | selected smoke runs | pending architecture/tokenizer validation | no |
| qwen3 | yes, via --arch qwen3 |
yes | yes, 5-stimulus local smoke | yes, Qwen3 0.6B local run | no |
| gemma4 | yes | yes, coherent English | one-stimulus local smoke | pending | no (cosine ~0.87; L0 bit-identical; remaining gap unresolved) |
hidden-state probe results should be treated as research-grade only after a
trusted-reference logits or activation check exists for the exact architecture,
model file, tokenizer, and quantization path. gemma4 golden-logit checks now cover block layout, PLE, global projection,
embedding scaling, layer scales, GELU tanh, RoPE freq_factors, and BF16
loading. RMSNorm amplification of small upstream differences is the current
working explanation for the remaining cosine gap, not a completed root-cause
proof. See docs/gemma4-parity-investigation.md and
docs/layer-dump-tooling.md for details.
Ember can emit last-prompt logits for external golden checks:
cargo run --release -- \
--arch qwen3 \
--model Qwen3-0.6B-Q8_0.gguf \
--prompt "The capital of France is" \
--dump-logits data/qwen3_france_logits.npyCompare against trusted reference logits with token metadata from both sides:
python probes/check_golden_logits.py \
--ember data/qwen3_france_logits.npy \
--reference reference/qwen3_france_logits.npy \
--metadata data/qwen3_france_logits_metadata.json \
--reference-metadata reference/qwen3_france_logits_metadata.json \
--output data/qwen3_france_golden_report.jsonProbe classifiers scale activations by default and use a higher logistic regression iteration limit to avoid premature convergence failures:
python3 probes/train_linear_probe.py \
--activations data/activations.npy \
--stimuli stimuli/nonce_root_pattern.json \
--max-iter 2000 \
--scaleUse --no-scale only when intentionally comparing against an unscaled probe
baseline.
ember supports dense text-only gemma 4 models via --arch gemma4. the path
targets e2b/e4b/31b-style ggufs with f32, f16, or q8_0 weights. it rejects
moe gemma 4 models, multimodal inputs, speculative drafter models, and
k-quantized ggufs in this first pass.
the gemma 4 loader handles long-context rope without cloning per-layer tables,
uses packed q8 per-layer embeddings without full dequantization, projects
per-layer embedding chunks through blk.N.proj.weight, and supports probe mode
for hidden-state extraction. a one-stimulus smoke probe on
gemma-4-E2B-it.Q8_0.gguf produced activations with shape (1, 35, 1536).
cargo run --release -- \
--arch gemma4 \
--model Gemma-4-E2B-Q8_0.gguf \
--tokenizer tokenizer-gemma4.json \
--prompt "The capital of France is" \
-n 8 --temperature 0 --benchmarkdownload a quantized gguf from huggingface (e.g. unsloth/Llama-3.2-1B-Instruct-GGUF), then run:
cargo run --release -- \
--model Llama-3.2-1B-Instruct-Q8_0.gguf \
--arch llama \
--prompt "The capital of France is" \
-n 30 \
--temperature 0note: if
--tokenizeris omitted, ember pickstokenizer-gpt2.jsonfor--arch gpt2,tokenizer.jsonfor llama/qwen, andtokenizer-gemma4.jsonfor--arch gemma4.
note: demo (
--demo), single-prompt generation, and probe (--probe) mode work across the supported model families. Interactive mode (-i) remains GPT-2-only.
ember has been used for preliminary probes of how llama 3.2 models (1b, 3b, 8b) expose arabic nonce root-pattern morphology in hidden states. Treat these as probe observations until golden-logit reports, activation references, stronger controls, and generated benchmark reports are complete.
- root identity is less linearly decodable in some larger-model mid-layers: the current probe runs report root accuracy dropping from 100% (1b, all layers) to 78% (3b mid-layers) and 70% (8b mid-layers), forming a u-shaped curve in this setup.
- pattern identity appears more surface-accessible in these runs: pattern probe accuracy at layer 0 is reported as 20% (1b), 100% (3b), and 68.5% (8b), with early-layer recovery depending on scale.
- behavioral generation did not solve the task in this setup: these runs generated "the" for every prompt. This does not by itself prove why behavior failed, or that decoded features are causally used or unused.
- tokenizer fertility is a control variable, not an explanation by itself: the measured ar/en token ratio is 1.2x for the llama 3 tokenizer versus 2.4x for gpt-2 on the same prompts, but tokenizer effects need controls before explanatory claims.
full research write-up: https://voidwest.dev/ember
the entry point is main.rs -> generate(), a generic ForwardModel path
used by gpt-2, llama/qwen, and gemma 4. generation runs a two-phase loop:
- prefill - forward pass on the full prompt, populating the kv cache.
- decode - one token at a time, reading from the cache.
shared model primitives live in src/model.rs (ForwardModel, Linear, and
the gpt-2 blocks). llama/qwen lives in src/llama.rs, gemma 4 lives in
src/gemma4.rs, tensors are CpuTensor in src/tensor.rs, and the gguf
parser is src/loader.rs.
main.rs entry point, cli args, dispatch, probe mode
|- loader.rs gguf v3 parser, mmap-backed q8_0 loading
|- model.rs shared model primitives + gpt-2 transformer
|- llama.rs llama/qwen transformer
|- gemma4.rs dense text-only gemma 4 transformer
|- backend.rs backend trait + cpu backend impl
|- tensor.rs row-major f32 tensor, rope, silu, elemul
|- kv_cache.rs flat f16 k/v cache, gqa-aware (n_kv_heads)
|- sampler.rs temperature, top-k, top-p sampling
|- tokenizer.rs huggingface tokenizer wrapper
|- quant.rs q8_0 packing + owned/mmap-backed QuantizedWeight
|- simd.rs q8_0 matmul and f32/f16 CPU kernels
`- probes/ python probe scripts (linear, cca, rsa, divergence)
- backend trait: the transformer is generic -
CpuBackendis the default, but any type implementingBackendworks. the trait abstracts linear ops, element-wise math, layer norm, attention, and tensor lifecycle. the current CPU attention backend uses runtime-dispatched SIMD helpers and Rayon, but the model no longer owns those kernels directly. - q8_0 quantization: 8-bit block quantization (fp16 scale + 32 int8 values per block). File-loaded weights remain in mmap-backed q8_0 storage. The CPU backend quantizes each activation row to the same block format and accumulates packed integer dots, with scalar fallback and x86 AVX2/AVX-512 VNNI dispatch.
- kv cache: flat
[layer][head][seq_position][head_dim]layout. prefill stores k/v for all prompt tokens; decode reads from cache and appends one token at a time. K/V values are stored as f16 and converted inside the attention kernels. The cache usesn_kv_heads(notn_heads), supporting grouped-query attention without storing repeated query-head copies.
these are the non-obvious trade-offs made in this codebase.
embedding storage and tied heads. model builders expose embedding tables as
row-addressable token data; q8_0 dimensions are normalized to contiguous
[vocab, embed] rows. Token lookup copies or dequantizes only the requested
row. When output.weight is absent, Llama/Qwen and Gemma can reuse the same
embedding table as the language-model head without expanding a q8_0 table.
load_from_cpu on the backend trait. the method loads host-side f32
data into a backend tensor. for CpuBackend this is a thin wrapper around
CpuTensor::from_data; a future gpu backend would copy the data to device
memory here. the name was chosen over from_cpu to avoid tripping
clippy::wrong_self_convention (which expects from_* to be a constructor
without &self).
mixed CPU matmul paths. f32 tensors use matrixmultiply::sgemm. q8_0
weights use Ember's packed Q8×Q8 kernels instead. Q/K/V and gate/up grouped
methods share activation quantization when possible, while the Backend trait
keeps those choices out of model code.
f16 kv cache. attention projections are computed in f32, converted to f16 when appended to the cache, and consumed through f32×f16 dot/accumulate helpers. This halves K/V storage relative to an f32 cache while keeping attention scores and outputs in f32.
softmax returns uniform for all-masked input. when every logit is -inf
(fully masked row), softmax normally produces NaN. this code detects that
case and returns 1/n per position. it costs one extra branch per row and
prevents the generation loop from producing NaNs on degenerate input.
- rust stable toolchain
- a gguf model file (e.g. gpt2 in q8_0)
- a tokenizer file for the model (
tokenizer.jsonfor llama,tokenizer-gpt2.jsonfor gpt-2; both are included in the repo)
- attention math is abstracted behind the
Backendtrait, but the only implementation today is the cpu backend. it uses SIMD helpers for inner dot/accumulate work and Rayon for larger per-head workloads; there is no gpu backend yet. - q8_0 matmul quantizes activations to q8_0 for both prefill and decode. The packed AVX2/AVX-512 paths are x86-specific; unsupported CPUs use the scalar Q8×Q8 implementation.
- model loader supports gpt-2, llama/qwen, and dense text-only gemma 4 ggufs through architecture-specific tensor names. Demo, single-prompt generation, and probe mode use the shared model interface; interactive mode remains GPT-2-only.
- not fully no_std - file i/o and mmap require std.
the probe pipeline and CPU backend include these CPU-friendly optimizations:
- grouped extraction avoids redundant forwards across positions for the same template.
- pooled activation extraction writes only selected hidden-state spans instead of storing full per-layer sequence activations.
run_probe_matrix.py --jobsparallelizes independent downstream analysis bundles after extraction.- full and cached attention paths use the shared SIMD dot-product and weighted-accumulate helpers where their head dimensions are contiguous.
- K/V caches use f16 storage with direct f32×f16 attention helpers.
- prompt-only inference sizes its cache to the actual token count instead of a model's potentially very large metadata context.
- file-loaded q8_0 tensors retain mmap ranges, avoiding a second full model copy and allowing the operating system to page data lazily.
- q8_0 prefill uses tiled multi-row kernels; Q/K/V and gate/up projections reuse packed activation rows.
- q8_0 single-row decode matmuls split output rows across Rayon workers once their measured work exceeds the decode crossover.
- shared CPU attention parallelizes prefill by output row and decode by head, with worker-local score scratch to avoid scatter buffers.
the next useful optimization targets are:
- lm-head specialization: the tied Gemma head now remains Q8_0, but a fused top-k-aware path could avoid materializing all vocabulary logits.
- richer thread-count benchmarks: run
scripts/benchmark_threads.pyacross Qwen3 0.6B, LLaMA 1B, Gemma 4, and selected 3B slices, then use the results to tune the parallelism thresholds. - aarch64 q8 kernels: aarch64 has NEON helpers for several f32 operations, but packed Q8×Q8 matmul currently falls back to the portable scalar kernel.
mit