说我有这个清单
jay = ['Despite', 'similar', 'intensity', 'of', 'alcohol', '<Disease:D013375>', 'withdrawal', 'symptoms', '</Disease:D013375>', ',', 'ALC', '/', 'COC', 'subjects', 'received', 'less', 'oxazepam', 'to', 'treat', 'alcohol', '<Disease:D013375>', 'withdrawal', 'symptoms', '</Disease:D013375>', 'compared', 'to', 'ALC', 'subjects', '.']
我想创建一个与原始列表相对应的新列表。如果某个项目介于项目'<Disease:XXXXX>'
和'</Disease:XXXXX>'
之间,则第一个项目将被标记为'B-COL',其余项目将被标记为'I-COL'。
项目'<Disease:XXXXX>'
和'</Disease:XXXXX>'
本身未获得任何标签。 XXXX的范围可以是数字。
所有其他项目都标记有“ O”。
所以这是我想要的示例输出。
idealOutput= ['O', 'O', 'O', 'O', 'O', 'B-COL', 'I-COL', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-COL', 'I-COL', 'O', 'O', 'O', 'O', 'O']
“疾病”标签对的数量可以变化,这些标签之间的项目数量也可以变化。
这是我的尝试:
wow = jay
labs = []
for i in range(0, len(wow)):
if wow[i].startswith("<Disease"):
labs.append('DelStrB')
elif i>0 and i<=len(labs):
if labs[i-1] == 'DelStrB':
labs.append('B-COL')
i = i + 1
while not (wow[i].startswith("</Disease")):
labs.append('I-COL')
i = i + 1
if wow[i].startswith("</Disease"):
labs.append('DelStrE')
i = i + 1
elif wow[i].startswith("</Disease"):
k=9 #do nothing
else:
labs.append('O')
elif wow[i].startswith("</Disease"):
k=9 #do nothing
else:
labs.append('O')
labs[:] = [x for x in labs if x != 'DelStrB']
labs[:] = [x for x in labs if x != 'DelStrE']
print(labs)
结果是
['O', 'O', 'O', 'O', 'O', 'B-COL', 'I-COL', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-COL', 'O', 'O', 'O', 'O', 'O']
哪个不正确。我也知道,有一种计算效率更高,更优雅的编码方式,但是无法产生。
答案 0 :(得分:2)
您可以使用一个简单的生成器:
<assembly fullname="System">
<type fullname="System.*Converter" />
</assembly>
输出:
import re
jay = ['Despite', 'similar', 'intensity', 'of', 'alcohol', '<Disease:D013375>', 'withdrawal', 'symptoms', '</Disease:D013375>', ',', 'ALC', '/', 'COC', 'subjects', 'received', 'less', 'oxazepam', 'to', 'treat', 'alcohol', '<Disease:D013375>', 'withdrawal', 'symptoms', '</Disease:D013375>', 'compared', 'to', 'ALC', 'subjects', '.']
def results(d):
_flag = -1
for i in d:
if re.findall('\<Disease:\w+\>', i):
_flag = 1
elif re.findall('\</Disease:\w+\>', i):
_flag = -1
else:
if _flag == -1:
yield 'O'
elif _flag == 1:
yield 'B-COL'
_flag = 0
else:
yield 'I-COL'
print(list(results(jay)))
答案 1 :(得分:1)
使用迭代方法的解决方案:
jay = ['Despite', 'similar', 'intensity', 'of', 'alcohol', '<Disease:D013375>', 'withdrawal', 'symptoms', '</Disease:D013375>', ',', 'ALC', '/', 'COC', 'subjects', 'received', 'less', 'oxazepam', 'to', 'treat', 'alcohol', '<Disease:D013375>', 'withdrawal', 'symptoms', '</Disease:D013375>', 'compared', 'to', 'ALC', 'subjects', '.']
result = []
inside = False
seen_BCOL = False
for i in range(len(jay)):
if jay[i].startswith('<Disease'):
inside = True
elif jay[i].startswith('</Disease'):
inside = False
seen_BCOL = False
elif inside == True:
if seen_BCOL == False:
result.append('B-COL')
seen_BCOL = True
else:
result.append('I-COL')
elif inside == False:
result.append('O')
print(result)
['0', '0', '0', '0', '0', '0', 'B-COL', 'I-COL', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'B-COL', 'I-COL', '0', '0', '0', '0', '0', '0']
答案 2 :(得分:-1)
您可以将itertools.groupby
与用于查找“疾病”项的按键功能一起使用,以将列表分为奇数和偶数组,以使用不同的标记方法:
import re
from itertools import groupby
[t for i, l in enumerate(list(g) for k, g in groupby(jay, key=lambda s: re.match(r'</?Disease:\w+>', s)) if not k) for t in (('B-COL',) + ('I-COL',) * (len(l) - 1) if i % 2 else ('O',) * len(l))]
这将返回:
['O', 'O', 'O', 'O', 'O', 'B-COL', 'I-COL', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-COL', 'I-COL', 'O', 'O', 'O', 'O', 'O']
请注意,您的预期输出不正确,因为在'O'
和'B-COL'
的两个序列之间还有两个'I-COL'
。