Keras failed to load SavedModel: TypeError 'module' object is not callable
问题 I trained an SSD MobileNet v2 network using the TensorFlow Object Detection API with TensorFlow 2 and then converted the trained model into a SavedModel. Now I need to convert the SavedModel to a FrozenGraph in order to make the model compatible with external libraries like OpenCV. I use this example for conversion and I cannot even load the Keras model. from keras.models import load_model model = load_model("training/model/saved_model") Calling load_model() produces an exception: Exception