This is a highly specialized, locally fine-tuned LoRA adapter for the Qwen2.5-3B model, designed specifically for clinical cardiology diagnostics. It was trained to act as a domain expert in a Multi-LoRA routing system.
This model is intended to be used as a dynamically loaded adapter. When attached to the base Qwen2.5-3B model, it acts as a highly technical cardiology expert.
This adapter was trained on high-quality, unstructured cardiology datasets sourced from PubMed (Scientific Literature) and filtered clinical notes from MIMIC-IV to learn dense medical terminology, hemodynamics, and EKG interpretation.
1from peft import PeftModel
2from transformers import AutoModelForCausalLM
3
4# 1. Load the base model
5base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen2.5-3B-bnb-4bit")
6
7# 2. Attach this Cardiology Adapter
8model = PeftModel.from_pretrained(base_model, "Hriday75/qwen2.5-3b-cardiology-lora")