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

Multiplicative integration #5

Open
MartinuzziFrancesco opened this issue Nov 4, 2024 · 0 comments
Open

Multiplicative integration #5

MartinuzziFrancesco opened this issue Nov 4, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@MartinuzziFrancesco
Copy link
Owner

As described here, multiplicative integration modifies the recurrent equation from

$$h_{t} = \sigma(W \cdot x_t + U \cdot h_{t-1} + b)$$

to

$$h_{t} = \sigma(W \cdot x_t \odot U \cdot h_{t-1} + b)$$

This is applicable to virtually every cell which uses the recurrent equation (which is all of them). It would be nice to find a way to give the user a choice for each cell which version to use (:normal or :multiplicative_integration I guess), but in order to do so we would need to abstract a lot out of the current implementation

@MartinuzziFrancesco MartinuzziFrancesco added the enhancement New feature or request label Dec 13, 2024
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