File size: 858 Bytes
06e7f60 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# Fine-tuned XLM-R Model for bengali Sentiment Analysis
This is a fine-tuned XLM-R model for sentiment analysis in bengali.
## Model Details
- **Model Name**: XLM-R Sentiment Analysis
- **Language**: bengali
- **Fine-tuning Dataset**: DGurgurov/bengali_sa
## Training Details
- **Epochs**: 20
- **Batch Size**: 32 (train), 64 (eval)
- **Optimizer**: AdamW
- **Learning Rate**: 5e-5
## Performance Metrics
- **Accuracy**: 0.94977
- **Macro F1**: 0.93981
- **Micro F1**: 0.94977
## Usage
To use this model, you can load it with the Hugging Face Transformers library:
```python
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("DGurgurov/xlm-r_bengali_sentiment")
model = AutoModelForSequenceClassification.from_pretrained("DGurgurov/xlm-r_bengali_sentiment")
```
## License
[MIT]
|