Views
No views yet
distilbert-base-uncased for a custom text classification task. It has been trained using the Hugging Face Transformers library and logged with Weights & Biases.1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="drzeeIslam/distilbert-finetuned")
4result = classifier("Your input text here")
5print(result)