我是NLP的新手。我试图在python 3.7上使用nlp标记句子,所以我使用了以下代码
import nltk
text4="This is the first sentence.A gallon of milk in the U.S. cost
$2.99.Is this the third sentence?Yes,it is!"
x=nltk.sent_tokenize(text4)
x[0]
我期望x [0]返回第一句话,但是我得到了
Out[4]: 'This is the first sentence.A gallon of milk in the U.S. cost $2.99.Is this the third sentence?Yes,it is!'
我做错什么了吗?
答案 0 :(得分:1)
您需要在句子中使用有效的空格和标点符号,以使分词器正常运行:
import nltk
text4 = "This is a sentence. This is another sentence."
nltk.sent_tokenize(text4)
# ['This is a sentence.', 'This is another sentence.']
## Versus What you had before
nltk.sent_tokenize("This is a sentence.This is another sentence.")
# ['This is a sentence.This is another sentence.']
答案 1 :(得分:1)
NLTK send_tokenizer无法很好地处理格式错误的文本。如果您提供适当的间距,则可以使用。
import nltk
nltk.download('punkt')
text4="This is the first sentence. A gallon of milk in the U.S. cost $2.99. Is this
the third sentence? Yes, it is"
x=nltk.sent_tokenize(text4)
x[0]
或 您可以使用它。
import re
text4 = "This is the first sentence. A gallon of milk in the U.S. cost 2.99. Is this
the third sentence? Yes it is"
sentences = re.split(r' *[\.\?!][\'"\)\]]* *', text4)
sentences