0

这将是漫长而难以描述的,所以提前道歉。

我有一个常规的类似于 CNN 的网络,上面有标准的 MLP 层。在 MLP 之上,我也有一个 softmax 层,但是,与传统网络不同,它没有完全连接到下面的 MLP,它由子组组成。

为了进一步描述 softmax,它看起来像这样:

Neur1A Neur2A ... NeurNA      Neur1B Neur2B ... NeurNB   Neur1C Neur2C ...NeurNC
        Group A                           Group B                Group C

还有很多组。每个组都有一个独立于其他组的 softmax。所以在某种程度上,它是几个独立的分类(即使它实际上不是)。

我需要的是激活神经元的索引在组之间单调增加。例如,如果我激活了 A 组中的 Neuron5,我希望 B 组中激活的神经元 >=5。与B组和C组相同,依此类推..

这个包含所有组的所有神经元的 softmax 层实际上不是我的最后一层,有趣的是它是一个中间层。

为了实现这种单调性,我在损失函数中添加了另一个术语来惩罚非单调激活的神经元索引。这是一些代码:

softmax 层的代码及其输出:

def compute_image_estimate(layer2_input):
    estimated_yps= tf.zeros([FLAGS.batch_size,0],dtype=tf.int64)
    for pix in xrange(NUM_CLASSES):
        pixrow= int( pix/width)
        rowdata= image_pixels[:,  pixrow*width:(pixrow+1)*width]

        with tf.variable_scope('layer2_'+'_'+str(pix)) as scope:
            weights = _variable_with_weight_decay('weights', shape=[layer2_input.get_shape()[1], width],   stddev=0.04, wd=0.0000000)
            biases = _variable_on_cpu('biases', [width], tf.constant_initializer(0.1))
            y = tf.nn.softmax(tf.matmul(layer2_input,weights) + biases)
            argyp=width-1-tf.argmax(y,1)
            argyp= tf.reshape(argyp,[FLAGS.batch_size,1])
        estimated_yps=tf.concat(1,[estimated_yps,argyp])

        return estimated_yps

估计的 yps 被传递给一个量化单调性的函数:

def compute_monotonicity(yp):
    sm= tf.zeros([FLAGS.batch_size])

    for curr_row in xrange(height):
        for curr_col in xrange(width-1):
            pix= curr_row *width + curr_col
            sm=sm+alpha * tf.to_float(tf.square(tf.minimum(0,tf.to_int32(yp[:,pix]-yp[:,pix+1]))))

    return sm

损失函数为:

def loss(estimated_yp, SOME_OTHER_THINGS):
    tf.add_to_collection('losses', SOME_OTHER_THINGS)

    monotonicity_metric= tf.reduce_mean( compute_monotonocity(estimated_yp) )
    tf.add_to_collection('losses', monotonicity_metric)
    return tf.add_n(tf.get_collection('losses'), name='total_loss')

现在我的问题是,当我不使用 SOME_OTHER_THINGS 作为常规指标时,我会得到ValueError: No gradients provided for any variable单调性指标。

当这样使用 softmax 层输出时,似乎没有定义梯度。

难道我做错了什么?任何帮助,将不胜感激。

4

1 回答 1

1

抱歉..我意识到问题在于 tf.argmax 函数显然没有定义梯度。

于 2016-02-26T22:59:22.923 回答