Mukaffi28 commited on
Commit
8ccde2a
Β·
verified Β·
1 Parent(s): 15157aa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -2
README.md CHANGED
@@ -8,7 +8,92 @@ language:
8
  - bn
9
  tags:
10
  - intent
11
- - Multimodal
 
 
12
  size_categories:
13
  - 1K<n<10K
14
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - bn
9
  tags:
10
  - intent
11
+ - multimodal
12
+ - bangla
13
+ - social-media
14
  size_categories:
15
  - 1K<n<10K
16
+ ---
17
+
18
+ # πŸ“Š Uddessho Dataset β€” Multimodal Author Intent Classification
19
+
20
+ **Uddessho** (meaning *"Intent"* in English) is a **multimodal dataset** created for **author intent classification** in the low-resource Bangla language.
21
+ It contains **3,048 social media posts** (text + images) labeled into **six distinct intent types**.
22
+
23
+ ---
24
+
25
+ ## 🏷️ Intent Categories & Label Mapping
26
+
27
+ | Label ID | Class Name |
28
+ |----------|---------------|
29
+ | 0 | Advocative |
30
+ | 1 | Controversial |
31
+ | 2 | Exhibitionist |
32
+ | 3 | Expressive |
33
+ | 4 | Informative |
34
+ | 5 | Promotive |
35
+
36
+
37
+ ---
38
+
39
+ ## πŸ“‚ Dataset Overview
40
+
41
+ | Split | Instances |
42
+ | ---------- | --------- |
43
+ | Training | 2,423 |
44
+ | Testing | 313 |
45
+ | Validation | 312 |
46
+ | **Total** | **3,048** |
47
+
48
+ ---
49
+
50
+ ## πŸ“Š Distribution of Dataset Splits Across Intent Categories
51
+
52
+ | Intent Category | Training | Testing | Validation |
53
+ | --------------- | -------- | ------- | ---------- |
54
+ | Informative | 514 | 67 | 67 |
55
+ | Advocative | 386 | 49 | 49 |
56
+ | Promotive | 315 | 43 | 42 |
57
+ | Exhibitionist | 371 | 47 | 48 |
58
+ | Expressive | 518 | 66 | 66 |
59
+ | Controversial | 319 | 41 | 40 |
60
+ | **Total** | **2423** | **313** | **312** |
61
+
62
+ ---
63
+
64
+
65
+ ## πŸ“œ License
66
+
67
+ This dataset is released under the **CC BY-SA 4.0** license.
68
+ You are free to share and adapt the dataset for any purpose, including commercial use, as long as you provide appropriate credit and distribute any derivative works under the same license.
69
+
70
+ ---
71
+
72
+ ## πŸ’» Usage
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ dataset = load_dataset("Mukaffi28/Uddessho-Bangla-Multimodal-Intent-Classification")
78
+ print(dataset["train"][0])
79
+ ```
80
+
81
+ ---
82
+
83
+ ## ✏️ Citation
84
+
85
+ If you use the **Uddessho Dataset** in your research or project, please cite it as:
86
+
87
+ ```bibtex
88
+ @InProceedings{10.1007/978-981-96-1758-6_32,
89
+ author = {Faria, Fatema Tuj Johora and Moin, Mukaffi Bin and Rahman, Md. Mahfuzur and Shanto, Md. Morshed Alam and Fahim, Asif Iftekher and Hoque, Md. Moinul},
90
+ editor = {Ullah, Abrar and Anwar, Sajid},
91
+ title = {Uddessho: An Extensive Benchmark Dataset for Multimodal Author Intent Classification in Low-Resource Bangla Language},
92
+ booktitle = {Proceedings of International Conference on Information Technology and Applications},
93
+ year = {2025},
94
+ publisher = {Springer Nature Singapore},
95
+ address = {Singapore},
96
+ pages = {383--393},
97
+ isbn = {978-981-96-1758-6}
98
+ }
99
+ ```