You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
Hello,
I have a simple question: does caffe2 support 3D images? I'm not speaking about channel dimension, I'm speaking about 3 spatial dimensions, like in medical tomography for example. This requires 3D conv layers and 3D pooling layers. I know that elektronn and keras support 3D images, but last I checked caffe did not. Now that caffe2 is out, I was wondering if this is the case now?
Best,
Lazyleaf
The text was updated successfully, but these errors were encountered:
Yes we do have an implementation for 3D (convolution, max pooling, average pooling and spatial batch normalization).
For convolution you can use model.ConvND and pass 3d kernel, strides and padding parameters here is an example : model.ConvND("x", "y", kernels=[3,3,3], strides=[1,1,1], pads=[1,1,1]*2) model.MaxPool("y", "pooled_y", kernels=[2,2,2], strides=[1,1,1], pads=[1,1,1]*2)
Hello,
I have a simple question: does caffe2 support 3D images? I'm not speaking about channel dimension, I'm speaking about 3 spatial dimensions, like in medical tomography for example. This requires 3D conv layers and 3D pooling layers. I know that elektronn and keras support 3D images, but last I checked caffe did not. Now that caffe2 is out, I was wondering if this is the case now?
Best,
Lazyleaf
The text was updated successfully, but these errors were encountered: