Views
No views yet
meta-llama/Llama-3.2-3B using Unsloth, for the purpose of aligning the model to doctor–patient conversations and dental implant-related Q&A.meta-llama/Llama-3.2-3BBirdieByte1024/doctor-dental-llama-qaBirdieByte1024/doctor-dental-llama-qa1{
2 "conversation": [
3 { "from": "patient", "value": "What is the purpose of a healing abutment?" },
4 { "from": "doctor", "value": "It helps shape the gum tissue and protect the implant site during healing." }
5 ]
6}1from transformers import AutoTokenizer, AutoModelForCausalLM
2from peft import PeftModel
3
4# Load base model
5base = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.2-3B")
6tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-3.2-3B")
7
8# Load LoRA adapter
9model = PeftModel.from_pretrained(base, "BirdieByte1024/doctor-dental-implant-LoRA-llama3.2-3B")