Skip to content

Layer weight shape (3, 3, 3, 64) not compatible with provided weight shape (64, 3, 3, 3) #51

Open
@meryemjanati

Description

@meryemjanati

hi when i run this code i got the following error:

f = h5py.File(weights_path)
for k in range(f.attrs['nb_layers']):
if k >= len(model.layers):
# we don't look at the last (fully-connected) layers in the savefile
break
g = f['layer_{}'.format(k)]
weights = [g['param_{}'.format(p)] for p in range(g.attrs['nb_params'])]

model.layers[k].set_weights(weights)

f.close()

ValueError: Layer weight shape (3, 3, 3, 64) not compatible with provided weight shape (64, 3, 3, 3)

i tried this code with both theano and tensorflow but got the same error i tried also 'convert_kernel' but didn't work also any help please?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions