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

Implement RNN Unit (15 points) #7

Open
chris-dare opened this issue Oct 20, 2020 · 0 comments
Open

Implement RNN Unit (15 points) #7

chris-dare opened this issue Oct 20, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@chris-dare
Copy link
Owner

You are required to implement the forward method of RNNUnit module. The description of the inputs and
expected outputs are specified below: (see page 4 for details)
Inputs
• x (effective batch size, input size)
– Input at the current time step.
– NOTE: For now interpret effective batch size same as regular batch size. The difference will
become apparent later in the homework.
• h (effective batch size, hidden size)
– Hidden state generated by the previous time step, ht−1
Outputs
• h prime: (effective batch size, hidden size)
– New hidden state generated at the current time step, h_t

@chris-dare chris-dare self-assigned this Oct 20, 2020
@chris-dare chris-dare added the enhancement New feature or request label Oct 20, 2020
@chris-dare chris-dare added this to the RNN milestone Oct 20, 2020
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