Datasets:
Tasks:
Token Classification
Sub-tasks:
named-entity-recognition
Languages:
English
Size:
1K<n<10K
License:
Update ner.py
Browse files
ner.py
CHANGED
@@ -34,11 +34,11 @@ class indian_names(datasets.GeneratorBasedBuilder):
|
|
34 |
"ner_tags": datasets.Sequence(
|
35 |
datasets.features.ClassLabel(
|
36 |
names=[
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
]
|
43 |
)
|
44 |
),
|
|
|
34 |
"ner_tags": datasets.Sequence(
|
35 |
datasets.features.ClassLabel(
|
36 |
names=[
|
37 |
+
"O",
|
38 |
+
"B-corporation",
|
39 |
+
"I-corporation",
|
40 |
+
"B-person",
|
41 |
+
"I-person"
|
42 |
]
|
43 |
)
|
44 |
),
|