Edit model card

Medical Diagnosis Chatbot

This model is trained to classify medical conditions based on input symptoms and provide appropriate recommendations.

Supported Tasks

This model supports the following tasks:

  • text-classification: Classify text into predefined medical conditions.

Usage

Here is how you can use the model for text classification:

from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("utkarshiitr/medicalchatbot")
model = AutoModelForSequenceClassification.from_pretrained("utkarshiitr/medicalchatbot")

inputs = tokenizer("fever, cough", return_tensors="pt")
outputs = model(**inputs)
Downloads last month
16
Safetensors
Model size
110M params
Tensor type
F32
·