Skip to content
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

remove deprecated normalize function #3531

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion flax/experimental/nnx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
from .nnx.nn.activations import log_sigmoid as log_sigmoid
from .nnx.nn.activations import log_softmax as log_softmax
from .nnx.nn.activations import logsumexp as logsumexp
from .nnx.nn.activations import normalize as normalize
from .nnx.nn.activations import one_hot as one_hot
from .nnx.nn.activations import relu as relu
from .nnx.nn.activations import relu6 as relu6
Expand Down
2 changes: 0 additions & 2 deletions flax/experimental/nnx/nnx/nn/activations.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
log_sigmoid,
log_softmax,
logsumexp,
normalize,
one_hot,
relu,
relu6,
Expand Down Expand Up @@ -53,7 +52,6 @@
'log_sigmoid',
'log_softmax',
'logsumexp',
'normalize',
'one_hot',
'relu',
'relu6',
Expand Down
Loading