CoolFace
Datasetpublic

ceselder/lora-text-weight-sonnet5-fixed-a-r1-layer20-3epoch

Sonnet source descriptions → fixed-A rank-1 LoRA weights This dataset contains 52,548 aligned examples for raw text-to-LoRA-weight reconstruction with Qwen3-14B. Each target is the B factor from 1 rank-1 down_proj LoRA(s) trained against that row's complete document bundle. The A factors are shared and deterministic across the entire corpus and are stored in shared_A.safetensors. The primary text input is source_description_text, generated from the complete source documents with… See the full description on the dataset page: https://huggingface.co/datasets/ceselder/lora-text-weight-sonnet5-fixed-a-r1-layer20-3epoch.

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes210downloads
Dataset Card

Sonnet source descriptions → fixed-A rank-1 LoRA weights

This dataset contains 52,548 aligned examples for raw text-to-LoRA-weight reconstruction with Qwen3-14B. Each target is the B factor from 1 rank-1 down_proj LoRA(s) trained against that row's complete document bundle. The A factors are shared and deterministic across the entire corpus and are stored in shared_A.safetensors.

The primary text input is source_description_text, generated from the complete source documents with claude-sonnet-5. The original documents and source answer are retained for alternate conditioning experiments.

Decoding the target

weight_B_f16 is exactly 10,240 little-endian bytes. Decode it with:

python
import numpy as np
B = np.frombuffer(row["weight_B_f16"], dtype="<f2").reshape(
    1, 5120
).copy()

The layer indices are [20]. LoRA alpha is 8.0. Each target received exactly 3 complete passes over all of its document chunks; optimizer-step count therefore varies with document length.

Provenance

  • —Base model revision: 40c069824f4251a91eefaf281ebe4c544efd3e18
  • —Shared-A seed: 777
  • —Description model: claude-sonnet-5
  • —Dataset repository: ceselder/lora-text-weight-sonnet5-fixed-a-r1-layer20-3epoch

See dataset_metadata.json and source_description_audit.json for exact counts, revisions, hashes, normalization metadata, and duplicate audits.