From eb7ae7e3be1d5577ef25b71bd7df9c5e0a2238ea Mon Sep 17 00:00:00 2001 From: Craig Quiter Date: Mon, 1 May 2017 07:57:30 -0700 Subject: [PATCH] `A_filt_sizes`=>`Ahat_filt_sizes` in docstring (#21) --- prednet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prednet.py b/prednet.py index 7faddec..d26ee85 100755 --- a/prednet.py +++ b/prednet.py @@ -23,7 +23,7 @@ class PredNet(Recurrent): Has length of 1 - len(stack_sizes). Ex. (3, 3) would mean that targets for layers 2 and 3 are computed by a 3x3 convolution of the errors (E) from the layer below (followed by max-pooling) - A_filt_sizes: filter sizes for the prediction (Ahat) modules. + Ahat_filt_sizes: filter sizes for the prediction (Ahat) modules. Has length equal to length of stack_sizes. Ex. (3, 3, 3) would mean that the predictions for each layer are computed by a 3x3 convolution of the representation (R) modules at each layer.