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

[Algorithm][Parametric] Implement the GDN layer #20

Open
jejjohnson opened this issue Mar 11, 2021 · 0 comments
Open

[Algorithm][Parametric] Implement the GDN layer #20

jejjohnson opened this issue Mar 11, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@jejjohnson
Copy link
Member

jejjohnson commented Mar 11, 2021

A basic implementation of the GDN algorithm. It is mainly used in compression. It features a normalization which can be coupled with a convolution/linear layer.

y[i] = x[i] / sqrt(beta[i] + sum_j(gamma[j, i] * x[j]))

Resources


Potential Issues

Somehow we need to constrain a few parameters, e.g., gamma and beta. Probably a simple np.max would work.

@jejjohnson jejjohnson added the enhancement New feature or request label Mar 11, 2021
@jejjohnson jejjohnson changed the title [Algorithm] Implement the GDN layer [Algorithm][Parametric] Implement the GDN layer Mar 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant