【发布时间】:2018-07-01 07:46:17
【问题描述】:
我正在尝试在 google-colaboratory python 2 环境中对 MNIST 数据集执行 SVD。下面是我的代码,
from sklearn.datasets import fetch_mldata
import numpy as np
mnist = fetch_mldata('MNIST original')
U, S, V = np.linalg.svd(mnist.data)
上述代码运行后,内核会在以下消息后重新启动:
运行时死亡。自动重启。
我做错了吗?任何帮助表示赞赏。
【问题讨论】:
标签: python google-colaboratory