卷积网络的奇怪图

时间:2017-11-29 12:08:15

标签: tensorflow tensorboard

当我构建卷积模型时,我在TensorBoard中得到了一个非常奇怪的结果图。如您所见,第二个卷积层不仅将池化层作为输入,还获得另一个卷积层。 在我看来,根据我的网络研究,这应该是一个直的垂直图,每层有一个输入和一个输出(除了第一个和最后一个)。

我做错了什么或第二次输入来自哪里?

非常感谢, 托拜厄斯

使用的模型功能:

def model_fn(features, labels, mode, params):
    is_training = (mode == tf.estimator.ModeKeys.TRAIN)

    reshaped_features = tf.reshape(features, (-1, features.shape[1], 1))

    # Yes, I have only 1d input to my conv network
    conv1 = tf.layers.conv1d(reshaped_features, filters=10, kernel_size=5)
    pool1 = tf.layers.max_pooling1d(conv1, pool_size=3, strides=1)
    conv2 = tf.layers.conv1d(pool1, filters=10, kernel_size=5)
    conv_2_flat = tf.contrib.layers.flatten(conv2)

    logits = fully_connected(conv_2_flat, 2)

    if mode == tf.estimator.ModeKeys.PREDICT:
        return tf.estimator.EstimatorSpec(
            mode=mode,
            predictions={'logits': logits})

    loss = tf.losses.sparse_softmax_cross_entropy(labels=labels, logits=logits)

    eval_metric_ops = {
            'accuracy': tf.metrics.mean(tf.nn.in_top_k(predictions=logits, targets=labels, k=1)),
    }

    optimizer = tf.train.AdamOptimizer(params['learning_rate'])
    training_op = optimizer.minimize(loss)

    return tf.estimator.EstimatorSpec(
        mode=mode,
        loss=loss,
        train_op=training_op,
        eval_metric_ops=eval_metric_ops)

结果图:

enter image description here

1 个答案:

答案 0 :(得分:1)

我曾经在Tensorboard中出现过非常奇怪的联系。我认为这只是显示中的一个错误,而不是架构中的实际错误。

为我的图层提供唯一的名称解决了我的问题。使用名称参数声明图层:

    conv1 = tf.layers.conv1d(reshaped_features, filters=10, kernel_size=5, name="conv1")

告诉我这是否能解决您的问题。