Text Classification
Transformers
PyTorch
TensorBoard
roberta
Generated from Trainer
text-embeddings-inference
Instructions to use coderSounak/finetuning-sentiment-model-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use coderSounak/finetuning-sentiment-model-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="coderSounak/finetuning-sentiment-model-v1")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("coderSounak/finetuning-sentiment-model-v1") model = AutoModelForSequenceClassification.from_pretrained("coderSounak/finetuning-sentiment-model-v1") - Notebooks
- Google Colab
- Kaggle
Commit ·
deac64f
1
Parent(s): e1ae19c
update model card README.md
Browse files
README.md
CHANGED
|
@@ -18,11 +18,11 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [cardiffnlp/twitter-roberta-base-sentiment](https://huggingface.co/cardiffnlp/twitter-roberta-base-sentiment) on the None dataset.
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
-
- Loss:
|
| 22 |
-
- Accuracy: 0.
|
| 23 |
-
- F1: 0.
|
| 24 |
-
- Precision: 0.
|
| 25 |
-
- Recall: 0.
|
| 26 |
|
| 27 |
## Model description
|
| 28 |
|
|
|
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [cardiffnlp/twitter-roberta-base-sentiment](https://huggingface.co/cardiffnlp/twitter-roberta-base-sentiment) on the None dataset.
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
+
- Loss: 2.2009
|
| 22 |
+
- Accuracy: 0.5135
|
| 23 |
+
- F1: 0.5135
|
| 24 |
+
- Precision: 0.5135
|
| 25 |
+
- Recall: 0.5135
|
| 26 |
|
| 27 |
## Model description
|
| 28 |
|