Views
No views yet
| Label | Value Component | Example |
|---|---|---|
PRODUCT | Functional | "resistance bands", "handle", "latex" |
ATTRIBUTE | Emotional | "durable", "snapped", "love it", "waste of money" |
PEOPLE | Social | "seniors", "beginners", "physical therapist" |
EVENT | Contextual | "home workout", "physical therapy", "travel" |
OTHER_PRODUCT | Comparative | "TheraBand", "gym ones" |
| Metric | Value | Note |
|---|---|---|
| F1 macro (val) | 0.75 | entity-level, seqeval, n=100 |
answerdotai/ModernBERT-large (395M params)str.find() — 100% offset accuracyOTHER_PRODUCT has only 20 training entities — performance on this class is unreliableATTRIBUTE is a broad category covering both sentiments and physical qualities — this is a known bottleneck1from transformers import pipeline
2
3pipe = pipeline(
4 "token-classification",
5 model="qxswy/modernbert-sports-ner-v2",
6 aggregation_strategy="simple"
7)
8
9text = "Great bands for seniors doing home workouts, much better than TheraBand."
10print(pipe(text))qxswy/distilbert-sports-sentiment-v2 for sentiment classification.qxswy/deberta-card-sentiment and qxswy/roberta-card-ner.