【问题标题】:Binary classification in TensorFlow, unexpected large values for loss and accuracyTensorFlow 中的二进制分类,损失和准确率的意外大值
【发布时间】:2017-04-04 04:38:05
【问题描述】:

我正在尝试使用深度神经网络架构来根据二进制标签值 -1 和 +1 进行分类。这是我在tensorflow 中的代码。

import tensorflow as tf
import numpy as np
from preprocess import create_feature_sets_and_labels

train_x,train_y,test_x,test_y = create_feature_sets_and_labels()

x = tf.placeholder('float', [None, 5])
y = tf.placeholder('float')

n_nodes_hl1 = 500
n_nodes_hl2 = 500
n_nodes_hl3 = 500

n_classes = 1
batch_size = 100

def neural_network_model(data):

    hidden_1_layer = {'weights':tf.Variable(tf.random_normal([5, n_nodes_hl1])),
                      'biases':tf.Variable(tf.random_normal([n_nodes_hl1]))}

    hidden_2_layer = {'weights':tf.Variable(tf.random_normal([n_nodes_hl1, n_nodes_hl2])),
                      'biases':tf.Variable(tf.random_normal([n_nodes_hl2]))}

    hidden_3_layer = {'weights':tf.Variable(tf.random_normal([n_nodes_hl2, n_nodes_hl3])),
                      'biases':tf.Variable(tf.random_normal([n_nodes_hl3]))}

    output_layer = {'weights':tf.Variable(tf.random_normal([n_nodes_hl3, n_classes])),
                      'biases':tf.Variable(tf.random_normal([n_classes]))}


    l1 = tf.add(tf.matmul(data, hidden_1_layer['weights']), hidden_1_layer['biases'])
    l1 = tf.nn.relu(l1)

    l2 = tf.add(tf.matmul(l1, hidden_2_layer['weights']), hidden_2_layer['biases'])
    l2 = tf.nn.relu(l2)

    l3 = tf.add(tf.matmul(l2, hidden_3_layer['weights']), hidden_3_layer['biases'])
    l3 = tf.nn.relu(l3)

    output = tf.transpose(tf.add(tf.matmul(l3, output_layer['weights']), output_layer['biases']))
    return output



def train_neural_network(x):
    prediction = neural_network_model(x)
    cost = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(prediction, y))
    optimizer = tf.train.AdamOptimizer().minimize(cost)

    hm_epochs = 10

    with tf.Session() as sess:
        sess.run(tf.initialize_all_variables())

        for epoch in range(hm_epochs):
            epoch_loss = 0
            i = 0
            while i < len(train_x):
                start = i
                end = i + batch_size
                batch_x = np.array(train_x[start:end])
                batch_y = np.array(train_y[start:end])

                _, c = sess.run([optimizer, cost], feed_dict={x: batch_x,
                                              y: batch_y})
                epoch_loss += c
                i+=batch_size

            print('Epoch', epoch, 'completed out of', hm_epochs, 'loss:', epoch_loss)

        # correct = tf.equal(tf.argmax(prediction, 1), tf.argmax(y, 1))
        # accuracy = tf.reduce_mean(tf.cast(correct, 'float'))

        print (test_x.shape)
        accuracy = tf.nn.l2_loss(prediction-y,name="squared_error_test_cost")/test_x.shape[0]
        print('Accuracy:', accuracy.eval({x: test_x, y: test_y}))

train_neural_network(x)

这是我运行时得到的输出:

('Epoch', 0, 'completed out of', 10, 'loss:', -8400.2424869537354)
('Epoch', 1, 'completed out of', 10, 'loss:', -78980.956665039062)
('Epoch', 2, 'completed out of', 10, 'loss:', -152401.86713409424)
('Epoch', 3, 'completed out of', 10, 'loss:', -184913.46441650391)
('Epoch', 4, 'completed out of', 10, 'loss:', -165563.44775390625)
('Epoch', 5, 'completed out of', 10, 'loss:', -360394.44857788086)
('Epoch', 6, 'completed out of', 10, 'loss:', -475697.51550292969)
('Epoch', 7, 'completed out of', 10, 'loss:', -588638.92993164062)
('Epoch', 8, 'completed out of', 10, 'loss:', -745006.15966796875)
('Epoch', 9, 'completed out of', 10, 'loss:', -900172.41955566406)
(805, 5)
('Accuracy:', 5.8077128e+09)

