Suchandra commited on
Commit
b9735c7
1 Parent(s): 5275a16

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: bn
3
+ datasets:
4
+ - wikiann
5
+ ---
6
+
7
+ <h1>Bengali Named Entity Recognition</h1>
8
+ Fine-tuning bert-base-multilingual-cased on Wikiann dataset for performing NER on Bengali language.
9
+
10
+
11
+ ## Label and ID Mapping
12
+
13
+ | Label ID | Label |
14
+ | -------- | ----- |
15
+ |0 | O |
16
+ | 1 | B-PER |
17
+ | 2 | I-PER |
18
+ | 3 | B-ORG|
19
+ | 4 | I-ORG |
20
+ | 5 | B-LOC |
21
+ | 6 | I-LOC |
22
+
23
+ <h1>Results</h1>
24
+
25
+ | Name | Overall F1 | LOC F1 | ORG F1 | PER F1 |
26
+ | ---- | -------- | ----- | ---- | ---- |
27
+ | Validation set | 0.970187 | 0.969212 | 0.956831 | 0.982079 |
28
+ | Test set | 0.9673011 | 0.967120 | 0.963614 | 0.970938 |
29
+