意图是基于POS标签大写,我可以通过下面的链接来实现。
How can I best determine the correct capitalization for a word?
试着用spacy来达到类似的效果?
def truecase(doc):
truecased_sents = [] # list of truecased sentences
tagged_sent = token.tag_([word.lower() for token in doc])
normalized_sent = [w.capitalize() if t in ["NN","NNS"] else w for (w,t) in tagged_sent]
normalized_sent[0] = normalized_sent[0].capitalize()
string = re.sub(" (?=[\.,'!?:;])", "", ' '.join(normalized_sent))
return string它抛出了这个错误
tagged_sent = token.tag_([word.lower() for token in doc])
NameError: global name 'token' is not defined如何将令牌声明为全局标记并解决此问题。我的方法正确吗?
发布于 2017-12-30 04:29:41
import spacy, re
nlp = spacy.load('en_core_web_sm')
doc = nlp(u'autonomous cars shift insurance liability toward manufacturers.')
tagged_sent = [(w.text, w.tag_) for w in doc]
normalized_sent = [w.capitalize() if t in ["NN","NNS"] else w for (w,t) in tagged_sent]
normalized_sent[0] = normalized_sent[0].capitalize()
string = re.sub(" (?=[\.,'!?:;])", "", ' '.join(normalized_sent))
print string输出:自主汽车将保险责任转移给制造商。
https://stackoverflow.com/questions/48030217
复制相似问题