显然出现了问题,我不知道是什么! 我一直试图在Mac Mountain Lion上运行scikit-learn :: LinearSVC,当我到达svm.fit时它会崩溃并给我一个警告说“Python在使用liblinear.so插件时退出unpexcetdly。”
在终端我看到“分段错误:11”。
因为我使用所有默认设置,所以没什么好看的:
x = np array of string
vec = HashingVectorizer(stop_words='english', non_negative=True)
x_train = vec.transform(x)
svm = LinearSVC()
svm.fit(x_train, y)
我尝试卸载scikit-learn并重新安装多次但行为相同。
我该怎么办?