bhack
bhack
I think we could ask to @mihaimaruseac It they have someone to comment in the upstream ticket. Probably we don't want to lost all the analsys we spent to debug...
I don't know if we could open a reference svg or something else as a side window/area when operating on frequencies. It is not something required permanently.
Is the accept or discard edits API exposed in VScode? https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode#_accept-or-discard-edits
But I think that API is not exposed to extensions so probably we need to open a feature request in Vscode repo. /cc @isidorn what do you think?
@isidorn Please check https://github.com/microsoft/vscode/issues/267581
Have you checked the impl? Try to follow `self.group`, `group_shape`, `group_reduction_axes` with your case at https://github.com/tensorflow/addons/blob/v0.11.2/tensorflow_addons/layers/normalizations.py#L156
For layer normalization check https://github.com/tensorflow/tensorflow/blob/v2.3.0/tensorflow/python/keras/layers/normalization.py#L1203
So in the original comment do you meant `moments` on [T,F] with `G=1` vs moments on `[F]` with layer-normalizzation?
I think it is ok that LN is over the feature map. About GroupNorm impl. /cc @Smokrow
@albertz Probably this is what you was looking for in the specific TF layer normalizzation https://github.com/tensorflow/tensorflow/blob/v2.3.0/tensorflow/python/keras/layers/normalization.py#L1029-L1036