fix for matmul

This commit is contained in:
Mike J Innes 2016-10-28 15:02:48 +01:00
parent 1a726033f4
commit d42130b8cd
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ end
Recurrent(in::Integer, hidden::Integer, out::Integer; init = initn) =
Recurrent(initn((in, hidden)), initn((hidden, hidden)), initn((hidden, out)),
initn(hidden), initn(out), zeros(hidden))
initn(hidden), initn(out), zeros(Float32, hidden)')
# syntax(x) = syntax(Flow.dl(x), bindconst = true)