gpt4 book ai didi

Python Spacy NLP - TypeError : Argument 'string' has incorrect type (expected unicode, got str)

转载 作者:行者123 更新时间:2023-12-03 17:14:51 25 4
gpt4 key购买 nike

当我尝试在 spacy.txt 中读取 txt 文件时出现以下错误。

TypeError: Argument 'string' has incorrect type (expected unicode, got str)



这是下面的代码
from __future__  import unicode_literals
import spacy
nlp= spacy.load('en')
doc_file = nlp(open("example.txt").read())

最佳答案

您应该使用 nlp= spacy.blank('en') 而不是 spacy.load('en')。

nlp= spacy.blank('en')
doc_file = nlp(open("example.txt").read())

关于Python Spacy NLP - TypeError : Argument 'string' has incorrect type (expected unicode, got str),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51798593/

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