LuizNeves's picture
Update README.md
02a45b3
metadata
license: afl-3.0
language:
  - en

MODEL DESCRIPTION

This model was fine-tuned to classify vaccine headlines.

from transformers import pipeline

classifier = pipeline("text-classification", model="LuizNeves/DeBERTa-v3-large-vaccine")
sequence_to_classify = "São Paulo approves vaccination for children this Monday"
output = classifier(sequence_to_classify)
print(output)