Skip to content Skip to sidebar Skip to footer

Modify Some Values In The Weight File (.h5) Of Vgg-16

I have the weight and bias values for each layer of the VGG model saved as a .h5 file. I got the file from: https://github.com/fchollet/deep-learning-models/releases/tag/v0.1 Now l

Solution 1:

Try this.

data[0,0,0,0]=0

ndarray objects need to update in this way rather than normal array-list.

Post a Comment for "Modify Some Values In The Weight File (.h5) Of Vgg-16"