gpt4 book ai didi

caffe - 在 caffe 中融合不同的输入 channel ?

转载 作者:行者123 更新时间:2023-12-04 11:03:54 26 4
gpt4 key购买 nike

我想先分别处理不同类型的数据,然后将它们融合到一个公共(public)层中。这在 Caffe 中是否可行,如果可以,最好的方法是什么?

我读过可以在同一个 prototxt 文件中定义多个数据层。但是如何融合它们呢?

我可以创建一个 InnerProduct层并指定几个 bottom层?或者我必须先使用 Concat 连接各个层吗?层?

对于任何小代码示例,我将非常感谢!

最佳答案

正如上面评论中所讨论的,InnerProduct使用单个输入。然后可以在特定的 Concat 中完成融合(连接)。具有如下配置的层:

layer {
name: "concat"
bottom: "in1"
bottom: "in2"
top: "out"
type: "Concat"
concat_param {
axis: 1
}
}

官方文档有关于该层的更多详细信息: http://caffe.berkeleyvision.org/tutorial/layers.html

关于caffe - 在 caffe 中融合不同的输入 channel ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32717102/

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