keras get_weights() & set_weights() incompatible?
Hi, guys,
I have trained a model using Keras (the code is from Github, and can be run). I changed the model. the model is trained using a patch-based method. and when I'm using
weights = model_patch.get_weight()
model_full.set_weights(weights)
The compiler said: they are incompatible!
Would you please help me?
Many thanks.