I have used this converter to convert a Caffe model to Keras. But one of my layers is of type slice
and it needs to be converted as well but the converter currently does not support this and raises an exception. Is there any work around for it? Here is my layer:
layer {
name: "slice_label"
type: SLICE
bottom: "label"
top: "label_wpqr"
top: "label_xyz"
slice_param {
slice_dim: 1
slice_point: 4
}
}