We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Copy of KnetLayers?
The text was updated successfully, but these errors were encountered:
Could 3D functions (5D tensors) please be supported?
Sorry, something went wrong.
At the moment KnetLayers' implementation of CNNs is restricted to 2D inputs:
function Filtering{T}(;height::Integer, width::Integer, inout::Pair=1=>1, activation::ActOrNothing=NonAct(), winit=xavier, binit=zeros, atype=arrtype, opts...) where T <: Function wsize = T===typeof(conv4) ? inout : reverse(inout) w = param(height,width,wsize...; init=winit, atype=atype) b = binit !== nothing ? Bias(1,1,inout[2],1; init=binit, atype=atype) : Bias(nothing) Filtering{T}(w, b, activation; opts...) end
In my code I just changed height and width to a tuple.
denizyuret
No branches or pull requests
Copy of KnetLayers?
The text was updated successfully, but these errors were encountered: