1. 首页
  2. 数据库
  3. 其它
  4. keras分类模型中的输入数据与标签的维度实例

keras分类模型中的输入数据与标签的维度实例

上传者: 2020-12-22 19:26:46上传 PDF文件 54.9KB 热度 19次
在《python深度学习》这本书中。 一、21页mnist十分类 导入数据集 from keras.datasets import mnist (train_images, train_labels), (test_images, test_labels) = mnist.load_data() 初始数据维度: >>> train_images.shape (60000, 28, 28) >>> len(train_labels) 60000 >>> train_labels array([5, 0, 4, ..., 5, 6, 8], dtype=uint8) 数据预处理: train_i
用户评论