CoolFace
Modelpublic

BirdieByte1024/doctor-dental-implant-llama3.2-3B-full-model

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes58downloads
Model Card

๐Ÿฆท doctor-dental-implant-llama3.2-3B-full-model

This model is a fine-tuned version of meta-llama/Llama-3.2-3B, trained using the Unsloth framework on a domain-specific instruction dataset focused on medical and dental implant conversations.

The model has been optimized for chat-style reasoning in doctorโ€“patient scenarios, particularly within the domain of Straumannยฎ dental implant systems, as well as general medical question answering.


๐Ÿ” Model Details

  • โ€”Base model: meta-llama/Llama-3.2-3B
  • โ€”Training framework: Unsloth with LoRA + QLoRA support
  • โ€”Training format: Conversational JSON with {"from": "patient"/"doctor", "value": ...} messages
  • โ€”Checkpoint format: Full model merged, usable as standard HF or GGUF (Ollama / llama.cpp)
  • โ€”Tokenizer: Inherited from base model
  • โ€”Model size: 3B parameters (efficient for consumer-grade inference)

๐Ÿ“š Dataset

This model was trained on:

The dataset contains synthetic and handbook-derived doctor-patient conversations focused on:

  • โ€”Dental implant systems (e.g. surgical kits, guided procedures)
  • โ€”General medical Q&A relevant to clinics and telemedicine
  • โ€”Clinical assistant-style instruction-following

๐Ÿ’ฌ Prompt Format

The model expects a chat-style format:

{
  "conversation": [
    { "from": "patient", "value": "What are the advantages of guided implant surgery?" },
    { "from": "doctor", "value": "Guided surgery improves accuracy, safety, and esthetic outcomes." }
  ]
}

โœ… Intended Use

  • โ€”Virtual assistants in dental or medical Q&A
  • โ€”Instruction-tuned experimentation on health topics
  • โ€”Local chatbot agents (Ollama / llama.cpp compatible)

โš ๏ธ Limitations

  • โ€”Model is not a medical device or diagnostic tool
  • โ€”Hallucinations and factual errors may occur
  • โ€”Content was fine-tuned using synthetic and handbook-based sources (not real EMR)

๐Ÿงช Example Prompt

json
{
  "conversation": [
    { "from": "human", "value": "What should I expect after a Straumann implant surgery?" },
    { "from": "assistant", "value": "[MODEL RESPONSE HERE]" }
  ]
}

๐Ÿ›  Deployment

Local Use with Hugging Face Transformers

python
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("BirdieByte1024/doctor-dental-implant-llama3.2-3B-full-model")
model = AutoModelForCausalLM.from_pretrained("BirdieByte1024/doctor-dental-implant-llama3.2-3B-full-model")

GGUF / Ollama / llama.cpp

bash
ollama run doctor-dental-llama3.2
If using a local Modelfile, ensure the prompt template matches chat formatting (no Alpaca-style).

โœ๏ธ Author

Created by (BirdieByte1024) as part of a medical AI research project using Unsloth and LLaMA 3.2.


๐Ÿ“œ License

MIT