Robert Biehl
Robert Biehl
> Thanks for the PR! Would you mind > > 1. Removing formatting changes > 2. Explaining how you got the new framerate > 3. If possible, show some visualization...
Hi @username123062 it looks like you are passing a wrong tensor spec int full_model.get_concrete_function
Hi Leterax, unfortunately I can't look into this in the near future. Your issue is definitely unexpected. The validation code in this repo only loads the full model to validate....
Update I did a quick check but I couldn't reproduce your issue. What tf2/keras version are you using?
Both of these work for me: ``` saved_model_image = tf.keras.models.load_model(image_output_filename) saved_model_image.summary() ``` ``` saved_model_image = tf.keras.models.load_model(image_output_filename, compile=False) saved_model_image.summary() ```