probably-not-working concatenation
This commit is contained in:
parent
8961b4c10f
commit
781f5c0c24
|
@ -50,6 +50,9 @@ node(::typeof(softmax), xs) =
|
|||
|
||||
node(s::SoftmaxOutput, xs) = mx.SoftmaxOutput(data = xs, name = s.name)
|
||||
|
||||
node(::typeof(cat), dim::Integer, a...) = mx.Concat(a..., dim = dim)
|
||||
node(::typeof(vcat), a...) = node(cat, 1, a...)
|
||||
|
||||
graph(vars, ::Input, x) = x
|
||||
|
||||
graph(vars, c::Conv, x) =
|
||||
|
|
Loading…
Reference in New Issue