我想用最大利润损失函数在Keras(以theano作为后端)中训练一个神经网络,每个正样本使用一个负样本:

 max(0,1 -pos_score +neg_score)


我有一个神经网络,它接受两个参数ij并返回得分base(i,j)。对于给定的i,我有一个正样本j和一个负样本k。因此,我想计算以下内容:

 max(0, 1 - base(i, j) + base(i, k))


在抽象级别上,我的代码如下所示:

i = Input(...) # d=100
j = Input(...) # d=300
k = Input(...) # d=300

i_vec = Sequential()
i_vec.add(Dense(20, input_dim=100))
j_vec = Sequential()
j_vec.add(Dense(30, input_dim=300))

base = Sequential()
base.add(Merge([i_vec, j_vec], mode='concat')
# Here goes definition of the base network
base.add(Dense(output_dim=1, bias=False))

pos = base([i, j])
neg = base([i, k])

def custom_loss(y_true, y_pred):
    return K.maximum(0, 1 - y_pred[0] + y_pred[1])

model = Model(input=[i,j,k], output=[pos, neg])
# Shape of I=(1000,100), J and K=(1000,300), XX=(1000,)
model.fit([I, J, K], [XX,XX], nb_epoch=10)


请注意,XX在训练期间无用。

在运行代码时,出现以下错误:

ValueError: GpuElemwise. Output dimension mismatch. Output 0 (indices start at 0), working inplace on input 0, has shape[0] == 1, but the output's size on that axis is 32.
Apply node that caused the error: GpuElemwise{Composite{(i0 * (i1 * i2))}}[(0, 0)](GpuElemwise{Composite{Cast{float32}(EQ(i0, i1))}}[(0, 0)].0, GpuElemwise{Composite{(i0 / (i1 * i2))}}[(0, 0)].0, GpuFromHost.0)
Toposort index: 83
Inputs types: [CudaNdarrayType(float32, vector), CudaNdarrayType(float32, (True,)), CudaNdarrayType(float32, vector)]
Inputs shapes: [(1,), (1,), (32,)]
Inputs strides: [(0,), (0,), (1,)]
Inputs values: [CudaNdarray([ 1.]), CudaNdarray([ 1.]), 'not shown']
Outputs clients: [[GpuIncSubtensor{InplaceInc;int64}(GpuIncSubtensor{Inc;int64}.0, GpuElemwise{Composite{(i0 * (i1 * i2))}}[(0, 0)].0, Constant{1}), GpuElemwise{neg,no_inplace}(GpuElemwise{Composite{(i0 * (i1 * i2))}}[(0, 0)].0)]]


我认为问题在于损失函数的计算。

注意:我尝试将XX用作原始向量和列向量。但是,错误仍然相同。

TensorFlow与后端相同的问题的解决方案herehere



编辑1:

如下更改损失函数可以工作(我的意思是它可以正常工作)。但是,我既不知道为什么也不知道新代码的正确性。

def custom_loss(y_true, y_pred):
    return K.sum(K.maximum(0, 1 - y_pred[0] + y_pred[1]))

最佳答案

似乎K.maximum(0, 1 - y_pred[0] + y_pred[1])并没有给您标量损失值,而是每个样本的误差。您需要平均整个最小批量的损失。因此,使用K.sum将每个样本的损失减少到每个小批量的标量损失。我想使用mean代替sum会更准确(以防您决定更改批量大小)。

关于python - Keras/theano的最大利润损失,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44221396/

10-13 03:06