faruk commited on
Commit
4941254
1 Parent(s): bab22f9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md CHANGED
@@ -1,3 +1,43 @@
1
  ---
2
  license: afl-3.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: afl-3.0
3
  ---
4
+
5
+ # Bengali Female VS Male Names Dataset
6
+ An NLP dataset that contains 2030 data samples of Bengali names and corresponding gender both for female and male. This is a very small and simple toy dataset that can be used by NLP starters to practice sequence classification problem and other NLP problems like gender recognition from names.
7
+
8
+ # Background
9
+ In Bengali language, name of a person is dependent largely on their gender. Normally, name of a female ends with certain type of suffix "A", "I", "EE" ["আ", "ই", "ঈ"]. And the names of male are significantly different from female in terms of phoneme patterns and ending suffix. So, In my observation there is a significant possibility that these difference in patterns can be used for gender classification based on names.
10
+
11
+
12
+ Find the full documentation here:
13
+ [Documentation and dataset specifications](https://github.com/faruk-ahmad/bengali-female-vs-male-names)
14
+
15
+ ## Dataset Format
16
+ The dataset is in CSV format. There are two columns- namely
17
+ 1. Name
18
+ 2. Gender
19
+
20
+ Each row has two attributes. First one is name, second one is the gender. The name attribute is in ```utf-8``` encoding. And the second attribute i.e. the gender attribute has been signified by 0 and 1 as
21
+
22
+ | | |
23
+ |---|---|
24
+ |male| 0|
25
+ |female| 1|
26
+ | | |
27
+
28
+ ## Dataset Statistics
29
+ The number of samples per class is as bellow-
30
+
31
+ | | |
32
+ |---|---|
33
+ |male| 1029|
34
+ |female| 1001|
35
+ | | |
36
+
37
+ ## Possible Use Cases
38
+ 1. Sequence Classification using RNN, LSTM etc
39
+ 2. Sequence modeling using other type of machine learning algorithms
40
+ 3. Gender recognition based on names
41
+
42
+ ## Disclaimer
43
+ The names were collected from internet using different source like wikipedia, baby name suggestion websites etc. If someones name is in the dataset, that is totally unintentional.