当加载本地文档时,用的相对路径,
from sklearn.datasets import load_files ##用于加载文档
stopword_path = r'../com'
stopword = load_files(stopword_path,encoding='utf-8')
会发生以下的错误:
FileNotFoundError: [WinError 3] 系统找不到指定的路径。: '../com'
解决办法:
首先找到 要加载的文档的位置:
"D:\python-lesson\yanning\com\data\comment.txt"
再找到 .py 文件的位置:
"D:\python-lesson\yanning\python_lesson.ipynb"
找到两个位置共同的最小父文件夹 yanning ,此时将相对路径设置为
'../yanning/com'
即可运行出结果,而且 .txt文件要保存在一个文件夹中,并且这个文件夹不用写进相对路径中去,例如本次例子中的data 文件夹