Kriyans commited on
Commit
05ec266
1 Parent(s): d6445d7

Update ner.py

Browse files
Files changed (1) hide show
  1. ner.py +10 -2
ner.py CHANGED
@@ -35,11 +35,19 @@ class indian_names(datasets.GeneratorBasedBuilder):
35
  "ner_tags": datasets.Sequence(
36
  datasets.features.ClassLabel(
37
  names=[
38
- "O",
39
  "B-corporation",
40
  "I-corporation",
 
 
 
 
 
 
41
  "B-person",
42
- "I-person"
 
 
43
  ]
44
  )
45
  ),
 
35
  "ner_tags": datasets.Sequence(
36
  datasets.features.ClassLabel(
37
  names=[
38
+ "O",
39
  "B-corporation",
40
  "I-corporation",
41
+ "B-creative-work",
42
+ "I-creative-work",
43
+ "B-group",
44
+ "I-group",
45
+ "B-location",
46
+ "I-location",
47
  "B-person",
48
+ "I-person",
49
+ "B-product",
50
+ "I-product",
51
  ]
52
  )
53
  ),