我正在学习scikit中的随机森林学习,作为一个例子,我想使用随机森林分类器进行文本分类,使用我自己的数据集。所以首先我用tfidf对文本进行矢量化并进行分类:
from sklearn.ensemble import RandomForestClassifier
classifier=RandomForestClassifier(n_estimators=10)
classifier.fit(X_train, y_train)
prediction = classifier.predict(X_test)
当我运行分类时,我得到了这个:
TypeError: A sparse matrix was passed, but dense data is required. Use X.toarray() to convert to a dense numpy array.
然后我将.toarray()
用于X_train
,我得到了以下内容:
TypeError: sparse matrix length is ambiguous; use getnnz() or shape[0]
从我之前的question我知道我需要减少numpy数组的维数,所以我也这样做:
from sklearn.decomposition.truncated_svd import TruncatedSVD
pca = TruncatedSVD(n_components=300)
X_reduced_train = pca.fit_transform(X_train)
from sklearn.ensemble import RandomForestClassifier
classifier=RandomForestClassifier(n_estimators=10)
classifier.fit(X_reduced_train, y_train)
prediction = classifier.predict(X_testing)
然后我得到了这个例外:
File "/usr/local/lib/python2.7/site-packages/sklearn/ensemble/forest.py", line 419, in predict
n_samples = len(X)
File "/usr/local/lib/python2.7/site-packages/scipy/sparse/base.py", line 192, in __len__
raise TypeError("sparse matrix length is ambiguous; use getnnz()"
TypeError: sparse matrix length is ambiguous; use getnnz() or shape[0]
我尝试了以下内容:
prediction = classifier.predict(X_train.getnnz())
得到了这个:
File "/usr/local/lib/python2.7/site-packages/sklearn/ensemble/forest.py", line 419, in predict
n_samples = len(X)
TypeError: object of type 'int' has no len()
从中提出了两个问题:如何使用随机森林进行正确分类?以及X_train
发生了什么?
然后我尝试了以下内容:
df = pd.read_csv('/path/file.csv',
header=0, sep=',', names=['id', 'text', 'label'])
X = tfidf_vect.fit_transform(df['text'].values)
y = df['label'].values
from sklearn.decomposition.truncated_svd import TruncatedSVD
pca = TruncatedSVD(n_components=2)
X = pca.fit_transform(X)
a_train, a_test, b_train, b_test = train_test_split(X, y, test_size=0.33, random_state=42)
from sklearn.ensemble import RandomForestClassifier
classifier=RandomForestClassifier(n_estimators=10)
classifier.fit(a_train, b_train)
prediction = classifier.predict(a_test)
from sklearn.metrics.metrics import precision_score, recall_score, confusion_matrix, classification_report
print '\nscore:', classifier.score(a_train, b_test)
print '\nprecision:', precision_score(b_test, prediction)
print '\nrecall:', recall_score(b_test, prediction)
print '\n confussion matrix:\n',confusion_matrix(b_test, prediction)
print '\n clasification report:\n', classification_report(b_test, prediction)
答案 0 :(得分:7)
我对sklearn
了解不多,尽管我模糊地回想起一些早期问题,这是由于转向使用稀疏基质而引发的。在内部,一些矩阵必须由m.toarray()
或m.todense()
替换。
但为了让您了解错误消息的含义,请考虑
In [907]: A=np.array([[0,1],[3,4]])
In [908]: M=sparse.coo_matrix(A)
In [909]: len(A)
Out[909]: 2
In [910]: len(M)
...
TypeError: sparse matrix length is ambiguous; use getnnz() or shape[0]
In [911]: A.shape[0]
Out[911]: 2
In [912]: M.shape[0]
Out[912]: 2
通常在Python中使用 len()
来计算列表的第一级术语的数量。应用于2d数组时,它是行数。但A.shape[0]
是计算行数的更好方法。而且M.shape[0]
是一样的。在这种情况下,您不会对.getnnz
感兴趣,A
是稀疏矩阵的非零项的数量。 A.nonzero()
没有此方法,但可以从{{1}}派生。
答案 1 :(得分:2)
如果您将相同的数据结构(类型和形状)传递给分类器的fit
方法和predict
方法,则有点不清楚。随机森林需要很长时间才能运行大量功能,因此建议减少链接后的维度。
您应该将SVD应用于训练和测试数据,以便训练分类器在与您希望预测的数据相同的形状输入上进行训练。检查拟合的输入,预测方法的输入具有相同数量的特征,并且都是数组而不是稀疏矩阵。
更新了示例: 已更新为使用数据框
from sklearn.feature_extraction.text import TfidfVectorizer
tfidf_vect= TfidfVectorizer( use_idf=True, smooth_idf=True, sublinear_tf=False)
from sklearn.cross_validation import train_test_split
df= pd.DataFrame({'text':['cat on the','angel eyes has','blue red angel','one two blue','blue whales eat','hot tin roof','angel eyes has','have a cat']\
,'class': [0,0,0,1,1,1,0,3]})
X = tfidf_vect.fit_transform(df['text'].values)
y = df['class'].values
from sklearn.decomposition.truncated_svd import TruncatedSVD
pca = TruncatedSVD(n_components=2)
X_reduced_train = pca.fit_transform(X)
a_train, a_test, b_train, b_test = train_test_split(X, y, test_size=0.33, random_state=42)
from sklearn.ensemble import RandomForestClassifier
classifier=RandomForestClassifier(n_estimators=10)
classifier.fit(a_train.toarray(), b_train)
prediction = classifier.predict(a_test.toarray())
请注意,SVD在拆分为训练集和测试集之前发生,因此传递给预测变量的数组与调用n
方法的数组具有相同的fit
。