You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The axis=-1 argument won't work in the tensorflow normalization. Although it tries to normalize to the last axis. But in 16.1 if you did it explicitly too by specifying the last axis of columns, it won't work.
For that to work you either need to give axis=None or give each element as an individual axis parameter for tf to recognize.
The text was updated successfully, but these errors were encountered:
The axis=-1 argument won't work in the tensorflow normalization. Although it tries to normalize to the last axis. But in 16.1 if you did it explicitly too by specifying the last axis of columns, it won't work.
For that to work you either need to give axis=None or give each element as an individual axis parameter for tf to recognize.
The text was updated successfully, but these errors were encountered: