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
YAML Metadata Warning: empty or missing yaml metadata in repo card
Check out the documentation for more information.
This is a fine-tuned XLM-R model for sentiment analysis in hebrew.
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_hebrew_sentiment")
model = AutoModelForSequenceClassification.from_pretrained("DGurgurov/xlm-r_hebrew_sentiment")
[MIT]