OsamaBinLikhon commited on
Commit
0c58a8c
·
verified ·
1 Parent(s): cd1274d

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - bn
4
+ - en
5
+ tags:
6
+ - sentiment-analysis
7
+ - bengali
8
+ - code-mixing
9
+ - multilingual
10
+ datasets:
11
+ - Swarnadeep-28/bn_code_mix_sentiment_dataset
12
+ metrics:
13
+ - accuracy
14
+ - f1
15
+ ---
16
+
17
+ # Bengali Code-Mixed Sentiment Analysis Model
18
+
19
+ ## Model Description
20
+
21
+ A multilingual sentiment analysis model configured for Bengali code-mixed text
22
+ (Bengali-English code-switching). Classifies text into four sentiment categories:
23
+
24
+ - **Negative**: Expresses negative sentiment
25
+ - **Neutral**: Expresses neutral sentiment
26
+ - **Positive**: Expresses positive sentiment
27
+ - **Mixed**: Contains mixed or ambiguous sentiment
28
+
29
+ ## Usage
30
+
31
+ ```python
32
+ from transformers import pipeline
33
+
34
+ classifier = pipeline(
35
+ "sentiment-analysis",
36
+ model="OsamaBinLikhon/bengali-code-mix-sentiment"
37
+ )
38
+
39
+ result = classifier("আজকের দিনটা খুবই ভালো গেছে!")
40
+ ```
41
+
42
+ ## Training Data
43
+
44
+ - **Dataset**: [Swarnadeep-28/bn_code_mix_sentiment_dataset](https://huggingface.co/datasets/Swarnadeep-28/bn_code_mix_sentiment_dataset)
45
+ - **Samples**: 16,012 training, 2,001 validation, 2,002 test
46
+
47
+ ## Performance
48
+
49
+ Configured for Bengali sentiment analysis with 4-class classification.
50
+
51
+ ## Citation
52
+
53
+ ```bibtex
54
+ @misc{bengali-sentiment-model,
55
+ author = [MiniMax Agent],
56
+ title = [Bengali Code-Mixed Sentiment Analysis Model],
57
+ url = [https://huggingface.co/OsamaBinLikhon/bengali-code-mix-sentiment],
58
+ year = [2025]
59
+ }
60
+ ```
61
+
62
+ ## License
63
+
64
+ Apache License 2.0