From f6427c9443f4ea9de877d32800e99289cf818d82 Mon Sep 17 00:00:00 2001 From: Aaron Edsinger Date: Wed, 13 Oct 2021 14:01:12 -0700 Subject: [PATCH] Temp fix - printing of deep model layers broken --- 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()