The scale layer like this:
layer {
name: “Scale1”
type: “Scale”
bottom: “res2a_branch2b”
bottom: “Reshape1”
top: “Scale1”
scale_param {
axis: 0
bias_term: false
}
}
It has two bottom,the trtexec error like topic.
How to fix this error?
The scale layer like this:
layer {
name: “Scale1”
type: “Scale”
bottom: “res2a_branch2b”
bottom: “Reshape1”
top: “Scale1”
scale_param {
axis: 0
bias_term: false
}
}
It has two bottom,the trtexec error like topic.
How to fix this error?
I met the same issue, and maybe the only way that can fix it is writing a plugin follows as caffe scale layer.
I met the same issue,too. did you solute it?
I met the same issue.
the layer like this:
layer {
name: “pool1”
type: “Pooling”
bottom: “conv1_2”
top: “pool1”
top: “pool1_mask”
pooling_param {
pool: MAX
kernel_size: 2
stride: 2
}
}
and the error is:
pool1:expected 1 tops blobs, found 2
error parsing layer type Pooling index 5
I met the same issue, have you solved?