From 242b4d6e2303ea0d77c3ec193d75fdeec0b10030 Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Mon, 20 Feb 2017 21:49:02 +0000 Subject: [PATCH] fixes --- src/backend/mxnet/graph.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/mxnet/graph.jl b/src/backend/mxnet/graph.jl index 44b7c5cd..84658a34 100644 --- a/src/backend/mxnet/graph.jl +++ b/src/backend/mxnet/graph.jl @@ -30,7 +30,7 @@ graph(::typeof(softmax), xs) = mx.broadcast_div(exp(xs), mx.Reshape(mx.sum(exp(xs)), shape = (1,1))) graph(::typeof(cat), dim::Integer, a...) = mx.Concat(a..., dim = dim) -graph(::typeof(vcat), a...) = node(cat, 1, a...) +graph(::typeof(vcat), a...) = graph(cat, 1, a...) graph(::Input, x) = x