Datasets:
Tasks:
Token Classification
Modalities:
Text
Sub-tasks:
named-entity-recognition
Languages:
Hebrew
Size:
1K - 10K
ArXiv:
License:
Commit
·
a465c37
1
Parent(s):
e146819
Update bmc.py
Browse files
bmc.py
CHANGED
@@ -132,6 +132,7 @@ class BMC(datasets.GeneratorBasedBuilder):
|
|
132 |
yield guid, {
|
133 |
"id": str(guid),
|
134 |
"tokens": tokens,
|
|
|
135 |
"ner_tags": ner_tags,
|
136 |
}
|
137 |
guid += 1
|
|
|
132 |
yield guid, {
|
133 |
"id": str(guid),
|
134 |
"tokens": tokens,
|
135 |
+
"raw_tags": raw_tags,
|
136 |
"ner_tags": ner_tags,
|
137 |
}
|
138 |
guid += 1
|