为啥这个神经网络啥都学不到?

Posted

技术标签:

【中文标题】为啥这个神经网络啥都学不到?【英文标题】:Why does this neural network learn nothing?为什么这个神经网络什么都学不到? 【发布时间】:2018-06-10 04:04:09 【问题描述】:

我正在学习 TensorFlow,并且正在实现一个简单的神经网络,如 MNIST for Beginners in TensorFlow 文档中所述。这是link。正如预期的那样,准确度约为 80-90 %。

紧随同一篇文章的是 MNIST for Experts using ConvNet。我决定改进初学者部分,而不是实施它。我了解神经网络以及它们是如何学习的,以及深度网络比浅层网络表现更好的事实。我为初学者修改了 MNIST 中的原始程序,以实现一个神经网络,其中包含 2 个隐藏层,每个隐藏层 16 个神经元。

看起来像这样:

网络图片

代码

import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data

mnist = input_data.read_data_sets('MNIST_data', one_hot=True)

x = tf.placeholder(tf.float32, [None, 784], 'images')
y = tf.placeholder(tf.float32, [None, 10], 'labels')

# We are going to make 2 hidden layer neurons with 16 neurons each

# All the weights in network
W0 = tf.Variable(dtype=tf.float32, name='InputLayerWeights', initial_value=tf.zeros([784, 16]))
W1 = tf.Variable(dtype=tf.float32, name='HiddenLayer1Weights', initial_value=tf.zeros([16, 16]))
W2 = tf.Variable(dtype=tf.float32, name='HiddenLayer2Weights', initial_value=tf.zeros([16, 10]))

# All the biases for the network
B0 = tf.Variable(dtype=tf.float32, name='HiddenLayer1Biases', initial_value=tf.zeros([16]))
B1 = tf.Variable(dtype=tf.float32, name='HiddenLayer2Biases', initial_value=tf.zeros([16]))
B2 = tf.Variable(dtype=tf.float32, name='OutputLayerBiases', initial_value=tf.zeros([10]))


def build_graph():
    """This functions wires up all the biases and weights of the network
    and returns the last layer connections
    :return: returns the activation in last layer of network/output layer without softmax
    """
    A1 = tf.nn.relu(tf.matmul(x, W0) + B0)
    A2 = tf.nn.relu(tf.matmul(A1, W1) + B1)
    return tf.matmul(A2, W2) + B2


def print_accuracy(sx, sy, tf_session):
    """This function prints the accuracy of a model at the time of invocation
    :return: None
    """
    correct_prediction = tf.equal(tf.argmax(y), tf.argmax(tf.nn.softmax(build_graph())))
    correct_prediction_float = tf.cast(correct_prediction, dtype=tf.float32)
    accuracy = tf.reduce_mean(correct_prediction_float)

    print(accuracy.eval(feed_dict=x: sx, y: sy, session=tf_session))


y_predicted = build_graph()

cross_entropy = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(labels=y, logits=y_predicted))

model = tf.train.GradientDescentOptimizer(0.03).minimize(cross_entropy)

with tf.Session() as sess:
    sess.run(tf.global_variables_initializer())
    for _ in range(1000):
        batch_x, batch_y = mnist.train.next_batch(50)
        if _ % 100 == 0:
            print_accuracy(batch_x, batch_y, sess)
        sess.run(model, feed_dict=x: batch_x, y: batch_y)

预期的输出应该比只有单层时可以实现的要好(假设 W0 的形状为 [784,10],B0 的形状为 [10])

def build_graph():
     return tf.matmul(x,W0) + B0

相反,输出表明网络根本没有训练。在任何迭代中,准确率都没有超过 20%。

输出

提取 MNIST_data/train-images-idx3-ubyte.gz

提取 MNIST_data/train-labels-idx1-ubyte.gz

提取 MNIST_data/t10k-images-idx3-ubyte.gz

提取 MNIST_data/t10k-labels-idx1-ubyte.gz

0.1

0.1

0.1

0.1

0.1

0.1

0.1

0.1

0.1

0.1

我的问题

上面的程序有什么问题,它根本没有泛化?如何在不使用卷积神经网络的情况下对其进行更多改进?

【问题讨论】:

【参考方案1】:

您的主要错误是network symmetry,因为您将所有权重初始化为零。结果,权重永远不会更新。将其更改为小的随机数,它将开始学习。可以用零初始化偏差。

另一个问题是纯技术问题:print_accuracy 函数正在计算图中创建新节点,并且由于您在循环中调用它,因此图变得臃肿并最终会耗尽所有内存。

您可能还想使用超参数并扩大网络以增加其容量。

编辑:我还发现了您的准确度计算中的一个错误。应该是

correct_prediction = tf.equal(tf.argmax(y, 1), tf.argmax(y_predicted, 1))

这是一个完整的代码:

import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data

x = tf.placeholder(tf.float32, [None, 784], 'images')
y = tf.placeholder(tf.float32, [None, 10], 'labels')

W0 = tf.Variable(dtype=tf.float32, name='InputLayerWeights', initial_value=tf.truncated_normal([784, 16]) * 0.001)
W1 = tf.Variable(dtype=tf.float32, name='HiddenLayer1Weights', initial_value=tf.truncated_normal([16, 16]) * 0.001)
W2 = tf.Variable(dtype=tf.float32, name='HiddenLayer2Weights', initial_value=tf.truncated_normal([16, 10]) * 0.001)

B0 = tf.Variable(dtype=tf.float32, name='HiddenLayer1Biases', initial_value=tf.ones([16]))
B1 = tf.Variable(dtype=tf.float32, name='HiddenLayer2Biases', initial_value=tf.ones([16]))
B2 = tf.Variable(dtype=tf.float32, name='OutputLayerBiases', initial_value=tf.ones([10]))

A1 = tf.nn.relu(tf.matmul(x, W0) + B0)
A2 = tf.nn.relu(tf.matmul(A1, W1) + B1)
y_predicted = tf.matmul(A2, W2) + B2
correct_prediction = tf.equal(tf.argmax(y, 1), tf.argmax(y_predicted, 1))
correct_prediction_float = tf.cast(correct_prediction, dtype=tf.float32)
accuracy = tf.reduce_mean(correct_prediction_float)
cross_entropy = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(labels=y, logits=y_predicted))
optimizer = tf.train.AdamOptimizer(0.001).minimize(cross_entropy)

mnist = input_data.read_data_sets('mnist', one_hot=True)
with tf.Session() as sess:
  sess.run(tf.global_variables_initializer())
  for i in range(20000):
    batch_x, batch_y = mnist.train.next_batch(64)
    _, cost_val, acc_val = sess.run([optimizer, cross_entropy, accuracy], feed_dict=x: batch_x, y: batch_y)
    if i % 100 == 0:
      print('cost=%.3f accuracy=%.3f' % (cost_val, acc_val))

【讨论】:

是的,我发现了那个错误并修复了 tf.argmax(y,1) 的那个错误。让我检查你的程序,看看它是否有效。另外我想问一下为什么在没有隐藏层的情况下将wights初始化为零?同样在多层中也不起作用

以上是关于为啥这个神经网络啥都学不到?的主要内容,如果未能解决你的问题,请参考以下文章

tcl电视为啥扫描不到无线网络?

无线路由器明明都设置好了,为啥搜索不到无线网络?

我用wireshark抓包,啥都没开,为啥出现这种情况

电脑为啥显示无法连接到这个网络?

为啥我的IE在输入格中随便输入啥都是404页面如:中国,百度。360浏览器确没问题. 求高人解决 .

学习编程——初级之旅