kalixlouiis commited on
Commit
725127b
·
verified ·
1 Parent(s): dcabad1

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -0
README.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: train
6
+ path: data.csv
7
+ dataset_info:
8
+ features:
9
+ - name: text
10
+ dtype: string
11
+ - name: label
12
+ dtype:
13
+ class_label:
14
+ names:
15
+ '0': not_spam
16
+ '1': spam
17
+ splits:
18
+ - name: train
19
+ num_examples: 1000
20
+ download_size: 0
21
+ dataset_size: 0
22
+ license: cc-by-4.0
23
+ language:
24
+ - my
25
+ tags:
26
+ - text-classification
27
+ - spam-detection
28
+ - burmese
29
+ task_categories:
30
+ - text-classification
31
+ size_categories:
32
+ - 1K<n<10K
33
+ ---
34
+
35
+ # Dataset Card for burmese-text-spam-detection
36
+
37
+ ## Dataset Description
38
+
39
+ The **burmese-text-spam-detection** dataset is a high-quality, human-curated collection of 1,000 Burmese text entries specifically designed for binary text classification tasks. The dataset is balanced equally with 500 "spam" and 500 "not_spam" samples.
40
+
41
+ This dataset was compiled to facilitate the development and evaluation of spam-filtering models for the Burmese language, covering diverse sources such as internet comments, social media interactions, and emails.
42
+
43
+ ## Dataset Details
44
+
45
+ - **Language:** Burmese (Myanmar Unicode)
46
+ - **Total Samples:** 1,000
47
+ - **Class Distribution:** 500 Spam / 500 Not Spam
48
+ - **Format:** CSV with two columns: `text` and `label`
49
+ - **Creators:** [Thazin Nyein](https://huggingface.co/Vxlentina) & [Khant Sint Heinn](https://huggingface.co/kalixlouiis)
50
+ - **License:** [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)
51
+
52
+ ## Data Curation and Methodology
53
+
54
+ The dataset has been meticulously prepared to ensure high utility for machine learning applications:
55
+
56
+ * **Data Sources:** Data was aggregated from various digital platforms including public comments and professional/personal email communications.
57
+ * **Preprocessing:** All text entries have been cleaned and standardized. The dataset uses valid Myanmar Unicode, ensuring compatibility with modern NLP toolkits.
58
+ * **Annotation Process:** The dataset underwent a rigorous peer-review labeling process. Both creators independently labeled the entire corpus, followed by a consensus-building phase where both parties verified every label for accuracy and consistency.
59
+
60
+ ## Limitations and Bias
61
+
62
+ While the creators have made every effort to ensure accuracy, users should be aware of the following:
63
+
64
+ * **Subjectivity:** Labeling is inherently influenced by the annotators' perspectives. Despite the collaborative verification process, the classification reflects the creators' interpretation of what constitutes "spam" versus "not spam" in the context of the Burmese digital landscape.
65
+ * **Context:** Spam behavior evolves rapidly. This dataset provides a snapshot in time and may reflect linguistic trends and spam patterns prevalent during its creation.
66
+
67
+ ## Citation
68
+
69
+ If you use this dataset in your research or projects, please cite it as:
70
+
71
+ ```bibtex
72
+ @dataset{burmese_text_spam_detection,
73
+ author = {Thazin Nyein and Khant Sint Heinn},
74
+ title = {Burmese Text Spam Detection},
75
+ year = {2026},
76
+ link = {https://huggingface.co/datasets/Vxlentina/burmese-text-spam-detection},
77
+ publisher = {Hugging Face},
78
+ license = {CC-BY-4.0}
79
+ }
80
+ ```
81
+ ---