vesteinn commited on
Commit
c3b223b
1 Parent(s): bf6535b

Added labels to loader

Browse files
Files changed (1) hide show
  1. sosialurin-faroese-ner.py +17 -0
sosialurin-faroese-ner.py CHANGED
@@ -23,6 +23,23 @@
23
 
24
 
25
  LABELS = [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ]
27
 
28
 
 
23
 
24
 
25
  LABELS = [
26
+ 'B-Date',
27
+ 'B-Location',
28
+ 'B-Miscellaneous',
29
+ 'B-Money',
30
+ 'B-Organization',
31
+ 'B-Percent',
32
+ 'B-Person',
33
+ 'B-Time',
34
+ 'I-Date',
35
+ 'I-Location',
36
+ 'I-Miscellaneous',
37
+ 'I-Money',
38
+ 'I-Organization',
39
+ 'I-Percent',
40
+ 'I-Person',
41
+ 'I-Time',
42
+ 'O',
43
  ]
44
 
45