【问题标题】:Tensorflow Dropout implementation, test accuracy = train accuracy and low, why?Tensorflow Dropout 实现,测试准确率=训练准确率又低,为什么?
【发布时间】:2018-02-08 23:35:25
【问题描述】:

我尝试过在 Tensorflow 中实现 dropout。

我确实知道应该将 dropout 声明为占位符,并且训练和测试期间的 keep_prob 参数应该不同。然而,我仍然几乎打破了我的大脑,试图找出为什么 dropout 的准确性如此之低。当 keep_drop = 1 时,训练准确度为 99%,测试准确度为 85%,当 keep_drop = 0.5 时,训练和测试准确度均为 16% 任何想法在哪里查看,有人吗?谢谢!

def forward_propagation(X, parameters, keep_prob):
"""
Implements the forward propagation for the model: LINEAR -> RELU -> LINEAR -> RELU -> LINEAR -> SOFTMAX

Arguments:
X -- input dataset placeholder, of shape (input size, number of examples)
parameters -- python dictionary containing your parameters "W1", "b1", "W2", "b2", "W3", "b3"
              the shapes are given in initialize_parameters

Returns:
Z3 -- the output of the last LINEAR unit
"""
# Retrieve the parameters from the dictionary "parameters" 
W1 = parameters['W1']
b1 = parameters['b1']
W2 = parameters['W2']
b2 = parameters['b2']
W3 = parameters['W3']
b3 = parameters['b3']


Z1 = tf.add(tf.matmul(W1,X),b1)                     # Z1 = np.dot(W1, X) + b1
A1 = tf.nn.relu(Z1)                                 # A1 = relu(Z1)
A1 = tf.nn.dropout(A1,keep_prob)                    # apply dropout 
Z2 = tf.add(tf.matmul(W2,A1),b2)                    # Z2 = np.dot(W2, a1) + b2
A2 = tf.nn.relu(Z2)                                 # A2 = relu(Z2)
A2 = tf.nn.dropout(A2,keep_prob)                    # apply dropout
Z3 = tf.add(tf.matmul(W3,A2),b3)                    # Z3 = np.dot(W3,A2) + b3


return Z3



def model(X_train, Y_train, X_test, Y_test, learning_rate = 0.0001, lambd = 0.03, train_keep_prob = 0.5,  
      num_epochs = 800, minibatch_size = 32, print_cost = True):
"""
Implements a three-layer tensorflow neural network: LINEAR->RELU->LINEAR->RELU->LINEAR->SOFTMAX.

Arguments:
X_train -- training set, of shape (input size = 12288, number of training examples = 1080)
Y_train -- test set, of shape (output size = 6, number of training examples = 1080)
X_test -- training set, of shape (input size = 12288, number of training examples = 120)
Y_test -- test set, of shape (output size = 6, number of test examples = 120)
learning_rate -- learning rate of the optimization
lambd -- L2 regularization hyperparameter
train_keep_prob -- probability of keeping a neuron in hidden layer for dropout implementation
num_epochs -- number of epochs of the optimization loop
minibatch_size -- size of a minibatch
print_cost -- True to print the cost every 100 epochs

Returns:
parameters -- parameters learnt by the model. They can then be used to predict.
"""

ops.reset_default_graph()                         # to be able to rerun the model without overwriting tf variables
tf.set_random_seed(1)                             # to keep consistent results
seed = 3                                          # to keep consistent results
(n_x, m) = X_train.shape                          # (n_x: input size, m : number of examples in the train set)
n_y = Y_train.shape[0]                            # n_y : output size
costs = []                                        # To keep track of the cost


# Create Placeholders of shape (n_x, n_y)
X, Y = create_placeholders(n_x, n_y)
keep_prob = tf.placeholder(tf.float32)

# Initialize parameters
parameters = initialize_parameters()

# Forward propagation: Build the forward propagation in the tensorflow graph
Z3 = forward_propagation(X, parameters, keep_prob)

