Views
No views yet
| Negative | Positive | Macro avg | |
|---|---|---|---|
| Precision | 0.94 | 0.99 | 0.97 |
| Recall | 0.96 | 0.98 | 0.97 |
| F1 | 0.95 | 0.99 | 0.97 |
| Accuracy | 0.98 |
distilbert-base-uncased (67M parameters)1from transformers import pipeline
2
3pipe = pipeline(
4 "text-classification",
5 model="qxswy/distilbert-sports-sentiment-v2"
6)
7
8reviews = [
9 "These bands are incredibly durable, love them!",
10 "Snapped after two weeks, complete waste of money."
11]
12print(pipe(reviews))qxswy/modernbert-sports-ner-v2 for named entity recognition of value components.qxswy/deberta-card-sentiment and qxswy/roberta-card-ner.