This model was trained on a large subset of the
MIRIAD-4.4M dataset to provide concise, structured answers to medical queries.
1Question:
2What are the risks in dental implant surgery?
3
4Answer:
The model can be easily loaded using the transformers library.
1from transformers import pipeline
2import torch
3
4pipe = pipeline(
5 "text-generation",
6 model="Aasher/TibbScholar",
7 torch_dtype=torch.bfloat16, # Or float16 for older GPUs
8 device_map="auto",
9)
10
11prompt = """Question:
12What are the risks in dental implant surgery?
13
14Answer:
15"""
16
17response = pipe(
18 prompt,
19 max_new_tokens=256,
20 do_sample=True,
21 temperature=0.5,
22 top_p=0.9,
23)
24
25print(response[0]["generated_text"])
This model is intended solely for academic and informational purposes. It can be a helpful tool for students and researchers exploring medical topics.
This model is NOT a medical professional.
The information provided by TibbScholar is not a substitute for professional medical advice. Always consult a qualified healthcare provider with any medical questions. The creator of this model assumes no liability for any actions taken based on its output.