auryn-macmillan / fuse-1-Lite-v2

huggingface.co
Total runs: 166
24-hour runs: 5
7-day runs: -408
30-day runs: -293
Model's Last Updated: August 11 2026
text-generation

Introduction of fuse-1-Lite-v2

Model Details of fuse-1-Lite-v2

Fuse-1 Lite v2

Fuse-1 Lite v2 is the trained successor of Akahisrr/fuse-1-Lite. It adds a v2 coding-expert pathway on top of the v1 model: bridge layers that map LFM2 representations to Qwen3.6-style coding experts, a router, an expert scale, and a coding gate — trained with KL distillation to the LFM2 teacher.

  • Base architecture: Fuse3V2ForCausalLM (model_type = fuse3_v2)
  • Trained: 550 steps (3 stages: foundation, representation mapping, router/refinement)
  • Trainable params: ~253.7M (bridge, router, coding norm/gate, expert scale)
  • Distillation: KL to LiquidAI/LFM2.5-2.6B (alpha=0.5)
⚠️ Custom code — trust_remote_code=True

This model uses a custom architecture and requires:

from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained(
    "auryn-macmillan/fuse-1-Lite-v2", trust_remote_code=True,
    torch_dtype="bfloat16",
)

trust_remote_code=True executes the custom Python code shipped in this repo (fuse3_model_v2.py). This is the same trust model as the upstream Akahisrr/fuse-1-Lite model. Please review the custom code before use and only run it in an environment where executing untrusted code is acceptable.

Quickstart
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "auryn-macmillan/fuse-1-Lite-v2"
tok = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id, torch_dtype=torch.bfloat16, trust_remote_code=True
).cuda()
model.eval()
prompt = "Write a Python function to check if a number is prime."
inputs = tok(prompt, return_tensors="pt").to("cuda")
out = model.generate(**inputs, max_new_tokens=128)
print(tok.decode(out[0]))
Files
  • model.safetensors — merged full model weights (v1 base + trained v2 params)
  • config.json — model_type=fuse3_v2, auto_map to fuse3_model_v2.py
  • fuse3_model_v2.py, fuse3_model.py — custom model code (requires trust_remote_code)
  • tokenizer files (tokenizer.json, tokenizer_config.json, chat_template.jinja)
Notes
  • The coding experts are gated; set model.set_coding_enabled(False) to run the pure LFM2 pathway.
  • Training was performed in an isolated container; this repository contains no training code or data.

Runs of auryn-macmillan fuse-1-Lite-v2 on huggingface.co

166
Total runs
5
24-hour runs
-432
3-day runs
-408
7-day runs
-293
30-day runs

More Information About fuse-1-Lite-v2 huggingface.co Model

More fuse-1-Lite-v2 license Visit here:

https://choosealicense.com/licenses/apache-2.0

fuse-1-Lite-v2 huggingface.co

fuse-1-Lite-v2 huggingface.co is an AI model on huggingface.co that provides fuse-1-Lite-v2's model effect (), which can be used instantly with this auryn-macmillan fuse-1-Lite-v2 model. huggingface.co supports a free trial of the fuse-1-Lite-v2 model, and also provides paid use of the fuse-1-Lite-v2. Support call fuse-1-Lite-v2 model through api, including Node.js, Python, http.

auryn-macmillan fuse-1-Lite-v2 online free

fuse-1-Lite-v2 huggingface.co is an online trial and call api platform, which integrates fuse-1-Lite-v2's modeling effects, including api services, and provides a free online trial of fuse-1-Lite-v2, you can try fuse-1-Lite-v2 online for free by clicking the link below.

auryn-macmillan fuse-1-Lite-v2 online free url in huggingface.co:

https://huggingface.co/auryn-macmillan/fuse-1-Lite-v2

fuse-1-Lite-v2 install

fuse-1-Lite-v2 is an open source model from GitHub that offers a free installation service, and any user can find fuse-1-Lite-v2 on GitHub to install. At the same time, huggingface.co provides the effect of fuse-1-Lite-v2 install, users can directly use fuse-1-Lite-v2 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

fuse-1-Lite-v2 install url in huggingface.co:

https://huggingface.co/auryn-macmillan/fuse-1-Lite-v2

Url of fuse-1-Lite-v2

Provider of fuse-1-Lite-v2 huggingface.co

auryn-macmillan
ORGANIZATIONS

Other API from auryn-macmillan