当我试图通过spacy读取txt文件时遇到以下错误。
TypeError:参数'string'具有错误的类型(预期的unicode,得到了str)
这是下面的代码
from __future__ import unicode_literals
import spacy
nlp= spacy.load('en')
doc_file = nlp(open("example.txt").read())
答案 0 :(得分:0)
您应该使用nlp = spacy.blank('en')而不是spacy.load('en')。
nlp= spacy.blank('en')
doc_file = nlp(open("example.txt").read())