python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to traverse model layers as a tree in theano/lasagne?
I need to traverse the model's layers by tree levels, such that getting the ancestor(input) and predecessor(output) layers and the adjacent layers in the same level.
here's a model as an example:
impo...
HATEM EL-AZAB
Votes: 0
Answers: 0
How to override gradient for the nonlinearity functions in lasagne?
I have a model, for which i need to compute the gradients of output w.r.t the model's input. But I want to apply some custom gradients for some of the nonlinearity functions applied on some of the mod...
HATEM EL-AZAB
Votes: 0
Answers: 1
How to fix error when trying to use batch_norm function from lasagne library?
When i try to use batch_norm function from lasagne library:
lasagne.layers.batch_norm(...
this error appears:
AttributeError: module 'lasagne.layers' has no attribute 'batch_norm'
However I did all ...
gh1222
Votes: 0
Answers: 0