Views
No views yet
lmsys/longchat-7b-v1.5-32k with attention K/V weights calibrated + fused into a low-rank form for KV-cache compression, produced by proxima_vllm (STAR-KV method).star_kv/ directory: weights.safetensors (fused low-rank K/V projections) and star_kv_config.json. config.json architecture set to ProximaStarKVLlamaForCausalLM. Directory loads directly as vLLM model= argument via additional_config.proxima_vllm.checkpoint.lmsys/longchat-7b-v1.5-32kmax_rank_k=64, max_rank_v=64, sharpness=10.0, mixed-precision fusion (top_fraction=0.25, top_bits=4, bottom_bits=3)HuggingFaceFW/fineweb-edu (CC-MAIN-2013-20 shard)balanced (gamma=1e-3); aggressive (gamma=5e-3) and conservative (gamma=2e-4) profiles also independently calibrated and included in checkpointgpu_memory_utilization=0.83, not 0.85)1from vllm import LLM
2
3llm = LLM(
4 model="tenosra/longchat-7b-starkv-proxima",
5 additional_config={"proxima_vllm": {"checkpoint": True}},
6)