osiria commited on
Commit
a9c73a0
·
verified ·
1 Parent(s): bea0c8f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ ---
6
+
7
+ --------------------------------------------------------------------------------------------------
8
+
9
+ <body>
10
+ <span class="vertical-text" style="background-color:lightgreen;border-radius: 3px;padding: 3px;"> </span>
11
+ <br>
12
+ <span class="vertical-text" style="background-color:orange;border-radius: 3px;padding: 3px;">    Task: Named Entity Recognition</span>
13
+ <br>
14
+ <span class="vertical-text" style="background-color:lightblue;border-radius: 3px;padding: 3px;">    Model: BERT</span>
15
+ <br>
16
+ <span class="vertical-text" style="background-color:tomato;border-radius: 3px;padding: 3px;">    Lang: EN</span>
17
+ <br>
18
+ <span class="vertical-text" style="background-color:lightgrey;border-radius: 3px;padding: 3px;">  </span>
19
+ <br>
20
+ <span class="vertical-text" style="background-color:#CF9FFF;border-radius: 3px;padding: 3px;"> </span>
21
+ </body>
22
+
23
+ --------------------------------------------------------------------------------------------------
24
+
25
+ <h3>Model description</h3>
26
+
27
+ This is a <b>BERT</b> <b>[1]</b> cased model for the <b>English</b> language, fine-tuned for <b>Named Entity Recognition</b> (<b>Person</b>, <b>Location</b>, <b>Organization</b> and <b>Miscellanea</b> classes) on the [WikiNER](https://figshare.com/articles/dataset/Learning_multilingual_named_entity_recognition_from_Wikipedia/5462500) dataset <b>[2]</b>, using Google's <b>bert-base-cased</b> as a pre-trained model.
28
+
29
+ <h3>Training and Performances</h3>
30
+
31
+ The model is trained to perform entity recognition over 4 classes: <b>PER</b> (persons), <b>LOC</b> (locations), <b>ORG</b> (organizations), <b>MISC</b> (miscellanea, mainly events, products and services). It has been fine-tuned for Named Entity Recognition, using the WikiNER English dataset.
32
+ The model has been trained for 1 epoch with a constant learning rate of 1e-5.
33
+
34
+
35
+ <h3>References</h3>
36
+
37
+ [1] https://arxiv.org/abs/1810.04805
38
+
39
+ [2] https://www.sciencedirect.com/science/article/pii/S0004370212000276
40
+
41
+
42
+ <h3>Limitations</h3>
43
+
44
+ This model is mainly trained on Wikipedia, so it's particularly suitable for natively digital text from the world wide web, written in a correct and fluent form (like wikis, web pages, news, etc.). However, it may show limitations when it comes to chaotic text, containing errors and slang expressions
45
+ (like social media posts) or when it comes to domain-specific text (like medical, financial or legal content).
46
+
47
+
48
+ <h3>License</h3>
49
+
50
+ The model is released under <b>Apache-2.0</b> license
51
+