Instructions to use anjohn0077/NEXS-medical-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use anjohn0077/NEXS-medical-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-8B") model = PeftModel.from_pretrained(base_model, "anjohn0077/NEXS-medical-lora") - Notebooks
- Google Colab
- Kaggle
NEXS medical LoRA (vLLM-ready)
Rank-128 LoRA adapter for the medical domain, extracted with mergekit from TsinghuaC3I/Llama-3.1-8B-UltraMedical against the base model meta-llama/Llama-3.1-8B, then sanitized for vLLM serving.
Sanitization applied
The raw mergekit extraction included full-rank modules_to_save tensors
(embed_tokens, lm_head, and RMSNorm layers) that vLLM's LoRA runtime does
not support. This upload contains only the pure low-rank lora_A/lora_B
weights (224 pairs: 32 layers x q/k/v/o/gate/up/down projections, bf16), 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 meta-llama/Llama-3.1-8B \
--enable-lora \
--lora-modules medical=anjohn0077/NEXS-medical-lora \
--port 8000 \
--max-lora-rank 128 \
--gpu-memory-utilization 0.85
Evaluation (mmlu_professional_medicine)
| Variant | Accuracy |
|---|---|
| Base model | 0.7169 |
| This LoRA on base (via vLLM) | 0.7059 |
| Original full fine-tune | 0.7721 |
Evaluated with lm-evaluation-harness against a local vLLM OpenAI-compatible endpoint:
lm_eval --model local-completions \
--model_args model=medical,base_url=http://localhost:8000/v1/completions,tokenizer=meta-llama/Llama-3.1-8B,num_concurrent=10 \
--tasks mmlu_professional_medicine \
--output_path results/vllm_medical
- Downloads last month
- 59
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for anjohn0077/NEXS-medical-lora
Base model
meta-llama/Llama-3.1-8B Finetuned
meta-llama/Llama-3.1-8B-Instruct Finetuned
TsinghuaC3I/Llama-3.1-8B-UltraMedical