You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
Hi, I wanna to extract the weights from VGG model in the keras library for further other usage. And I read the weights from the following script
from keras.applications.vgg16 import VGG16
model = VGG16()
weights = []
for layer in model.layers:
weights.append(layer.get_weights()) # list of numpy array
And the shape of weights in CONV1 is tuple(3,3,3,64). Could you help me check the order of this tuple? Is it (width of filter, height of filter, channel of filter, number of kernel) or ( height of filter, width of filter, channel of filter, number of kernel)?
Thanks
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, I wanna to extract the weights from VGG model in the keras library for further other usage. And I read the weights from the following script
And the shape of weights in CONV1 is tuple(3,3,3,64). Could you help me check the order of this tuple? Is it (width of filter, height of filter, channel of filter, number of kernel) or ( height of filter, width of filter, channel of filter, number of kernel)?
Thanks
The text was updated successfully, but these errors were encountered: