Could anybody please tell me how to parse a caffe normalize(not batch-normalize) layer in TensorRT 5.0?
It looks like this:
layer {
name: "conv4_3_norm"
type: "Normalize"
bottom: "conv4_3"
top: "conv4_3_norm"
norm_param {
across_spatial: false
scale_filler {
type: "constant"
value: 20.0
}
channel_shared: false
}
}
I will really appreciate your help!