relu inferrence

This commit is contained in:
Mike J Innes 2017-03-20 19:57:11 +00:00
parent 498a66e7b6
commit 6756ce7528

View File

@ -16,6 +16,7 @@ flatten(xs) = reshape(xs, length(xs))
infer(::typeof(softmax), x) = x
infer(::typeof(tanh), x) = x
infer(::typeof(relu), x) = x
infer(::typeof(σ), x) = x
infer(::typeof(flatten), x::Dims) = (x[1], prod(x[2:end])...)