Sentiment Analysis Models
Collection
Collection of XLM-R-based Sentiment Analysis models trained on the data with two labels - positive and negative.
•
25 items
•
Updated
This is a fine-tuned XLM-R model for sentiment analysis in georgian.
To use this model, you can load it with the Hugging Face Transformers library:
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("DGurgurov/xlm-r_georgian_sentiment")
model = AutoModelForSequenceClassification.from_pretrained("DGurgurov/xlm-r_georgian_sentiment")
[MIT]