musfiqurtuhin commited on
Commit
8341b6a
Β·
verified Β·
1 Parent(s): ba71178

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +135 -3
README.md CHANGED
@@ -1,3 +1,135 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - expert-generated
6
+ language:
7
+ - bn
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 1K<n<10K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - image-classification
18
+ task_ids:
19
+ - multi-class-image-classification
20
+ pretty_name: BanglaDressNet
21
+ tags:
22
+ - fashion
23
+ - clothing
24
+ - bangladesh
25
+ - culture
26
+ - classification
27
+ dataset_info:
28
+ features:
29
+ - name: image
30
+ dtype: image
31
+ - name: label
32
+ dtype:
33
+ class_label:
34
+ names:
35
+ '0': Blouse
36
+ '1': Dhoti
37
+ '2': Dupatta
38
+ '3': Fatua
39
+ '4': Frock
40
+ '5': Gamcha
41
+ '6': Koti
42
+ '7': Lungi
43
+ '8': Maxi
44
+ '9': Muffler
45
+ '10': Panjabi
46
+ '11': Petticoat
47
+ '12': Salwar-Kameez
48
+ '13': Sando-Genji
49
+ '14': Saree
50
+ '15': Shawl
51
+ ---
52
+
53
+ # πŸ‡§πŸ‡© BanglaDressNet: Traditional Bangladeshi Dress Dataset
54
+
55
+ ![Language](https://img.shields.io/badge/Language-Bengali-green?style=for-the-badge&logo=google-translate&logoColor=white)
56
+ ![Task](https://img.shields.io/badge/Task-Image%20Classification-red?style=for-the-badge&logo=mediafire&logoColor=white)
57
+ ![Size](https://img.shields.io/badge/Size-8K%20Images-blue?style=for-the-badge&logo=files&logoColor=white)
58
+ ![License](https://img.shields.io/badge/License-CC--BY--4.0-lightgrey?style=for-the-badge)
59
+
60
+ ## πŸ“„ Context
61
+ **Official dataset** for the research paper:
62
+ > **"Multi-Level Ensemble Learning for Fine-Grained Classification of Traditional Bangladeshi Dress Using Deep Transfer Models"**
63
+ > *Accepted at: 2025 7th International Conference on Electrical Information and Communication Technology (EICT)*
64
+
65
+ This dataset, **BanglaDressNet**, contains **8,000 images** of **16 categories** of traditional Bangladeshi attire, collected to facilitate fine-grained classification and cultural heritage preservation.
66
+
67
+ ---
68
+
69
+ ## πŸ”— Associated Resources
70
+
71
+ | Resource | Link |
72
+ | :--- | :--- |
73
+ | πŸ“„ **Paper** | *Awaiting Publication* |
74
+ | πŸ™ **GitHub Repository** | [![GitHub](https://img.shields.io/badge/GitHub-Repo-black?style=flat&logo=github)](https://github.com/MusfiqurTuhin/BanglaDressNet-Classification) |
75
+ | 🐍 **Kaggle Dataset** | [![Kaggle](https://img.shields.io/badge/Kaggle-Dataset-blue?style=flat&logo=kaggle)](https://www.kaggle.com/datasets/musfiqurtuhin/bangladressnet) |
76
+
77
+ ---
78
+
79
+ ## πŸ’Ύ Dataset Specifications
80
+
81
+ | Feature | Details |
82
+ | :--- | :--- |
83
+ | **Total Images** | **8,000** |
84
+ | **Classes** | 16 |
85
+ | **Format** | JPG/PNG |
86
+ | **Preprocessing** | Resized to 224x224 |
87
+
88
+ ### Class Breakdown
89
+ 1. **Blouse**
90
+ 2. **Dhoti**
91
+ 3. **Dupatta**
92
+ 4. **Fatua**
93
+ 5. **Frock**
94
+ 6. **Gamcha**
95
+ 7. **Koti**
96
+ 8. **Lungi**
97
+ 9. **Maxi**
98
+ 10. **Muffler**
99
+ 11. **Panjabi**
100
+ 12. **Petticoat**
101
+ 13. **Salwar-Kameez**
102
+ 14. **Sando-Genji**
103
+ 15. **Saree**
104
+ 16. **Shawl**
105
+
106
+ ---
107
+
108
+ ## πŸš€ Quick Start
109
+
110
+ ```python
111
+ from datasets import load_dataset
112
+
113
+ # Load the dataset
114
+ dataset = load_dataset("musfiqurtuhin/bangladressnet")
115
+
116
+ # View a sample
117
+ print(dataset['train'][0])
118
+ ```
119
+
120
+ ---
121
+
122
+ ## 🀝 Citation
123
+
124
+ If you use this dataset, please cite our work:
125
+
126
+ ```bibtex
127
+ @misc{md__musfiqur_rahman_2025,
128
+ title={BanglaDressNet},
129
+ url={https://www.kaggle.com/dsv/13932271},
130
+ DOI={10.34740/KAGGLE/DSV/13932271},
131
+ publisher={Kaggle},
132
+ author={Md. Musfiqur Rahman},
133
+ year={2025}
134
+ }
135
+ ```