Python으로 로컬 .mat 데이터 파일을 가져올 때 항상 올바른 데이터를 얻을 수는 없습니다.
문제 코드는 다음과 같습니다.
from numpy import *import scipy.io mnist_train = 'D:\Machine Learning\TensorFlow\Softmax Regression\mnist_dataset\mnist_train.mat'mnist_train_labels = 'D:\Machine Learning\TensorFlow\Softmax Regression\mnist_dataset\mnist_train_labels.mat'x = scipy.io.loadmat(mnist_train) label = scipy.io.loadmat(mnist_train_labels) print(x.shape)
위 코드의 출력 결과는 (1,1)이고, 해당 데이터는 (60000,784)가 되어야 합니다. 이때, 데이터를 직접 출력한다면 해당 코드라인도 추가해 주어야 합니다.
아아아아위 내용은 Python에서 .mat 파일을 올바르게 읽을 수 없는 문제에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!