rm comments

This commit is contained in:
Tejan Karmali 2018-10-10 11:55:10 -04:00
parent 6b4bbd4fce
commit 8987e2c423

View File

@ -279,9 +279,6 @@ function RNNDesc(m::CuRNNs{T}) where T
(m.σ == tanh ? RNN_TANH : RNN_RELU) : (m.σ == tanh ? RNN_TANH : RNN_RELU) :
m isa CuGRU ? GRU : LSTM m isa CuGRU ? GRU : LSTM
r = RNNDesc{T}(mode, i, h) r = RNNDesc{T}(mode, i, h)
#w_ = vcat(m.Wi[:], m.Wh[:], m.b)
#r.params[1:length(w_)] .= w_
return r return r
end end