2020
10-07
10-07
Keras之自定义损失(loss)函数用法说明
在Keras中可以自定义损失函数,在自定义损失函数的过程中需要注意的一点是,损失函数的参数形式,这一点在Keras中是固定的,须如下形式:defmy_loss(y_true,y_pred):#y_true:Truelabels.TensorFlow/Theanotensor#y_pred:Predictions.TensorFlow/Theanotensorofthesameshapeasy_true...returnscalar#返回一个标量值然后在model.compile中指定即可,如:model.compile(loss=my_loss,optimizer='sgd')具体参...
继续阅读 >