John
John

Reputation: 3070

What is meaning of step in loss graph

I find some paper (Resnet paper) has the graph as follows: enter image description here

As you see, the loss gradually decreases when iterations increasing. But at some point (red arrow), the loss rapid decrease (as a step). What is this point? Is it changing learning rate point? Thanks all

Upvotes: 2

Views: 868

Answers (1)

Dr. Snoopy
Dr. Snoopy

Reputation: 56377

Yes, they changed the learning rate at that point. It could be a learning rate schedule, which means decrease the learning rate by a factor every X iterations, or it could be another policy like decrease the learning rate when a plateau in the loss is detected.

Upvotes: 2

Related Questions