Optimizers and learning-rate schedulers — step 6 of 7
Write schedule(base, decay, epochs) that returns the list of learning
rates for each epoch 0 .. epochs-1, using step decay
base * decay**epoch. Round each lr to 4 decimals.
Write schedule(base, decay, epochs) that returns the list of learning
rates for each epoch 0 .. epochs-1, using step decay
base * decay**epoch. Round each lr to 4 decimals.