Text Classification
Transformers
PyTorch
English
roberta
text
stance
Eval Results (legacy)
text-embeddings-inference
Instructions to use eevvgg/Stance-Tw with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use eevvgg/Stance-Tw with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="eevvgg/Stance-Tw")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("eevvgg/Stance-Tw") model = AutoModelForSequenceClassification.from_pretrained("eevvgg/Stance-Tw", device_map="auto") - Notebooks
- Google Colab
- Kaggle
del cls report from readme
Browse files
README.md
CHANGED
|
@@ -89,12 +89,6 @@ It achieves the following results on the evaluation set:
|
|
| 89 |
- weighted f1-score: 0.762
|
| 90 |
- accuracy: 0.762
|
| 91 |
|
| 92 |
-
precision recall f1-score support
|
| 93 |
-
|
| 94 |
-
neutral 0.762 0.770 0.766 200
|
| 95 |
-
positive 0.759 0.775 0.767 191
|
| 96 |
-
negative 0.769 0.714 0.741 84
|
| 97 |
-
|
| 98 |
|
| 99 |
## Citation
|
| 100 |
**BibTeX**: tba
|
|
|
|
| 89 |
- weighted f1-score: 0.762
|
| 90 |
- accuracy: 0.762
|
| 91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
|
| 93 |
## Citation
|
| 94 |
**BibTeX**: tba
|