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 Theano crash caused by missing blas config?
When I try to use Theano, I run into the following error:
configparser.NoSectionError: No section: 'blas'
(full log)
The following minimal example reproduces the problem:
FROM python:3.9.9-slim
RUN ...
Tobias Hermann
Votes: 0
Answers: 0
module 'numpy.distutils.__config__' has no attribute 'blas_opt_info'
I'm trying to study the neural-network-and-deep-learning (http://neuralnetworksanddeeplearning.com/chap1.html). Using the updated version for Python 3 by MichalDanielDobrzanski (https://github.com/Mic...
Turq6ise
Votes: 0
Answers: 3