-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
about “ train_PQAN_pool2.prototxt" #5
Comments
”pool_s is used for score generation." |
@Hucley |
1.The output of pool_s layer isn't used in the next, why?
2. In this prototxt, you choose the "pool2/3x3_s2" as the input of quality generation unit, which is the different from the train_PQAN_image.prototxt. What's the difference between them?
##convolution
layer {
bottom: "pool2/3x3_s2"
top: "conv1_sss1"
name: "conv1_sss1"
type: "Convolution"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 32
kernel_size: 3
stride: 1
pad: 1
weight_filler {
type: "gaussian"
std: 0.1
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
bottom: "conv1_sss1"
top: "conv1_sss2"
name: "conv1_sss2"
type: "Convolution"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
convolution_param {
num_output: 32
kernel_size: 3
stride: 1
pad: 1
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "pool_s"
type: "Pooling"
bottom: "conv1_sss1"
top: "pool_s"
pooling_param {
pool: AVE
}
}
layer {
name: "fc1_s"
type: "InnerProduct"
bottom: "pool2/3x3_s2"
top: "fc1_s"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
inner_product_param {
num_output: 3
weight_filler {
type: "gaussian"
std: 0.01
}
#weight_filler {
# type: "xavier"
#}
bias_filler {
type: "constant"
value: 0
}
}
}
The text was updated successfully, but these errors were encountered: