Views
No views yet
glyph-curator-v1 is a full fine-tune of Llama-3.2-1B-Instruct that acts as
the curator stage of the APE
(Agent Persistence Exocortex) pipeline. It rewrites a raw input passage into a
claim-dense paraphrase: a cleaned, self-contained restatement that
surfaces every claim explicitly so the downstream translator can render each as
Glyph without losing content.meta-llama/Llama-3.2-1B-Instructcurator-v1-v37-distill-20260527 (claim-dense paraphrase pairs),
90/10 train/val split.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("wimpSquad/Llama-3.2-1B-glyph-curator-v1")
4model = AutoModelForCausalLM.from_pretrained("wimpSquad/Llama-3.2-1B-glyph-curator-v1")
5
6msgs = [{"role": "user", "content": "<raw passage to curate>"}]
7ids = tok.apply_chat_template(msgs, add_generation_prompt=True, return_tensors="pt")
8out = model.generate(ids, max_new_tokens=512, do_sample=False)
9print(tok.decode(out[0, ids.shape[1]:], skip_special_tokens=True))curator-v1-llama-fp16.gguf (f16, full precision)curator-v1-llama.Q8_0.gguf (Q8_0, recommended for serving)llama-cli -hf wimpSquad/Llama-3.2-1B-glyph-curator-v1:Q8_0 -p "..."