Views
No views yet
(Instruct − Base) is summed onto the CPT'd weights (λ=1.0, 149 tensors), transferring instruction-following while keeping domain knowledge. Element-wise merge in fp32, saved bf16; tokenizer + chat template + generation config from the Instruct model. Same recipe validated on the lfm2.5-1.2b-noval round.| Method | weight arithmetic only — NO gradient training |
| λ (instruct delta scale) | 1.0 |
| Precision | merge fp32 → save bf16 |
| Metric | Value | Note |
|---|---|---|
| PPL Asterion held-out | 2.12 | CPT parent: 1.91 |
| PPL Mars telemetry | 1.38 | CPT parent: 1.30 |
| PPL general (FineWeb-Edu) | 9.13 | CPT parent: 7.31 |
noval-corp/scripts/eval_agentic.py.-agentic).1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("atenareply/lfm2.5-1.2b-asterion-instruct-paramdelta")
4model = AutoModelForCausalLM.from_pretrained("atenareply/lfm2.5-1.2b-asterion-instruct-paramdelta")
5msgs = [{"role": "user", "content": "What does the Orbital Mining Corporation do?"}]
6inputs = tok.apply_chat_template(msgs, add_generation_prompt=True, return_tensors="pt", return_dict=True)
7print(tok.decode(model.generate(**inputs, max_new_tokens=256)[0, inputs["input_ids"].shape[1]:], skip_special_tokens=True))noval-corp/scripts/gen_model_cards.py (standardized across the noval-corp model family).