def tokenize(sent):
'''Return the tokens of a sentence including punctuation.
>>> tokenize('Bob dropped the apple. Where is the apple?')
['Bob', 'dropped', 'the', 'apple', '.', 'Where', 'is', 'the', 'apple', '?']
'''
return [token.replace("``", '"').replace("''", '"') for token in nltk.word_tokenize(sent)]
QnARecurAtteLatest3Atten.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录