-
-
Notifications
You must be signed in to change notification settings - Fork 609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
removing old deprecations and Optimise module #2412
base: master
Are you sure you want to change the base?
Conversation
src/deprecations.jl
Outdated
# Channel notation: Changed to match Conv, but very softly deprecated! | ||
# Perhaps change to @deprecate for v0.15, but there is no plan to remove these. | ||
Dense(in::Integer, out::Integer, σ = identity; kw...) = | ||
Dense(in => out, σ; kw...) | ||
Bilinear(in1::Integer, in2::Integer, out::Integer, σ = identity; kw...) = | ||
Bilinear((in1, in2) => out, σ; kw...) | ||
Embedding(in::Integer, out::Integer; kw...) = Embedding(in => out; kw...) | ||
|
||
RNNCell(in::Integer, out::Integer, σ = tanh; kw...) = RNNCell(in => out, σ; kw...) | ||
LSTMCell(in::Integer, out::Integer; kw...) = LSTMCell(in => out; kw...) | ||
|
||
GRUCell(in::Integer, out::Integer; kw...) = GRUCell(in => out; kw...) | ||
GRUv3Cell(in::Integer, out::Integer; kw...) = GRUv3Cell(in => out; kw...) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most of this would be great to delete!
These lines though, I wonder if we should keep. Or change them to print a depwarn.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes I'll deprecate them
8cf0475
to
efedbdf
Compare
closing in favor of #2495 |
Last part of #1986