Skip to content

Commit

Permalink
[#51686] modelwrappers: frameworks: tensorflow: Fixed printing the model
Browse files Browse the repository at this point in the history
Signed-off-by: Grzegorz Latosinski <[email protected]>
  • Loading branch information
glatosinski committed Nov 27, 2023
1 parent a433e71 commit 8f0b905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kenning/modelwrappers/frameworks/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def load_model(self, model_path: PathOrURI):
if hasattr(self, "model") and self.model is not None:
del self.model
self.model = tf.keras.models.load_model(str(model_path))
print(self.model.summary())
self.model.summary()

def save_model(self, model_path: PathOrURI):
self.prepare_model()
Expand Down

0 comments on commit 8f0b905

Please sign in to comment.