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
Do you know how to load the fully-connected layers as you load the conv layers
is the following still true for fully-connected layers?
matconvnet: weights are [width, height, in_channels, out_channels]
tensorflow: weights are [height, width, in_channels, out_channels]
the output of pool5 with a image with shape[1,224,224,3] is [1,7,7,512], and the fc6 weight is [7,7,512,4096], so how to flatten the weight in matconvnet to fit the format of tensorflow?
The text was updated successfully, but these errors were encountered:
Do you know how to load the fully-connected layers as you load the conv layers
is the following still true for fully-connected layers?
matconvnet: weights are [width, height, in_channels, out_channels]
tensorflow: weights are [height, width, in_channels, out_channels]
the output of pool5 with a image with shape[1,224,224,3] is [1,7,7,512], and the fc6 weight is [7,7,512,4096], so how to flatten the weight in matconvnet to fit the format of tensorflow?
The text was updated successfully, but these errors were encountered: