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
d64529f6
Commit
d64529f6
authored
Jan 26, 2020
by
ashishiva3@gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added parsing for Connected and Dropout. Modified maxpool padding
parent
3d5ca3ef
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
darknet_io.cpp
modules/dnn/src/darknet/darknet_io.cpp
+0
-0
test_darknet_importer.cpp
modules/dnn/test/test_darknet_importer.cpp
+12
-0
No files found.
modules/dnn/src/darknet/darknet_io.cpp
View file @
d64529f6
This diff is collapsed.
Click to expand it.
modules/dnn/test/test_darknet_importer.cpp
View file @
d64529f6
...
...
@@ -528,6 +528,11 @@ TEST_P(Test_Darknet_layers, reorg)
testDarknetLayer
(
"reorg"
);
}
TEST_P
(
Test_Darknet_layers
,
maxpool
)
{
testDarknetLayer
(
"maxpool"
);
}
TEST_P
(
Test_Darknet_layers
,
convolutional
)
{
if
(
target
==
DNN_TARGET_MYRIAD
)
...
...
@@ -537,6 +542,13 @@ TEST_P(Test_Darknet_layers, convolutional)
testDarknetLayer
(
"convolutional"
,
true
);
}
TEST_P
(
Test_Darknet_layers
,
connected
)
{
if
(
backend
==
DNN_BACKEND_OPENCV
&&
target
==
DNN_TARGET_OPENCL_FP16
)
applyTestTag
(
CV_TEST_TAG_DNN_SKIP_OPENCL_FP16
);
testDarknetLayer
(
"connected"
,
true
);
}
INSTANTIATE_TEST_CASE_P
(
/**/
,
Test_Darknet_layers
,
dnnBackendsAndTargets
());
}}
// namespace
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