This model is designed to answer questions related to medical reasoning, making it useful for applications in healthcare AI systems, medical research assistants, or clinical decision support systems.
This model should not be used for non-medical domains or tasks. It is also not intended for any malicious use, such as generating harmful or incorrect medical information.
Like all large language models, this model may carry biases inherent in the data it was trained on. It's important to evaluate its outputs carefully, especially in critical domains like healthcare, where errors can have significant consequences.
1from transformers import AutoModelForQuestionAnswering, AutoTokenizer
2
3model_name = "Vaibhavkr007/Llama3.2-1B-FinedTuned-MedicalQA"
4model = AutoModelForQuestionAnswering.from_pretrained(model_name)
5tokenizer = AutoTokenizer.from_pretrained(model_name)