I am building a CNN using keras and I know that I can save the weights using model.save_weights()
but how can I save the biases of the neural network? Am I missing something or is it that Keras just doesn't provide biases?
Asked
Active
Viewed 162 times
1

Jackson
- 151
- 1
- 1
- 9
-
https://stackoverflow.com/questions/42053170/how-can-i-get-biases-from-a-trained-model-in-keras – Mitch Wheat Oct 25 '20 at 15:49
-
biases are also weights, so the biases are also saved in that function – Dr. Snoopy Oct 25 '20 at 16:02