I am newbie in caffe, I am trying to normalize the convolution output between 0 to 1 with Min-Max Normalization.
Out = X - Xmin / (Xmax - Xmin)
I have checked many layers (Power, Scale, Batch Normalization, MVN) but no one is giving me min-max Normalization output in Layers. Can any one Help me ??
************* my prototxt *****************
name: "normalizationCheck"
layer {
name: "data"
type: "Input"
top: "data"
input_param { shape: { dim: 1 dim: 1 dim: 512 dim: 512 } }
}
layer {
name: "normalize1"
type: "Power"
bottom: "data"
top: "normalize1"
power_param {
shift: 0
scale: 0.00392156862
power: 1
}
}
layer {
bottom: "normalize1"
top: "Output"
name: "conv1"
type: "Convolution"
convolution_param {
num_output: 1
kernel_size: 1
pad: 0
stride: 1
bias_term: false
weight_filler {
type: "constant"
value: 1
}
}
}
The convolution layer output is not in Normalized form I want Min-Max Normalized output in Layer format. Manually I can do using code but I need in Layers. Thanks
You can write your own c++ layer following these guidelines, you'll see how to implement "forward only" layers in that page.
Alternatively, you can implement the layer in python and execute it in caffe via a '"Python"' layer:
First, implement your layer in python, store it in
'/path/to/my_min_max_layer.py'
:Once you have the layer implemented in python, you can simply add it to your net (make sure
'/path/to'
is in your$PYTHONPATH
):