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 tensorflow-addons #266

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

DrumsnChocolate
Copy link

tensorflow-addons has reached EOL, and to keep supporting newer versions of python, we need to drop the dependency. The simplest way to do that involves removing support for the weight normalization layer.

@@ -251,7 +238,7 @@ def __init__(self,
self.output_slice_index = None # in case return_sequence=False
self.padding_same_and_time_dim_unknown = False # edge case if padding='same' and time_dim = None

if self.use_batch_norm + self.use_layer_norm + self.use_weight_norm > 1:
if self.use_batch_norm + self.use_layer_norm > 1:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought to keep my changes minimal, but do we want to turn this into an or statement instead? since there's only two variables to check now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants