Text Classification
Transformers
PyTorch
TensorBoard
bert
Generated from Trainer
text-embeddings-inference
Instructions to use slickdata/finetuned-Sentiment-classfication-BERT-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use slickdata/finetuned-Sentiment-classfication-BERT-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="slickdata/finetuned-Sentiment-classfication-BERT-model")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("slickdata/finetuned-Sentiment-classfication-BERT-model") model = AutoModelForSequenceClassification.from_pretrained("slickdata/finetuned-Sentiment-classfication-BERT-model") - Notebooks
- Google Colab
- Kaggle
update model card README.md
Browse files
README.md
CHANGED
|
@@ -14,8 +14,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 14 |
|
| 15 |
This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on an unknown dataset.
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
-
- Loss: 0.
|
| 18 |
-
- Rmse: 0.
|
| 19 |
|
| 20 |
## Model description
|
| 21 |
|
|
@@ -49,7 +49,7 @@ The following hyperparameters were used during training:
|
|
| 49 |
|
| 50 |
| Training Loss | Epoch | Step | Validation Loss | Rmse |
|
| 51 |
|:-------------:|:-----:|:----:|:---------------:|:------:|
|
| 52 |
-
| 0.
|
| 53 |
|
| 54 |
|
| 55 |
### Framework versions
|
|
|
|
| 14 |
|
| 15 |
This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on an unknown dataset.
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
+
- Loss: 0.6176
|
| 18 |
+
- Rmse: 0.6707
|
| 19 |
|
| 20 |
## Model description
|
| 21 |
|
|
|
|
| 49 |
|
| 50 |
| Training Loss | Epoch | Step | Validation Loss | Rmse |
|
| 51 |
|:-------------:|:-----:|:----:|:---------------:|:------:|
|
| 52 |
+
| 0.6783 | 4.0 | 500 | 0.6176 | 0.6707 |
|
| 53 |
|
| 54 |
|
| 55 |
### Framework versions
|