-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
3D convolution support #889
Comments
ncnn do not support 3d conv. In fact, I think it is hard to implement 3d operators in ncnn because the Mat data storage only has three dims at most at the moment. |
@nihui Does ncnn support batch processing? If it does, I'm thinking to transform 5 dimension data to 4 dimension data to do 3D conv instead. Is there any way to transform data of size (3(batch size), 3(channel number), 12(time span), 224(image width), 224(image height)) to (36, 3, 224, 224), combining the batch size and time span channel? |
batch processing is not supported |
I'm trying to implement ECO (Efficient Convolutional Network for Online Video Understanding) on ncnn. Does ncnn support 3d conv layer?
If not, I'm trying to implement a workaround by combining some of the data dimensions and need to check if ncnn support it. For example, a layer of the ECO network has input size (3(batch size), 3(channel number), 12(time span), 224(image width), 224(image height)), is there any support for changing data blob of this size to (3*12, 3, 224, 224)?
The text was updated successfully, but these errors were encountered: