从tensorflow_数据集中加载mnist数据集时出现的问题

2024-04-26 11:43:30 发布

您现在位置:Python中文网/ 问答频道 /正文

我目前正在阅读《学习TensorFlow:构建深度学习系统指南》一书 这本书由汤姆·霍普、耶赫茨克尔·S·雷舍夫和伊泰·利德合著。这是一本稍旧的书,使用tensorflow 1.x版本和tensorflow.examples.tutorials.mnist中的mnist数据集。因为我安装了tensorflow的最新版本,所以我尝试修改第4章中的代码,我很快就能让它运行,但是我在正确加载mnist进行培训时遇到了一个问题。这是我的代码修改代码:

import tensorflow_datasets as tfds
import tensorflow as tf
import numpy as np

from layers import conv_layer, max_pool_2x2, full_layer

tf.compat.v1.disable_eager_execution()

DATA_DIR = '../data/'
MINIBATCH_SIZE = 50
STEPS = 5000


mnist = tfds.load(name='mnist', split=['train', 'test'], data_dir=DATA_DIR)

x = tf.compat.v1.placeholder(tf.float32, shape=[None, 784])
y_ = tf.compat.v1.placeholder(tf.float32, shape=[None, 10])

x_image = tf.reshape(x, [-1, 28, 28, 1])
conv1 = conv_layer(x_image, shape=[5, 5, 1, 32])
conv1_pool = max_pool_2x2(conv1)

conv2 = conv_layer(conv1_pool, shape=[5, 5, 32, 64])
conv2_pool = max_pool_2x2(conv2)

conv2_flat = tf.reshape(conv2_pool, [-1, 7*7*64])
full_1 = tf.nn.relu(full_layer(conv2_flat, 1024))

keep_prob = tf.compat.v1.placeholder(tf.float32)
full1_drop = tf.nn.dropout(full_1, rate=1-keep_prob)

y_conv = full_layer(full1_drop, 10)

cross_entropy = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(logits=y_conv, labels=y_))
train_step = tf.compat.v1.train.AdamOptimizer(1e-4).minimize(cross_entropy)
correct_prediction = tf.equal(tf.argmax(y_conv, 1), tf.argmax(y_, 1))
accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))

with tf.compat.v1.Session() as sess:
    sess.run(tf.compat.v1.global_variables_initializer())

    for i in range(STEPS):
        batch = mnist.train.next_batch(MINIBATCH_SIZE)

        if i % 100 == 0:
            train_accuracy = sess.run(accuracy, feed_dict={x: batch[0], y_: batch[1],
                                                           keep_prob: 1.0})
            print("step {}, training accuracy {}".format(i, train_accuracy))

        sess.run(train_step, feed_dict={x: batch[0], y_: batch[1], keep_prob: 0.5})

    X = mnist.test.images.reshape(10, 1000, 784)
    Y = mnist.test.labels.reshape(10, 1000, 10)
    test_accuracy = np.mean(
        [sess.run(accuracy, feed_dict={x: X[i], y_: Y[i], keep_prob: 1.0}) for i in range(10)])

print("test accuracy: {}".format(test_accuracy))

原始代码可在此处查阅:

https://github.com/Hezi-Resheff/Oreilly-Learning-TensorFlow/blob/master/04__convolutional_neural_networks/mnist_cnn.py

运行修改后的代码时,出现以下错误:

File "/home/af/Dokumenter/Programs/LearningTensorFlow/Chapter 4/mnist_cnn.py", line 43, in <module>
    batch = mnist.train.next_batch(MINIBATCH_SIZE)
AttributeError: 'list' object has no attribute 'train'

现在我正在从tensorflow_数据集加载mnist数据集,我不确定如何修改该行。欢迎提供任何建议或提示


Tags: 代码testlayertftensorflowbatchtrainfull
1条回答
网友
1楼 · 发布于 2024-04-26 11:43:30

mnist.train是类dataSet的一个实例,在您的案例中似乎缺少该类。它可以在read_data_sets()函数here中看到,因此我的建议读取如下数据:

mnist = input_data.read_data_sets(DATA_DIR, one_hot=True)

在这种情况下,标签向量y的大小为[batchsize,10](2D numpy数组)。但是,如果one_hot=False,则标签向量的大小将等于[batchsize]

相关问题 更多 >