1. 17 Jun, 2020 2 commits
  2. 15 Jun, 2020 2 commits
    • Harry's avatar
      Add CosineRestartLrUpdaterHook (#319) · f28a7c7e
      Harry authored
      * feat: add CosineRestartLrUpdaterHook
      
      * style: rename period to periods
      
      * fix: bug in period 0
      
      * feat: rename eta_min to min_lr and add min_lr_ratio
      
      * docs: fix docstring of restart lr updater
      
      * refactor: use annealing_cos
      
      * docs: add docstring to annealing_cos
      
      * feat: cosine restart lr update hook
      
      * refactor: modify code order for unittest
      f28a7c7e
    • lizz's avatar
      Harmless changes (#340) · 9f04477f
      lizz authored
      
      
      * harmless changes
      Signed-off-by: default avatarlizz <lizz@sensetime.com>
      
      * Update conv_module.py
      
      * No bracket for simple class
      Signed-off-by: default avatarlizz <lizz@sensetime.com>
      9f04477f
  3. 13 Jun, 2020 2 commits
  4. 11 Jun, 2020 1 commit
    • Harry's avatar
      Add IterBasedRunner (#314) · 67a26da9
      Harry authored
      
      
      * feat: add IterBasedRunner
      
      * fix: unittest
      
      * feat: more unittest
      
      * fix: expose dataloader len
      
      * minor updates of BaseRunner
      
      * refactor: remove CosineRestartLrUpdaterHook
      
      * style: add docstring
      
      * refactor: update IterTextLoggerHook: fstring and exp_name
      
      * fix: epoch_runner unittest
      
      * refactor: remove IterBasedTextLogger
      
      * fix: old IterTextLoggerHook issue
      
      * refactor: remove __len__ of IterLoader
      
      * feat: add IterBasedRunner to init
      
      * feat: add __len__ to IterLoader
      
      * fix some docstrings
      
      * refactor: use is_parallel_module
      
      * fix: import issue
      
      * fix: runner unittest missing logger
      
      * fix checkpoints
      
      * feat: add by_epoch default value to IterBaseRunner regitering loggger_hook
      
      * refactor: remove setting by_epoch in log_config
      
      * minor refactoring
      
      * docs: add docstring
      
      * fix: remove unused doc
      
      * update the log info for saving checkpoints
      Co-authored-by: default avatarKai Chen <chenkaidev@gmail.com>
      67a26da9
  5. 10 Jun, 2020 2 commits
  6. 08 Jun, 2020 1 commit
  7. 04 Jun, 2020 1 commit
  8. 02 Jun, 2020 2 commits
  9. 01 Jun, 2020 1 commit
  10. 31 May, 2020 1 commit
  11. 30 May, 2020 1 commit
  12. 27 May, 2020 2 commits
  13. 22 May, 2020 3 commits
  14. 13 May, 2020 1 commit
  15. 12 May, 2020 1 commit
  16. 11 May, 2020 1 commit
  17. 08 May, 2020 1 commit
  18. 05 May, 2020 1 commit
  19. 03 May, 2020 2 commits
  20. 01 May, 2020 2 commits
  21. 30 Apr, 2020 1 commit
  22. 29 Apr, 2020 1 commit
  23. 27 Apr, 2020 1 commit
  24. 26 Apr, 2020 1 commit
  25. 25 Apr, 2020 2 commits
    • Cao Yuhang's avatar
      Use f-string (#245) · b7e8d7d7
      Cao Yuhang authored
      * use f-string
      
      * delete python3.5 sup
      
      * minor fix
      
      * fix supported python version
      
      * fix format
      
      * fix yapf
      
      * remove redundant space
      
      * fix typo
      b7e8d7d7
    • Jerry Jiarui XU's avatar
      Add DictAction and docs for config (#243) · 1e8a2121
      Jerry Jiarui XU authored
      * fixed merge_from_dict, add DictAction
      
      * add config docs
      
      * fixed format type
      
      * change to easy example
      
      * update docs
      
      * update docs
      1e8a2121
  26. 23 Apr, 2020 1 commit
  27. 22 Apr, 2020 2 commits
  28. 19 Apr, 2020 1 commit
    • Wenwei Zhang's avatar
      Momentum scheduler (#167) · ba059611
      Wenwei Zhang authored
      * track progress of iter&enum
      
      * restore
      
      * add momentum scheduler
      
      * fix small bug
      
      * cyclic scheduler"
      
      * fix bug
      
      * fix second phase's bug
      
      * reformat
      
      * feature (cosine lr): use relative ratio for more flexible scheduler
      
      * Fix (runner): fix bugs in runner
      
      * Refactor (hook): refactor cosing/cyclic LR/momentum hook with unittest
      
      * Clean unnecessary files and reformat
      
      * Fix memory key error when GPU is not avaliable
      
      * Resolve comments
      
      * Do not print momentum in text log
      
      * Change hook register order
      
      * Refactor max_iter
      
      * Fix max_iter bugs in runner
      
      * Enforce target_ratio to be either tuple or float
      ba059611