Difference between MultiplicativeLR and LambdaLR

Viewed 360
1 Answers

The main difference is that they use a different function for computing the learning rate of the function.

LambdaLR's function is:

enter image description here

While MultiplicativeLR's function is:

enter image description here

Thus they would have a different result for the learning rate. Both are useful for a variety of scenarios.

Related