【问题标题】:Why am I getting a data conversion warning?为什么我会收到数据转换警告?
【发布时间】:2015-12-17 14:32:40
【问题描述】:

我是该领域的相对新手,因此非常感谢您的帮助。 我正在玩 mnist 数据集。我从http://g.sweyla.com/blog/2012/mnist-numpy/ 中获取了代码,但将“图像”更改为二维的,这样每个图像都将是一个特征向量。然后我对数据运行 PCA,然后运行 ​​SVM 并检查分数。一切似乎都正常,但我收到以下警告,我不确定为什么。

"DataConversionWarning: A column-vector y was passed when a 1d array was expected.\
Please change the shape of y to (n_samples, ), for example using ravel()."

我已经尝试了几件事,但似乎无法摆脱这个警告。有什么建议么?这是完整的代码(忽略缺少的缩进,似乎他们在这里复制代码有点搞砸了):

import os, struct
from array import array as pyarray
from numpy import append, array, int8, uint8, zeros, arange
from sklearn import svm, decomposition
#from pylab import *
#from matplotlib import pyplot as plt

def load_mnist(dataset="training", digits=arange(10), path="."):
"""
Loads MNIST files into 3D numpy arrays

Adapted from: http://abel.ee.ucla.edu/cvxopt/_downloads/mnist.py
"""

    if dataset == "training":
        fname_img = os.path.join(path, 'train-images.idx3-ubyte')
        fname_lbl = os.path.join(path, 'train-labels.idx1-ubyte')
    elif dataset == "testing":
        fname_img = os.path.join(path, 't10k-images.idx3-ubyte')
        fname_lbl = os.path.join(path, 't10k-labels.idx1-ubyte')
    else:
        raise ValueError("dataset must be 'testing' or 'training'")

    flbl = open(fname_lbl, 'rb')
    magic_nr, size = struct.unpack(">II", flbl.read(8))
    lbl = pyarray("b", flbl.read())
    flbl.close()

    fimg = open(fname_img, 'rb')
    magic_nr, size, rows, cols = struct.unpack(">IIII", fimg.read(16))
    img = pyarray("B", fimg.read())
    fimg.close()

    ind = [ k for k in range(size) if lbl[k] in digits ]
    N = len(ind)

    images = zeros((N, rows*cols), dtype=uint8)
    labels = zeros((N, 1), dtype=int8)
    for i in range(len(ind)):
        images[i] = array(img[ ind[i]*rows*cols : (ind[i]+1)*rows*cols ])
        labels[i] = lbl[ind[i]]

    return images, labels

if __name__ == "__main__":
    images, labels = load_mnist('training', arange(10),"path...")
    pca = decomposition.PCA()
    pca.fit(images)
    pca.n_components = 200
    images_reduced = pca.fit_transform(images)
    lin_classifier = svm.LinearSVC()
    lin_classifier.fit(images_reduced, labels)
    images2, labels2 = load_mnist('testing', arange(10),"path...")
    images2_reduced = pca.transform(images2)
    score = lin_classifier.score(images2_reduced,labels2)
    print score

感谢您的帮助!

【问题讨论】:

    标签: python scikit-learn warnings


    【解决方案1】:

    我认为 scikit-learn 期望 y 是一维数组。您的 labels 变量是二维的 - labels.shape 是 (N, 1)。警告告诉您使用labels.ravel(),这会将labels 转换为形状为(N,) 的一维数组。
    重塑也可以:labels=labels.reshape((N,))
    想一想,所以会打电话给squeeze:labels=labels.squeeze()

    我猜这里的陷阱是,在 numpy 中,一维数组不同于其中一个维度等于 1 的二维数组。

    【讨论】:

    • 谢谢!出于某种原因,我确信问题出在“图像”数组上。甚至没有想到这一点。傻我。无论如何,没有更多的警告。再次感谢:)
    猜你喜欢
    • 2019-05-06
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-11-10
    • 2012-08-10
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多