Publishing 2019 R1 content
[platform/upstream/dldt.git] / model-optimizer / extensions / front / mxnet / softmax.py
index 10991ea..d60c48d 100644 (file)
@@ -1,5 +1,5 @@
 """
- Copyright (c) 2018 Intel Corporation
+ Copyright (c) 2018-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,6 +17,7 @@
 import numpy as np
 import networkx as nx
 
+from mo.graph.graph import Graph
 from mo.ops.lin_op import Mul
 from mo.ops.const import Const
 from mo.front.common.replacement import FrontReplacementSubgraph
@@ -33,7 +34,7 @@ class SoftmaxFrontReplacementSubgraph(FrontReplacementSubgraph):
             edges=[]
         )
 
-    def replace_sub_graph(self, graph: nx.MultiDiGraph, match: dict):
+    def replace_sub_graph(self, graph: Graph, match: dict):
         node = match['softmax']
         if 'temperature' in node and node['temperature'] != 1.0:
             in_node = node.in_node()