我不明白我得到的值是否正确,因为非常缺乏非 MNIST 二进制分类示例。准确性与我预期的完全不同。我期待的是一个百分比,而不是那么大的值。

我也有点不确定机器学习背后的理论,这就是为什么我无法判断我使用 tensorflow 的方法的正确性。

有人能告诉我我的二进制分类方法是否正确吗? 我的代码的准确性部分也正确吗?

【问题讨论】:

  • 您的网络似乎不稳定。尝试使用较少的层执行计算,还是使用 xavier-glorot 初始化?
  • 我认为您的缩进不适合问题中的 Python。您能否将其修复为与您的原始代码相同(我想我知道您尝试粘贴的代码是什么,但是如果您没有正确复制缩进,调试 Python 会变得更加困难)?
  • @NeilSlater 固定缩进。
  • @KalpeshKrishna 我将它减少到两层。我的准确度是 9433441.0。如何在我的代码中使用 xavier-glorot 初始化?大多数示例包括明确设置权重。

标签: python machine-learning neural-network tensorflow logistic-regression


【解决方案1】:

从这里:

二进制标签值 - -1 和 +1

。 . .我假设您在 train_ytest_y 中的值实际上是 -1.0 和 +1.0

这不适用于您选择的损失函数sigmoid_cross_entropy_with_logits - 假设为 0.0 和 +1.0。负面的y 值正在造成混乱!然而,损失函数的选择有利于二元分类。我建议将您的 y 值更改为 0 和 1。

此外,从技术上讲,您网络的输出并不是最终预测。损失函数sigmoid_cross_entropy_with_logits 旨在与输出层中具有 sigmoid 传递函数的网络一起使用,尽管您已经正确地应用了损失函数完成之前。所以你的训练代码看起来是正确的

虽然我不是 100% 确定 tf.transpose - 我会看看如果你删除它会发生什么,个人即。

output = tf.add(tf.matmul(l3, output_layer['weights']), output_layer['biases'])

无论哪种方式,这是“logit”输出,但不是您的预测。 output 的值对于非常自信的预测可能会变高,这可能解释了您稍后由于缺少 sigmoid 函数而导致的非常高的值。所以添加一个预测张量(这表示示例属于正类的概率/置信度):

prediction = tf.sigmoid(output)

您可以使用它来计算准确性。您的准确度计算不应基于 L2 错误,而是正确值的总和 - 更接近您已注释掉的代码(这似乎来自多类分类)。对于二进制分类的真/假比较,您需要对预测进行阈值化,并与真实标签进行比较。像这样的:

 predicted_class = tf.greater(prediction,0.5)
 correct = tf.equal(predicted_class, tf.equal(y,1.0))
 accuracy = tf.reduce_mean( tf.cast(correct, 'float') )

准确度值应介于 0.0 和 1.0 之间。如果你想要一个百分比,当然只需乘以 100。

【讨论】:

  • 非常感谢尼尔!但是,仍然存在一些问题。用细节更新问题。
  • @VineetKaushik:如果问题有所不同,请不要更改您的问题。例如,不要添加我建议的修复并询问为什么它现在不起作用。因为这使我的答案无效 - 即我所有的工作,以及对其他有同样问题的人的好处
  • @VineetKaushik:如果我的回答帮助您在训练和测试时解决了较大错误值的问题,那么请改用新问题提出新问题。
  • 该死的。好的。将其移至新问题。
  • @VineetKaushik:谢谢。最好这样,将每个问题分开,而不是进行一次长时间的对话。您可以随时在下一个问题中链接此问题,以便有人可以根据需要关注整个讨论。
猜你喜欢
  • 2021-04-25
  • 2018-08-15
  • 2021-07-19
  • 1970-01-01
  • 2023-03-23
  • 1970-01-01
  • 2017-04-04
  • 2020-06-29
  • 2019-09-17
相关资源
最近更新 更多