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

Understand data normalization #438

Open
LucasTomazini opened this issue Dec 8, 2021 · 0 comments
Open

Understand data normalization #438

LucasTomazini opened this issue Dec 8, 2021 · 0 comments

Comments

@LucasTomazini
Copy link

Hi Guys

I can't understand the normalization of the input matrix.

I know that normalization is carried out in the dimension of time and space, but I can't understand how it occurs in the process below.

N, C, T, V, M = x.size()
x = x.permute(0, 4, 3, 1, 2).contiguous()
x = x.view(N * M, V * C, T)
x = self.data_bn(x)
x = x.view(N, M, V, C, T)
x = x.permute(0, 1, 3, 4, 2).contiguous()
x = x.view(N * M, C, T, V)

Thank you so much.

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

No branches or pull requests

1 participant