From af815d86f12da1ed2071b7f21488cd3ed738f152 Mon Sep 17 00:00:00 2001 From: Geert Date: Fri, 13 Mar 2015 12:54:33 +0100 Subject: [PATCH] - ConvElemwise now sets tied_b to the correct default --- pylearn2/models/mlp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pylearn2/models/mlp.py b/pylearn2/models/mlp.py index cfe52b5b5c..284c18cba7 100755 --- a/pylearn2/models/mlp.py +++ b/pylearn2/models/mlp.py @@ -2969,6 +2969,9 @@ def __init__(self, assert nonlinearity is not None + if tied_b is None: + self.tied_b = True + self.nonlin = nonlinearity self.__dict__.update(locals()) assert monitor_style in ['classification', 'detection'], (