Option to save model as keras model in tensorflow object detection api

Is there a way to save the trained model in TensorFlow object detection API as keras .h5 model file

Try tf.keras.models.save_model(model,filepath,save_format='h5') where “model” is the model to be save and filepath is the path to save the file to.

1 Like