imvladikon
commited on
Commit
•
ba405c1
1
Parent(s):
078a99d
Update nemo_corpus.py
Browse files- nemo_corpus.py +8 -5
nemo_corpus.py
CHANGED
@@ -289,11 +289,14 @@ class NemoCorpusNestedConfig(datasets.BuilderConfig):
|
|
289 |
ner_tags_4 = []
|
290 |
else:
|
291 |
splits = line.split(sep)
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
|
|
|
|
|
|
297 |
|
298 |
if tokens:
|
299 |
yield guid, {
|
|
|
289 |
ner_tags_4 = []
|
290 |
else:
|
291 |
splits = line.split(sep)
|
292 |
+
tags_line = splits[-4:]
|
293 |
+
token_line = line[:-len(sep.join(tags_line))].strip()
|
294 |
+
tokens.append(token_line)
|
295 |
+
tag1, tag2, tag3, tag4 = tags_line
|
296 |
+
ner_tags.append(tag1.rstrip())
|
297 |
+
ner_tags_2.append(tag2.rstrip())
|
298 |
+
ner_tags_3.append(tag3.rstrip())
|
299 |
+
ner_tags_4.append(tag4.rstrip())
|
300 |
|
301 |
if tokens:
|
302 |
yield guid, {
|