Edit model card
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

Supported Tasks

This model supports the following tasks:

  • text-classification: Classify text into predefined categories.

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
5
Safetensors
Model size
110M params
Tensor type
F32
·
Unable to determine this model’s pipeline type. Check the docs .