# Cost function: Add cost function to tensorflow graph
cost = compute_cost(Z3, Y, parameters, lambd)

# Backpropagation. 
optimizer = tf.train.AdamOptimizer(learning_rate = learning_rate).minimize(cost)

# Initialize all the variables
init = tf.global_variables_initializer()

# Start the session to compute the tensorflow graph
with tf.Session() as sess:

    # Run the initialization
    sess.run(init)

    # Do the training loop
    for epoch in range(num_epochs):

        epoch_cost = 0.                       # Defines a cost related to an epoch
        num_minibatches = int(m / minibatch_size) # number of minibatches of size minibatch_size in the train set
        seed = seed + 1
        minibatches = random_mini_batches(X_train, Y_train, minibatch_size, seed)

        for minibatch in minibatches:

            # Select a minibatch
            (minibatch_X, minibatch_Y) = minibatch

            # IMPORTANT: The line that runs the graph on a minibatch.
            # Run the session to execute the "optimizer" and the "cost", the feedict should contain a minibatch for (X,Y).
            _ , minibatch_cost = sess.run([optimizer, cost], feed_dict={X: minibatch_X, Y: minibatch_Y, keep_prob: train_keep_prob})

            epoch_cost += minibatch_cost / num_minibatches

        # Print the cost every epoch
        if print_cost == True and epoch % 100 == 0:
            print ("Cost after epoch %i: %f" % (epoch, epoch_cost))
        if print_cost == True and epoch % 5 == 0:
            costs.append(epoch_cost)

    # plot the cost
    plt.plot(np.squeeze(costs))
    plt.ylabel('cost')
    plt.xlabel('iterations (per tens)')
    plt.title("Learning rate =" + str(learning_rate))
    plt.show()

    # lets save the parameters in a variable
    parameters = sess.run(parameters)
    print ("Parameters have been trained!")

    # Calculate the correct predictions
    correct_prediction = tf.equal(tf.argmax(Z3), tf.argmax(Y))

    # Calculate accuracy on the test set
    accuracy = tf.reduce_mean(tf.cast(correct_prediction, "float"))

    print ("Train Accuracy:", accuracy.eval({X: X_train, Y: Y_train, keep_prob: 1.0}))
    print ("Test Accuracy:", accuracy.eval({X: X_test, Y: Y_test, keep_prob: 1.0}))

    return parameters

【问题讨论】:

  • 您通常期望较低的训练准确度与 dropout 和更高的测试准确度。在这种情况下,您需要更高的 keep_prob (>0.5) 或增加图层的大小。您应该阅读什么是 dropout/regularization。
  • 我想我需要澄清一下,没有 dropout 训练准确度为 99%,测试准确度为 85%,而有 dropout 训练和测试准确度相同,为 16%,这太可疑了。

标签: tensorflow deep-learning


【解决方案1】:

在第一种情况下,您的模型对数据过度拟合,因此训练准确度和测试准确度之间存在很大差异。 Dropout 是一种正则化技术,通过减少特定节点的影响来减少模型的方差,从而防止过度拟合。但是保持 keep_prob = 0.5(太低)会削弱模型,因此它严重欠拟合数据,准确度低至 16%。您应该通过逐渐减小 keep_prob 值进行迭代,直到找到合适的值。

【讨论】:

    【解决方案2】:

    算法是正确的。只是 keep_prob = 0.5 太低了。

    在使用以下超参数的测试集上成功获得了 87% 的准确率: learning_rate = 0.00002,lambd = 0.03,train_keep_prob = 0.90,num_epochs = 1500,minibatch_size = 32,

    【讨论】:

    • 我想你的网络太小了?您没有在问题中包含参数。
    猜你喜欢
    • 2020-10-17
    • 1970-01-01
    • 2018-09-18
    • 1970-01-01
    • 2017-10-05
    • 1970-01-01
    • 2023-03-17
    • 2021-10-13
    • 2019-08-31
    相关资源
    最近更新 更多