gpt4 book ai didi

python - 如何标记 NLTK 中的字符串句子?

转载 作者:IT老高 更新时间:2023-10-28 20:33:38 41 4
gpt4 key购买 nike

我正在使用 nltk,所以我想创建自己的自定义文本,就像 nltk.books 上的默认文本一样。但是,我刚刚开始使用类似的方法

my_text = ['This', 'is', 'my', 'text']

我想找到任何方法来输入我的“文本”:

my_text = "This is my text, this is a nice way to input text."

哪种方法,python 或 nltk 允许我这样做。更重要的是,如何消除标点符号?

最佳答案

这实际上是在 main page of nltk.org :

>>> import nltk
>>> sentence = """At eight o'clock on Thursday morning
... Arthur didn't feel very good."""
>>> tokens = nltk.word_tokenize(sentence)
>>> tokens
['At', 'eight', "o'clock", 'on', 'Thursday', 'morning',
'Arthur', 'did', "n't", 'feel', 'very', 'good', '.']

关于python - 如何标记 NLTK 中的字符串句子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15057945/

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