In a keras model, It's possible to set the learning rate for the model when compiling, like this,
model.compile(optimizer=Adam(learning_rate=0.001), loss=...)
This sets the same learning rate for all the layers in the model, but how do I set different learning rates for each layer of my model?
like this,
layer 1 : 0.001
layer 2 : 0.05
layer 3 : 0.02
etc.
How do I do this in keras? or in tf.keras?