From 844a293be9720f39b100b08b3ec94ad8c7c2b087 Mon Sep 17 00:00:00 2001 From: Aaron Edsinger Date: Thu, 9 Dec 2021 12:36:54 -0800 Subject: [PATCH] roll in bugfix from master for deep models printout --- stretch_deep_perception/nodes/deep_models_shared_python3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stretch_deep_perception/nodes/deep_models_shared_python3.py b/stretch_deep_perception/nodes/deep_models_shared_python3.py index d961baa..c4ec8a8 100644 --- a/stretch_deep_perception/nodes/deep_models_shared_python3.py +++ b/stretch_deep_perception/nodes/deep_models_shared_python3.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 def print_model_info(model, text_name): - + return layer_names = model.getLayerNames() print('{0}.getLayerNames() ='.format(text_name), layer_names) output_layer_indices = model.getUnconnectedOutLayers()