DGurgurov commited on
Commit
a668178
1 Parent(s): 7d5bf94

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Fine-tuned XLM-R Model for nepali Sentiment Analysis
3
+
4
+ This is a fine-tuned XLM-R model for sentiment analysis in nepali.
5
+
6
+ ## Model Details
7
+
8
+ - **Model Name**: XLM-R Sentiment Analysis
9
+ - **Language**: nepali
10
+ - **Fine-tuning Dataset**: DGurgurov/nepali_sa
11
+
12
+ ## Training Details
13
+
14
+ - **Epochs**: 20
15
+ - **Batch Size**: 32 (train), 64 (eval)
16
+ - **Optimizer**: AdamW
17
+ - **Learning Rate**: 5e-5
18
+
19
+ ## Performance Metrics
20
+
21
+ - **Accuracy**: 0.69412
22
+ - **Macro F1**: 0.67423
23
+ - **Micro F1**: 0.69412
24
+
25
+ ## Usage
26
+
27
+ To use this model, you can load it with the Hugging Face Transformers library:
28
+ ```python
29
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
30
+
31
+ tokenizer = AutoTokenizer.from_pretrained("DGurgurov/xlm-r_nepali_sentiment")
32
+ model = AutoModelForSequenceClassification.from_pretrained("DGurgurov/xlm-r_nepali_sentiment")
33
+ ```
34
+
35
+ ## License
36
+ [MIT]