使用 Knn 分类器时出现无效的形状错误
Posted
技术标签:
【中文标题】使用 Knn 分类器时出现无效的形状错误【英文标题】:Invalid shape error while using Knn Classfier 【发布时间】:2019-08-31 11:15:12 【问题描述】:以下是X
和Y
可变形状:
X_train, X_test, y_train, y_test = train_test_split(X, Y, test_size=0.33, random_state=42)
## Output for shapes
X_train.shape = (970, 298)
X_test.shape = (478, 298)
len(y_train) = 970
len(y_test) = 478
现在我从Knn
分配Multi-output
分类器:
knn = KNeighborsClassifier(n_neighbors=3)
classifier = MultiOutputClassifier(knn, n_jobs=-1)
classifier.fit(X_train,y_train)
predictions = classifier.predict(X_test)
print classifier.score(y_test,predictions)
当我尝试运行它时,我收到以下错误:
ValueError:X 和 Y 矩阵的维度不兼容:X.shape[1] == 3 而 Y.shape[1] == 298
现在我可以确定错误与变量的形状有关,也许我在将它们拆分以进行训练或测试时混合它们。
尝试搜索但无济于事,我犯了什么错误?
示例:
X = (0, 96) 0.24328157992528274
(0, 191) 0.4086854706249901
(0, 279) 0.3597892480519696
(0, 209) 0.6262243704015803
(0, 287) 0.15142673105175225
(0, 44) 0.2839334104854308
(0, 31) 0.27493029497336746
(0, 62) 0.2702778021025414
Y =[1252, 12607, 12596], [12480, 12544, 12547], [1252, 12607, 12547], [12480, 12607, 12547], [12480, 12607, 12596], [1252, 12607, 12547], [12480, 12544, 12547], [1252, 12607, 12596], [1252, 12607, 12596], [12480, 12544, 12547], [12480, 12607, 12596]
【问题讨论】:
当您的训练和测试数据在y
向量中只有一个输出时,为什么要使用多输出分类器?您是否将多输出与多类输出混淆了?
这是我之前发的***.com/questions/55489792/…的问题,请查看
能否提供您的X
和Y
数据样本?
完成,请检查编辑
【参考方案1】:
来自Documentation:
Returns the mean accuracy on the given test data and labels.
In multi-label classification, this is the subset accuracy which is a harsh metric since you require for each sample that each label set be correctly predicted.
Parameters:
X : array-like, shape = (n_samples, n_features)
Test samples.
y : array-like, shape = (n_samples) or (n_samples, n_outputs)
True labels for X.
sample_weight : array-like, shape = [n_samples], optional
Sample weights.
Returns:
score : float
Mean accuracy of self.predict(X) wrt. y
因此,您需要为 score 函数提供 X
、y
而不是 y_true
和 y_pred
试试:
print classifier.score(X_test, np.array(y_test))
【讨论】:
我明白了:AttributeError: if y.ndim == 1: 'list' object has no attribute 'ndim'以上是关于使用 Knn 分类器时出现无效的形状错误的主要内容,如果未能解决你的问题,请参考以下文章
绘制决策树分类器时出现交互错误,获取值数组.. 使树很难可视化