Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
805ab633
Commit
805ab633
authored
May 30, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14662 from dkurt:dnn_tf_fix_identity_switch
parents
738435b1
081d9bc7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
tf_graph_simplifier.cpp
modules/dnn/src/tensorflow/tf_graph_simplifier.cpp
+7
-4
test_tf_importer.cpp
modules/dnn/test/test_tf_importer.cpp
+1
-0
No files found.
modules/dnn/src/tensorflow/tf_graph_simplifier.cpp
View file @
805ab633
...
...
@@ -601,7 +601,7 @@ public:
class
UpsamplingKerasSubgraph
:
public
Subgraph
{
public
:
UpsamplingKerasSubgraph
()
UpsamplingKerasSubgraph
(
const
std
::
string
&
type
)
{
int
input
=
addNodeToMatch
(
""
);
int
shape
=
addNodeToMatch
(
"Shape"
,
input
);
...
...
@@ -611,8 +611,8 @@ public:
int
strided_slice
=
addNodeToMatch
(
"StridedSlice"
,
shape
,
stack
,
stack_1
,
stack_2
);
int
factors
=
addNodeToMatch
(
"Const"
);
int
mul
=
addNodeToMatch
(
"Mul"
,
strided_slice
,
factors
);
addNodeToMatch
(
"ResizeNearestNeighbor"
,
input
,
mul
);
setFusedNode
(
"ResizeNearestNeighbor"
,
input
,
factors
);
addNodeToMatch
(
type
,
input
,
mul
);
setFusedNode
(
type
,
input
,
factors
);
}
virtual
void
finalize
(
tensorflow
::
GraphDef
&
net
,
tensorflow
::
NodeDef
*
fusedNode
,
...
...
@@ -707,7 +707,8 @@ void simplifySubgraphs(tensorflow::GraphDef& net)
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
DeconvolutionValidKerasSubgraph
()));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
DeconvolutionSameKerasSubgraph
()));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
ResizeBilinearSubgraph
()));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
UpsamplingKerasSubgraph
()));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
UpsamplingKerasSubgraph
(
"ResizeNearestNeighbor"
)));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
UpsamplingKerasSubgraph
(
"ResizeBilinear"
)));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
SoftMaxSlimSubgraph
()));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
SoftMaxSlimV2Subgraph
()));
subgraphs
.
push_back
(
Ptr
<
Subgraph
>
(
new
ReshapeAsShapeSubgraph
()));
...
...
@@ -752,6 +753,8 @@ void RemoveIdentityOps(tensorflow::GraphDef& net)
tensorflow
::
NodeDef
*
layer
=
net
.
mutable_node
(
li
);
for
(
int
input_id
=
0
;
input_id
<
layer
->
input_size
();
input_id
++
)
{
String
input_op_name
=
layer
->
input
(
input_id
);
input_op_name
=
input_op_name
.
substr
(
input_op_name
.
find
(
'^'
)
+
1
,
input_op_name
.
rfind
(
':'
));
IdentityOpsMap
::
iterator
it
=
identity_ops
.
find
(
input_op_name
);
if
(
it
!=
identity_ops
.
end
())
{
...
...
modules/dnn/test/test_tf_importer.cpp
View file @
805ab633
...
...
@@ -186,6 +186,7 @@ TEST_P(Test_TensorFlow_layers, batch_norm)
runTensorFlowNet
(
"unfused_batch_norm_no_gamma"
);
runTensorFlowNet
(
"mvn_batch_norm"
);
runTensorFlowNet
(
"mvn_batch_norm_1x1"
);
runTensorFlowNet
(
"switch_identity"
);
}
TEST_P
(
Test_TensorFlow_layers
,
batch_norm3D
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment