-
Notifications
You must be signed in to change notification settings - Fork 260
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
flip_filters and pad parameter not used by NeuralNet's class #307
Comments
nolearn uses whatever Lasagne layers you throw at it. I have trained with layers using the |
In effect 'pad is working just not documented in nolearn not so important. `cnn = NeuralNet(
The received error message is: |
This looks more like the Lasagne version installed with nolearn not supporting that parameter. Is it possible to instantiate a conv layer with that parameter at all?
If not, maybe installing the latest Lasagne version will help. In general, the nolearn documentation will not repeat all the parameters from Lasagne. That does not mean that nolearn does not support them. |
I have I should immagine that I do not have the last version but if I try the command I should imagine that my version is corrupted so I try to delete using the command No other idea to fix this issue |
I solved, the reason was exactly the old lasagne version. Using: pip install --upgrade https://github.com/Theano/Theano/archive/master.zip I installed lasagne 0.2dev2 with also Theano 0.9dev4 and now it is working BR |
I would suggest to add into NeuralNet's class the Lasagne's parameters 'pad' and 'flip_filters' used in ImageNet nn like VGG or GoogleNet or ResNet today available in several library but not in nolearn. Into the nolearn documentation the two are not mentioned but probably the parameter pad is used because when I add it no errors are generated. In contrary if I add to a layer flip_filters parameter an error is generated. Please sorry if I'm wrong.
The text was updated successfully, but these errors were encountered: