Skip to content

ICEORY/caffe_lr_policy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Nov 27, 2017
3ef4b3b · Nov 27, 2017

History

1 Commit
Nov 27, 2017
Nov 27, 2017
Nov 27, 2017
Nov 27, 2017
Nov 27, 2017
Nov 27, 2017

Repository files navigation

Comparisons of different learning rate policy in Caffe


Principle

  1. fixed: l r i t e r = l r b a s e

  2. step: l r i t e r = l r b a s e γ f l o o r ( i t e r s t e p )

  3. exp: l r i t e r = l r b a s e γ i t e r

  4. inv: $lr_{iter} = lr_{base}(1+\gammaiter)^{-power}$

  5. multi_step: l r i t e r = l r b a s e γ , where γ is decided by pre-defined steps.

  6. poly: l r i t e r = l r b a s e ( 1 i t e r m a x I t e r ) p o w e r

  7. sigmoid: $lr_{iter} = lr_{base}\frac{1}{1+e^{-\gamma(iter-step)}}$

Comparisons

lr_policy

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages