You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tied_b should be initialized to True according to the documentation. However, it is initialized to None, essentially resulting in a default value of False. Either the documentation or the default value should be updated.
The text was updated successfully, but these errors were encountered:
The code is at https://github.com/lisa-lab/pylearn2/blob/master/pylearn2/models/mlp.py#L2930
Having a default value of None in the constructor is not really the problem (it allows to discriminate between the default behaviour and an explicit True), but the constructor should set self.tied_b = True if None was passed.
@mark-schultz If you need that behaviour, this should be all the changes you need to make to your local copy of Pylearn2.
As far as I remember, the main issue was how to handle the change of behaviour for existing users and scripts.
tied_b should be initialized to True according to the documentation. However, it is initialized to None, essentially resulting in a default value of False. Either the documentation or the default value should be updated.
The text was updated successfully, but these errors were encountered: