Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
4152a5c7
Commit
4152a5c7
authored
Jul 29, 2020
by
syiming
Browse files
move BidirectionalFeaturePyramidNetworks to fpn.proto
parent
a85c5b96
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
21 deletions
+20
-21
research/object_detection/protos/fpn.proto
research/object_detection/protos/fpn.proto
+20
-0
research/object_detection/protos/ssd.proto
research/object_detection/protos/ssd.proto
+0
-21
No files found.
research/object_detection/protos/fpn.proto
View file @
4152a5c7
...
...
@@ -27,3 +27,23 @@ message FeaturePyramidNetworks {
// channel depth for additional coarse feature layers.
optional
int32
additional_layer_depth
=
3
[
default
=
256
];
}
// Configuration for Bidirectional Feature Pyramid Networks.
message
BidirectionalFeaturePyramidNetworks
{
// minimum level in the feature pyramid.
optional
int32
min_level
=
1
[
default
=
3
];
// maximum level in the feature pyramid.
optional
int32
max_level
=
2
[
default
=
7
];
// The number of repeated top-down bottom-up iterations for BiFPN-based
// feature extractors (bidirectional feature pyramid networks).
optional
int32
num_iterations
=
3
;
// The number of filters (channels) to use in feature pyramid layers for
// BiFPN-based feature extractors (bidirectional feature pyramid networks).
optional
int32
num_filters
=
4
;
// Method used to combine inputs to BiFPN nodes.
optional
string
combine_method
=
5
[
default
=
'fast_attention'
];
}
research/object_detection/protos/ssd.proto
View file @
4152a5c7
...
...
@@ -203,24 +203,3 @@ message SsdFeatureExtractor {
optional
int32
num_layers
=
12
[
default
=
6
];
}
// Configuration for Bidirectional Feature Pyramid Networks.
message
BidirectionalFeaturePyramidNetworks
{
// minimum level in the feature pyramid.
optional
int32
min_level
=
1
[
default
=
3
];
// maximum level in the feature pyramid.
optional
int32
max_level
=
2
[
default
=
7
];
// The number of repeated top-down bottom-up iterations for BiFPN-based
// feature extractors (bidirectional feature pyramid networks).
optional
int32
num_iterations
=
3
;
// The number of filters (channels) to use in feature pyramid layers for
// BiFPN-based feature extractors (bidirectional feature pyramid networks).
optional
int32
num_filters
=
4
;
// Method used to combine inputs to BiFPN nodes.
optional
string
combine_method
=
5
[
default
=
'fast_attention'
];
}
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