Keras

August 30, 2018

Dissecting Keras neural networks: accessing weights and hidden layers

Many internet articles deal with how to setup the training of a neural network in Python/Keras, but what if we want to create our own neural network, manually setting the weights? Alternatively, what if we want to see the output of the hidden layers of our model? This blog post will go into those topics. Neural networks are typically represented by graphs in which the input of the neuron is […]