From 601f016a9bfc0ce6f65604d9aea76b98d672c063 Mon Sep 17 00:00:00 2001 From: KeshSam <78550290+KeshSam@users.noreply.github.com> Date: Thu, 4 Feb 2021 15:06:25 +0000 Subject: [PATCH] corrected a typo --- labml_nn/recurrent_highway_networks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labml_nn/recurrent_highway_networks/__init__.py b/labml_nn/recurrent_highway_networks/__init__.py index ad8adb56..8ba83247 100644 --- a/labml_nn/recurrent_highway_networks/__init__.py +++ b/labml_nn/recurrent_highway_networks/__init__.py @@ -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):