I have a NN model with Dropout
layers. I'd like to check which nodes of the network have been dropped at each iteration. Or, which weights have been set to 0.
I tried looking at the model weights after one iteration, but it didn't contain any zeros, presumably because the dropped nodes don't transfer to the final model.
This question has been asked before, but it didn't get an answer.