Views
No views yet
| Metric | Score |
|---|---|
| Test Accuracy | 0.9981 |
| Test Macro F1 | 0.9981 |
| Test Weighted F1 | 0.9981 |
1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="Kaave19/distilbert-customer-support-intent"
6)
7
8classifier("I want to cancel my order from yesterday")
9
10## Limitations
11
12This model is intended for customer-support-style messages similar to the Bitext dataset. It predicts one intent per message.