Fine-tuned Models for Benchmark
Collection
Those are 24 (Llama 2 & PMC-Llama for 12 tasks) fine-tuned models. • 24 items • Updated • 1
How to use clinicalnlplab/finetuned-PMCLLaMA-13B-MS2 with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("chaoyi-wu/MedLLaMA_13B")
model = PeftModel.from_pretrained(base_model, "clinicalnlplab/finetuned-PMCLLaMA-13B-MS2")