corrected a typo

This commit is contained in:
KeshSam
2021-02-04 15:06:25 +00:00
committed by Varuna Jayasiri
parent 931f2eb713
commit 601f016a9b

View File

@ -51,7 +51,7 @@ class RHNCell(Module):
We have also replaced the weight matrices and bias vectors from the equations with
linear transforms, because that's how the implementation is going to look like.
We implement weight tying, as described in paper, $c_d^t = (1 - g_d^t$.
We implement weight tying, as described in paper, $c_d^t = 1 - g_d^t$.
"""
def __init__(self, input_size: int, hidden_size: int, depth: int):