gpt4 book ai didi

image-processing - 具有反卷积或其他功能的高档层

转载 作者:行者123 更新时间:2023-11-30 09:15:44 25 4
gpt4 key购买 nike

我需要在 caffe 中使用一个高档层,将像素“加倍”。 10x10 图像变为 20x20,像素在水平和垂直维度上都“加倍”。我听说反卷积层可能有助于步幅为 2、无填充且内核大小为 1x1,但这会在像素之间放置零。有人可以帮助我吗?谢谢

最佳答案

我会尝试内核大小为 2,并将 init 权重(并固定?)设置为 1。

layer {
name: "upsample"
type: "Deconvolution"
bottom: x
top: y
convolution_param {
num_output: # same as number of input channels
group: # same as number of channels
bias_term: false # no need for bias
kernel_size: 2
stride: 2
pad: 0
weight_filler: { type: "constant" val: 1 }
}
param { lr_mult: 0 }
}

请注意,groupnum_output 应该相等,这样您就有相同的内核独立作用于每个 channel 。

关于image-processing - 具有反卷积或其他功能的高档层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56444187/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com