我正在尝试使用 Julia 进行深度学习。在其中一个关于 MLP 的教程中,使用以下结构在 ANN 中对多层进行建模。这段代码是什么意思?
struct Chain layers Chain(layers...) = new(layers) end
julia
julia ×1