Viewing a single comment thread. View all comments

Hamster729 t1_iwo99fy wrote

That's a very odd looking time decay rule, and I'm almost certain that it does not do what you expect it to do.

Try:

def lr_time_based_decay(epoch, lr):    
   return lr*0.95  

(also see my suggestion from the edit to my previous post)

1

Constant-Cranberry29 OP t1_iwoc176 wrote

still the same even I drop abs, drop normalization, and change last layer to model.add(Dense(1, activation=None, use_bias=False)) it doesn't work

1