Views
No views yet
LiquidAI/LFM2.5-1.2B-Instruct, derived from LiquidAI/LFM2.5-1.2B-Instruct-smoltalk-LoRA by dropping the ShortConv (conv.in_proj / conv.out_proj) LoRA weights, which SGLang does not have an injection point for yet. All other weights are unchanged (native w1/w3/w2 MLP naming is kept — both PEFT and SGLang handle it).convert_lfm2_moe_lora_to_per_expert.py (bundled; the same script converts LFM2-MoE adapters to the per-expert format).q_proj, k_proj, v_proj, out_projw1, w3, w2 (gate / up / down)conv.in_proj, conv.out_proj.1sglang serve \
2 --model-path LiquidAI/LFM2.5-1.2B-Instruct \
3 --port 30000 \
4 --enable-lora --max-lora-rank 8 \
5 --lora-paths "smoltalk=tugot17/lfm2.5-1.2b-instruct-smoltalk-lora-classic" \
6 --lora-target-modules q_proj k_proj v_proj out_proj gate_proj up_proj down_proj \
7 --lora-strict-loading1curl -sS http://localhost:30000/generate \
2 -H "Content-Type: application/json" \
3 -d '{
4 "text": "Write a short story set in an unusual location.",
5 "sampling_params": {"temperature": 0.0, "max_new_tokens": 80},
6 "lora_path": "smoltalk"
7 }'HuggingFaceTB/smoltalk. This artifact only removes the ShortConv weights; everything else carries over.