lavita/ChatDoctor-HealthCareMagic-100k
Viewer • Updated • 112k • 8.75k • 114
How to use halame/chatdoctor-mistral-lora with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("./models/mistral")
model = PeftModel.from_pretrained(base_model, "halame/chatdoctor-mistral-lora")How to use halame/chatdoctor-mistral-lora with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="halame/chatdoctor-mistral-lora")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("halame/chatdoctor-mistral-lora", device_map="auto")How to use halame/chatdoctor-mistral-lora with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "halame/chatdoctor-mistral-lora"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "halame/chatdoctor-mistral-lora",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/halame/chatdoctor-mistral-lora
How to use halame/chatdoctor-mistral-lora with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "halame/chatdoctor-mistral-lora" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "halame/chatdoctor-mistral-lora",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "halame/chatdoctor-mistral-lora" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "halame/chatdoctor-mistral-lora",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use halame/chatdoctor-mistral-lora with Docker Model Runner:
docker model run hf.co/halame/chatdoctor-mistral-lora
A fine-tuned LoRA adapter for medical question answering, achieving BERTScore F1 = 0.844 (matching the original ChatDoctor paper).
| Metric | Score |
|---|---|
| BERTScore Precision | 0.845 |
| BERTScore Recall | 0.843 |
| BERTScore F1 | 0.844 |
| BLEU-1 | 0.150 |
| ROUGE-L | 0.109 |
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
# Load base model
base_model = AutoModelForCausalLM.from_pretrained(
"mistralai/Mistral-7B-Instruct-v0.3",
torch_dtype=torch.float16,
device_map="auto"
)
# Load LoRA adapter
model = PeftModel.from_pretrained(base_model, "halame/chatdoctor-mistral-lora")
tokenizer = AutoTokenizer.from_pretrained("halame/chatdoctor-mistral-lora")
# Generate
prompt = "I have headache and fever for 2 days. What should I do?"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
@article{li2023chatdoctor,
title={ChatDoctor: A Medical Chat Model Fine-Tuned on a Large Language Model Meta-AI (LLaMA) Using Medical Domain Knowledge},
author={Li, Yunxiang and others},
journal={arXiv preprint arXiv:2303.14070},
year={2023}
}
Apache 2.0
This model is for research purposes only. Do not use for actual medical diagnosis.
Base model
mistralai/Mistral-7B-v0.3