Keras - epoch dependant loss function

我的梦境 提交于 2019-12-08 05:40:16

问题


I'm working with the Keras framework and I would like to implement an epoch dependent loss function (i.e the loss function isn't the same at each epoch)

How would you do that ? Can you add an example, for instance based on the keras VAE tutorial ?

Thank you for your help


回答1:


This can be accomplished by recompiling the network. The weights are saved not changed by the recompilation. So in essence something like this:

for epoch in range(nb_epoch):
     loss_function = loss_for_epoch(epoch)
     model.compile(optimizer, loss_function, metrics)
     model.fit(X, y, nb_epoch=1)


来源:https://stackoverflow.com/questions/42995711/keras-epoch-dependant-loss-function

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