Instructions to use anjohn0077/NEXS-qwen3-32b-IF-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use anjohn0077/NEXS-qwen3-32b-IF-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-32B") model = PeftModel.from_pretrained(base_model, "anjohn0077/NEXS-qwen3-32b-IF-lora") - Notebooks
- Google Colab
- Kaggle
NEXS Qwen3-32B IF LoRA (vLLM-ready)
Rank-128 LoRA adapter (bf16) extracted with mergekit from qihoo360/Light-IF-32B against the base model Qwen/Qwen3-32B, then sanitized for vLLM serving.
Sanitization applied
The raw mergekit extraction included full-rank 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.
Serving with vLLM
python -m vllm.entrypoints.openai.api_server \
--model Qwen/Qwen3-32B \
--enable-lora \
--lora-modules IF=anjohn0077/NEXS-qwen3-32b-IF-lora \
--port 8000 \
--max-lora-rank 128 \
--gpu-memory-utilization 0.85
Evaluation (ifeval)
| Variant | Accuracy |
|---|---|
| Base model | 0.8336 |
| This LoRA on base (via vLLM) | 0.2737 |
| Original full fine-tune | 0.8669 |
Evaluated with lm-evaluation-harness against a local vLLM OpenAI-compatible endpoint:
lm_eval --model local-completions \
--model_args model=IF,base_url=http://localhost:8000/v1/completions,tokenizer=Qwen/Qwen3-32B,num_concurrent=10 \
--tasks ifeval \
--output_path results/vllm_IF
- Downloads last month
- -
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for anjohn0077/NEXS-qwen3-32b-IF-lora
Base model
Qwen/Qwen3-32B