gpt4 book ai didi

python - POS 标记中的字符串索引超出范围

转载 作者:太空宇宙 更新时间:2023-11-04 04:28:47 25 4
gpt4 key购买 nike

我正在使用 python 中的 nltk 包进行词性标记。现在它显示错误字符串索引超出范围,即使我的字符串不大。

import nltk

sample_list = ['', 'emma', 'jane', 'austen', '1816', '', 'volume', 'chapter', 'emma', 'woodhouse', ' ','handsome', ' ', 'clever', ' ', 'rich', ' ', 'comfortable', 'home', 'happy', 'disposition', ' ','seemed', 'unite', 'best','blessings', 'existence', '', 'lived','nearly', 'twenty-one', 'years','world', 'little', 'distress', 'vex', '', 'youngest','two']

tagged = nltk.pos_tag(sample_list)

screenshot of the error

最佳答案

你的问题是空字符串,即 '' 所以你可以使用:

tagged = nltk.pos_tag([i for i in sample_list if i])

关于python - POS 标记中的字符串索引超出范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53046724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com