Views
No views yet
LLAMA-DISEASE-CURE is a fine-tuned version of the LLaMA-3 8B model optimized for disease classification and suggesting potential cures based on patient textual input. This model helps automate the mapping of symptoms to diseases and treatment strategies, enabling applications in AI-powered clinical decision support tools.1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="kshitij230/LLAMA-DISEASE-CURE")
4output = classifier("Patient reports shortness of breath, chest pain, and dizziness.")
5print(output)