Text Classification
Transformers
TensorBoard
Safetensors
camembert
Generated from Trainer
Eval Results (legacy)
text-embeddings-inference
Instructions to use ac0hik/Sentiment_Analysis_French with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ac0hik/Sentiment_Analysis_French with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ac0hik/Sentiment_Analysis_French")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("ac0hik/Sentiment_Analysis_French") model = AutoModelForSequenceClassification.from_pretrained("ac0hik/Sentiment_Analysis_French") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,15 +30,15 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 30 |
|
| 31 |
# camembert_model
|
| 32 |
|
| 33 |
-
This model is a fine-tuned version of [camembert-base](https://huggingface.co/camembert-base) on the tweet_sentiment_multilingual dataset.
|
| 34 |
It achieves the following results on the evaluation set:
|
| 35 |
- Loss: 0.7877
|
| 36 |
- Accuracy: 0.7654
|
| 37 |
|
| 38 |
## Model description
|
| 39 |
|
| 40 |
-
|
| 41 |
-
|
| 42 |
## Intended uses & limitations
|
| 43 |
|
| 44 |
More information needed
|
|
|
|
| 30 |
|
| 31 |
# camembert_model
|
| 32 |
|
| 33 |
+
This model is a fine-tuned version of [camembert-base](https://huggingface.co/camembert-base) on the tweet_sentiment_multilingual dataset (French portion of it) .
|
| 34 |
It achieves the following results on the evaluation set:
|
| 35 |
- Loss: 0.7877
|
| 36 |
- Accuracy: 0.7654
|
| 37 |
|
| 38 |
## Model description
|
| 39 |
|
| 40 |
+
A sentiment Classifier for the french language
|
| 41 |
+
classifies french text to positive, negative or neutral.
|
| 42 |
## Intended uses & limitations
|
| 43 |
|
| 44 |
More information needed
|