Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lab4 Kaggle - argument typo #2

Closed
LecJackS opened this issue Sep 27, 2016 · 1 comment
Closed

Lab4 Kaggle - argument typo #2

LecJackS opened this issue Sep 27, 2016 · 1 comment

Comments

@LecJackS
Copy link

In lab4 "Build the model", convolutional2d is called as

# wrapping conv with batch_norm
def conv(l_in, num_outputs, kernel_size, scope, stride=1):
    return convolution2d(l_in, num_outputs=num_outputs, kernel_size=kernel_size,
                         stride=stride, normalize_fn=batch_norm, scope=scope)

Which produces:

TypeError: convolution2d() got an unexpected keyword argument 'normalize_fn'

It should be "normalizer_fn". Adding that missing R makes it works perfectly.

@LecJackS LecJackS changed the title Lab4 - argument typo Lab4 Kaggle - argument typo Sep 27, 2016
alrojo added a commit that referenced this issue Sep 27, 2016
@alrojo
Copy link
Owner

alrojo commented Sep 27, 2016

Thank for noticing @LecJackS !

Fixed in this commit.

@alrojo alrojo closed this as completed Sep 27, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants