Views
No views yet
modules_to_save tensors
(embed_tokens, lm_head, and norm layers) that vLLM's LoRA runtime does not
support. This upload contains only the pure low-rank lora_A/lora_B weights
(448 pairs: 64 layers x q/k/v/o/gate/up/down projections), with
modules_to_save: null in adapter_config.json. No resize_token_embeddings()
call is needed to load this adapter.1python -m vllm.entrypoints.openai.api_server \
2 --model Qwen/Qwen3-32B \
3 --enable-lora \
4 --lora-modules medical_openmedzoo=anjohn0077/NEXS-qwen3-32b-medical-openmedzoo-lora \
5 --port 8000 \
6 --max-lora-rank 128 \
7 --gpu-memory-utilization 0.85| Variant | Accuracy |
|---|---|
| Base model | 0.7494 |
| This LoRA on base (via vLLM) | 0.7604 |
| Original full fine-tune | 0.7596 |
1lm_eval --model local-completions \
2 --model_args model=medical_openmedzoo,base_url=http://localhost:8000/v1/completions,tokenizer=Qwen/Qwen3-32B,num_concurrent=10 \
3 --tasks medqa_4options \
4 --output_path results/vllm_medical_openmedzoo