VGG, perceptual loss in keras

穿精又带淫゛_ 提交于 2019-12-06 02:30:24

问题


I'm wondering if it's possible to add a custom model to a loss function in keras. For example:

def model_loss(y_true, y_pred):
    inp = Input(shape=(128, 128, 1))
    x = Dense(2)(inp)
    x = Flatten()(x)

    model = Model(inputs=[inp], outputs=[x])
    a = model(y_pred)
    b = model(y_true)

    # calculate MSE
    mse = K.mean(K.square(a - b))
    return mse

This is a simplified example. I'll actually be using a VGG net in the loss, so just trying to understand the mechanics of keras.


回答1:


The usual way of doing that is appending your VGG to the end of your model, making sure all its layers have trainable=False before compiling.

Then you recalculate your Y_train.

Suppose you have these models:

mainModel - the one you want to apply a loss function    
lossModel - the one that is part of the loss function you want   

Create a new model appending one to another:

from keras.models import Model

lossOut = lossModel(mainModel.output) #you pass the output of one model to the other

fullModel = Model(mainModel.input,lossOut) #you create a model for training following a certain path in the graph. 

This model will have the exact same weights of mainModel and lossModel, and training this model will affect the other models.

Make sure lossModel is not trainable before compiling:

lossModel.trainable = False
for l in lossModel.layers:
    l.trainable = False

fullModel.compile(loss='mse',optimizer=....)

Now adjust your data for training:

fullYTrain = lossModel.predict(originalYTrain)

And finally do the training:

fullModel.fit(xTrain, fullYTrain, ....)


来源:https://stackoverflow.com/questions/43914931/vgg-perceptual-loss-in-keras

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!