Commit a85c5b96 authored by syiming's avatar syiming
Browse files

add pad_to_multiple

parent ee436648
...@@ -220,9 +220,14 @@ message FasterRcnnFeatureExtractor { ...@@ -220,9 +220,14 @@ message FasterRcnnFeatureExtractor {
// if the value is set to true, the base feature extractor's hyperparams will // if the value is set to true, the base feature extractor's hyperparams will
// be overridden with the `conv_hyperparams`. // be overridden with the `conv_hyperparams`.
optional bool override_base_feature_extractor_hyperparams = 9 optional bool override_base_feature_extractor_hyperparams = 5
[default = false]; [default = false];
// The nearest multiple to zero-pad the input height and width dimensions to.
// For example, if pad_to_multiple = 2, input dimensions are zero-padded
// until the resulting dimensions are even.
optional int32 pad_to_multiple = 6 [default = 32];
// Feature Pyramid Networks config. // Feature Pyramid Networks config.
optional FeaturePyramidNetworks fpn = 10; optional FeaturePyramidNetworks fpn = 7;
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment