Views
No views yet
pip install -e .1# Serve fuse-1 Lite with vLLM
2vllm serve Akahsizrr/fuse-1-Lite \
3 --mamba-cache-mode align \
4 --max-model-len 4096
5
6# Or with the Python API
7from vllm import LLM
8llm = LLM(
9 model="Akahsizrr/fuse-1-Lite",
10 mamba_cache_mode="align",
11 max_model_len=4096,
12)Fuse3ForCausalLM with vLLM's ModelRegistry. The model
extends vLLM's native LFM2 implementation:Lfm2AttentionDecoderLayer and Lfm2ShortConvDecoderLayerAutoWeightsLoader with a WeightsMapper that handles
the host_layer. prefix and conv weight renaming--trust-remote-code — the model is registered natively.