Loading a model Raise ValueError Unknown loss function

时间秒杀一切 提交于 2020-06-01 06:50:05

问题


this is the code after i try to save and load my model:

model.save('path_to_my_model.h5')
del model
model = tf.keras.models.load_model('path_to_my_model.h5', custom_objects={'Wraparound2D': Wraparound2D})

import tensorflow.keras.backend as K

inp = model.input                                           # input placeholder
outputs = [layer.output for layer in model.layers]          # all layer outputs
functor = K.function(inp, outputs)   # evaluation function

layer_outs = functor([X_test, 1.])



# Plot activations of different neurons in different layers 
all_layer_activations = list()

min_max_scaler = lambda x : (x - np.min(x))/(np.max(x) - np.min(x))
# min_max_scaler = lambda x : (x - np.mean(x))
for j in range(1, 5):
    if j==1:
        layer_im = np.hstack([min_max_scaler(layer_outs[1][0][..., i]) for i in range(10)])
    else:
        pattern = np.reshape(layer_outs[j][0], (wspan, hspan, -1))
        layer_im = np.hstack([min_max_scaler(pattern[..., i]) for i in range(10)])
    all_layer_activations.append(layer_im)

but i get the following error:

ValueError                                Traceback (most recent call last)
<ipython-input-9-75d24275ae64> in <module>()
     92 model.save('path_to_my_model.h5')
     93 del model
---> 94 model = tf.keras.models.load_model('path_to_my_model.h5', custom_objects={'Wraparound2D': Wraparound2D})
     95 
     96 import tensorflow.keras.backend as K

5 frames
/usr/local/lib/python3.6/dist-packages/tensorflow/python/keras/utils/generic_utils.py in deserialize_keras_object(identifier, module_objects, custom_objects, printable_module_name)
    390       obj = module_objects.get(object_name)
    391       if obj is None:
--> 392         raise ValueError('Unknown ' + printable_module_name + ':' + object_name)
    393     # Classes passed by name are instantiated with no args, functions are
    394     # returned as-is.

ValueError: Unknown loss function: <lambda>

I can't find why I get it thanks for help. this error comes right after i try to load the model before that everything is fine


回答1:


TL/DR: When you have custom_objects in the saved model, then you need to provide compile = False as an argument to the load_model. After loading the model, you need to compile with the custom_objects. Please check the example here.

When you save a model with custom_objects, those custom_objects cannot be serialized properly. So, when you load the model you need to pass compile=False and load the model. After loading the model, you need to compile the model by passing the custom objects.



来源:https://stackoverflow.com/questions/61026476/loading-a-model-raise-valueerror-unknown-loss-function

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