Llama 3 8B Medical Notes
Published by @medllm_dev · Community adapter
Trained on de-identified clinical notes (MIMIC-III subset). Specialises in SOAP note formatting, ICD code suggestion, and discharge summary drafting. Not a medical device.
Usage
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
base = AutoModelForCausalLM.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
model = PeftModel.from_pretrained(base, "modelforgelab/llama3-8b-medical-notes-lora")
inputs = tokenizer("Your prompt here", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Compatibility
- transformers>=4.40
- vLLM
You might also like
text-generation
public
Llama 3 8B Instruct (GGUF Q4)
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B Customer Support
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B Fitness Coach
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B SEO Content
meta-llama/Meta-Llama-3-8B-Instruct