From 59864a3bbc780b604b2319111004855fac5ba805 Mon Sep 17 00:00:00 2001 From: Dmitry Kurtaev Date: Sun, 28 Jul 2019 22:32:37 +0300 Subject: [PATCH] Fix #14993 --- samples/dnn/tf_text_graph_ssd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/dnn/tf_text_graph_ssd.py b/samples/dnn/tf_text_graph_ssd.py index 730e0bbc25..2cc74fd0dd 100644 --- a/samples/dnn/tf_text_graph_ssd.py +++ b/samples/dnn/tf_text_graph_ssd.py @@ -67,7 +67,7 @@ def createSSDGraph(modelPath, configPath, outputPath): 'Sub', 'ResizeNearestNeighbor', 'Pad'] # Node with which prefixes should be removed - prefixesToRemove = ('MultipleGridAnchorGenerator/', 'Postprocessor/', 'Preprocessor/map') + prefixesToRemove = ('MultipleGridAnchorGenerator/', 'Concatenate/', 'Postprocessor/', 'Preprocessor/map') # Load a config file. config = readTextMessage(configPath)