我正在尝试在 Keras(tensorflow 后端)中创建一个自定义目标函数,其中包含一个附加参数,其值取决于正在训练的批次。
例如:
def myLoss(self, stateValues):
def sparse_loss(y_true, y_pred):
foo = tf.nn.softmax_cross_entropy_with_logits(labels=y_true, logits=y_pred)
return tf.reduce_mean(foo * stateValues)
return sparse_loss
self.model.compile(loss=self.myLoss(stateValue = self.stateValue),
optimizer=Adam(lr=self.alpha))
我的火车功能如下
for batch in batches:
self.stateValue = computeStateValueVectorForCurrentBatch(batch)
model.fit(xVals, yVals, batch_size=<num>)
但是,损失函数中的 stateValue 并未更新。它只是使用 stateValue 在 model.compile 步骤中的值。
我想这可以通过对 stateValue 使用 placeHolder 来解决,但我不知道该怎么做。有人可以帮忙吗?