Optimizers and learning-rate schedulers — step 5 of 7
This scheduler multiplies decay by the epoch instead of raising decay to the epoch power, so the learning rate grows with each epoch (0.15 at epoch 3) instead of shrinking. Fix line 3 to use step decay.
Expected output:
0.0125
The break is on line 3 — but read the whole snippet first.