Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / extensions / front / mxnet / ssd_pattern_remove_flatten.py
index 5686dc2..6ff1a71 100644 (file)
@@ -1,5 +1,5 @@
 """
- Copyright (c) 2017-2018 Intel Corporation
+ Copyright (c) 2017-2019 Intel Corporation
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
@@ -17,8 +17,8 @@
 import networkx as nx
 
 from extensions.front.mxnet.ssd_pattern_remove_reshape import SsdPatternRemoveReshape
+from mo.graph.graph import Graph
 from mo.front.common.replacement import FrontReplacementSubgraph
-from mo.graph.graph import erase_node
 
 
 class SsdPatternRemoveFlatten(FrontReplacementSubgraph):
@@ -38,16 +38,16 @@ class SsdPatternRemoveFlatten(FrontReplacementSubgraph):
             ]
         )
 
-    def replace_sub_graph(self, graph: nx.MultiDiGraph, match: dict):
+    def replace_sub_graph(self, graph: Graph, match: dict):
         """
         Need to find each occurrence of pattern: _contrib_MultiBoxPrior -> Flatten
         remove Flatten layer - IE does not expect outputs to be flattened
 
         Parameters
         ----------
-        graph : nx.MultiDiGraph
+        graph : Graph
            Graph with loaded model.
          match : dict
            Patterns which were found in graph structure.
         """
-        erase_node(match['flatten'])
+        graph.erase_node(match['flatten'])