Skip to content
Snippets Groups Projects
  1. Feb 07, 2023
  2. Feb 06, 2023
  3. Feb 05, 2023
  4. Feb 03, 2023
  5. Feb 01, 2023
  6. Jan 31, 2023
  7. Jan 29, 2023
  8. Jan 20, 2023
  9. Jan 16, 2023
    • Mashiro's avatar
      [Docs] Add Chinese documentation for inferencer (#884) · 50465a20
      Mashiro authored
      
      * [Feature] Add BaseInferencer (#773)
      
      * Update BaseInferencer
      
      * Fix ci
      
      * Fix CI and rename iferencer to infer
      
      * Fix CI
      
      * Add renamed file
      
      * Add test file
      
      * Adjust interface sequence
      
      * refine preprocess
      
      * Update unit test
      
      Update unit test
      
      * Update unit test
      
      * Fix unit test
      
      * Fix as comment
      
      * Minor refine
      
      * Fix docstring and support load image from different backend
      
      * Support load collate_fn from downstream repos, refine dispatch
      
      * Minor refine
      
      * Fix lint
      
      * refine grammar
      
      * Remove FileClient
      
      * Refine docstring
      
      * add rich
      
      * Add list_models
      
      * Add list_models
      
      * Remove backend args
      
      * Minor refine
      
      * Fix typos in docs and type hints (#787)
      
      * [Fix] Add _inputs_to_list (#795)
      
      * Add preprocess inputs
      
      * Add type hint
      
      * update api/infer in index.rst
      
      * rename preprocess_inputs to _inputs_to_list
      
      * Fix doc format
      
      * Update infer.py
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * [Fix] Fix alias type (#801)
      
      * [Enhance] Support loading model config from checkpoint (#864)
      
      * first commit
      
      * [Enhance] Support build model from weight
      
      * minor refine
      
      * Fix type hint
      
      * refine comments
      
      * Update docstring
      
      * refine as comment
      
      * Add  method
      
      * Refine docstring
      
      * Fix as comment
      
      * refine comments
      
      * Refine warning message
      
      * Fix unit test and refine comments
      
      * add infer.md
      
      * minor refine
      
      * minor refine
      
      * minor refine
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * Fix conflicts and minor refine
      
      * minor refine
      
      * Fix as comment
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      Co-authored-by: default avatarTong Gao <gaotongxiao@gmail.com>
      50465a20
    • Mashiro's avatar
      [Feature] Add BaseInferencer (#874) · 2d8f2be3
      Mashiro authored
      
      * [Feature] Add BaseInferencer (#773)
      
      * Update BaseInferencer
      
      * Fix ci
      
      * Fix CI and rename iferencer to infer
      
      * Fix CI
      
      * Add renamed file
      
      * Add test file
      
      * Adjust interface sequence
      
      * refine preprocess
      
      * Update unit test
      
      Update unit test
      
      * Update unit test
      
      * Fix unit test
      
      * Fix as comment
      
      * Minor refine
      
      * Fix docstring and support load image from different backend
      
      * Support load collate_fn from downstream repos, refine dispatch
      
      * Minor refine
      
      * Fix lint
      
      * refine grammar
      
      * Remove FileClient
      
      * Refine docstring
      
      * add rich
      
      * Add list_models
      
      * Add list_models
      
      * Remove backend args
      
      * Minor refine
      
      * Fix typos in docs and type hints (#787)
      
      * [Fix] Add _inputs_to_list (#795)
      
      * Add preprocess inputs
      
      * Add type hint
      
      * update api/infer in index.rst
      
      * rename preprocess_inputs to _inputs_to_list
      
      * Fix doc format
      
      * Update infer.py
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * [Fix] Fix alias type (#801)
      
      * [Enhance] Support loading model config from checkpoint (#864)
      
      * first commit
      
      * [Enhance] Support build model from weight
      
      * minor refine
      
      * Fix type hint
      
      * refine comments
      
      * Update docstring
      
      * refine as comment
      
      * Add  method
      
      * Refine docstring
      
      * Fix as comment
      
      * refine comments
      
      * Refine warning message
      
      * Fix unit test and refine comments
      
      * replace MODULE2PACKAGE to MODULE2PAKCAGE
      
      * Fix typo and syntax error in docstring
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      Co-authored-by: default avatarTong Gao <gaotongxiao@gmail.com>
      2d8f2be3
    • Mashiro's avatar
      [Enhance] Disable warning of subprocess launched by dataloader (#870) · ad590e45
      Mashiro authored
      * Disable warning of subprocess launched by dataloader
      
      * Add type hint
      ad590e45
    • LEFTeyes's avatar
      [Feature] Support ReduceOnPlateauParamScheduler(#819) · 0b59a90a
      LEFTeyes authored
      
      * [Feature] Add ReduceOnPlateauParamScheduler and change ParamSchedulerHook
      
      * [Feature] add ReduceOnPlateauLR and ReduceOnPlateauMomentum
      
      * pre-commit check
      
      * add a little docs
      
      * change position
      
      * fix the conflict between isort and yapf
      
      * fix ParamSchedulerHook after_val_epoch execute without train_loop and param_schedulers built
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarMashiro <57566630+HAOCHENYE@users.noreply.github.com>
      
      * update ReduceOnPlateauParamScheduler, ReduceOnPlateauMomentum and ParamSchedulerHook
      
      * fix get need_step_args attribute error in ParamSchedulerHook
      
      * fix load_state_dict error for rule in ReduceOnPlateauParamScheduler
      
      * add docs for ParamSchedulerHook and fix a few codes
      
      * [Docs] add ReduceOnPlateauParamScheduler, ReduceOnPlateauMomentum and ReduceOnPlateauLR docs
      
      * [Refactor] adjust the order of import
      
      * [Fix] add init check for threshold in ReduceOnPlateauParamScheduler
      
      * [Test] add test for ReduceOnPlateauParamScheduler, ReduceOnPlateauLR and ReduceOnPlateauMomentum
      
      * [Fix] fix no attribute self.min_value
      
      * [Fix] fix numerical problem in tests
      
      * [Fix] fix error in tests
      
      * [Fix] fix ignore first param in tests
      
      * [Fix] fix bug in tests
      
      * [Fix] fix bug in tests
      
      * [Fix] fix bug in tests
      
      * [Fix] increase coverage
      
      * [Fix] fix count self._global_step bug and docs
      
      * [Fix] fix tests
      
      * [Fix] modified ParamSchedulerHook test
      
      * Update mmengine/optim/scheduler/param_scheduler.py
      
      Co-authored-by: default avatarMashiro <57566630+HAOCHENYE@users.noreply.github.com>
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarMashiro <57566630+HAOCHENYE@users.noreply.github.com>
      
      * [Fix] modified something according to commented
      
      * [Docs] add api for en and zh_cn
      
      * [Fix] fix bug in test_param_scheduler_hook.py
      
      * [Test] support more complicated test modes(less, greater, rel, abs) for ReduceOnPlateauParamScheduler
      
      * [Docs] add docs for rule
      
      * [Fix] fix pop from empty list bug in test
      
      * [Fix] fix check param_schedulers is not built bug
      
      * [Fix] fix step_args bug and without runner._train_loop bug
      
      * [Fix] fix step_args bug and without runner._train_loop bug
      
      * [Fix] fix scheduler type bug
      
      * [Test] rename step_args to step_kwargs
      
      * [Fix] remove redundancy check
      
      * [Test] remove redundancy check
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * [Test] fix some defects
      
      Co-authored-by: default avatarMashiro <57566630+HAOCHENYE@users.noreply.github.com>
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      0b59a90a
  10. Jan 13, 2023
  11. Jan 12, 2023
  12. Jan 10, 2023
  13. Jan 09, 2023
  14. Jan 06, 2023
  15. Jan 04, 2023
  16. Dec 30, 2022
  17. Dec 28, 2022
  18. Dec 27, 2022
    • Mashiro's avatar
      Make TTAModel compatible with FSDP (#611) · a9b6753f
      Mashiro authored
      
      * Add build_runner_with_tta and PrepareTTAHook
      
      * rename hook file
      
      * support build tta runner with runner type
      
      * add unit test
      
      * Add build_runner_with_tta to index.rst
      
      * minor refine
      
      * Add runner test cast
      
      * Fix unit test
      
      * fix unit test
      
      * tmp save
      
      * pop None if key does not exist
      
      * Fix is_model_wrapper and force register class in test_runner
      
      * [Fix] Fix is_model_wrapper
      
      * destroy group after ut
      
      * register module in testcase
      
      * pass through unit test
      
      * fix as comment
      
      * remove breakpoint
      
      * remove mmengine/testing/runner_test_cast.py
      
      * minor refine
      
      * minor refine
      
      * minor refine
      
      * set default data preprocessor for model
      
      * minor refine
      
      * minor refine
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * fix lint
      
      * Fix unit test
      
      * replace  with  in ImgDataPreprocessor
      
      * Fix as comment
      
      * add inference tutorial in advanced tutorial
      
      * update index.rst
      
      * add tta example
      
      * refine tta tutorial
      
      * Add english tutorial
      
      * add note for build_runner_with_tta
      
      * Fix as comment
      
      * add examples
      
      * remove chinese comment
      
      * Update docs/en/advanced_tutorials/test_time_augmentation.md
      
      Co-authored-by: default avatarRangiLyu <lyuchqi@gmail.com>
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      Co-authored-by: default avatarRangiLyu <lyuchqi@gmail.com>
      a9b6753f
    • BayMax_BHL's avatar
      [Feature] Add ProfilerHook (#768) · 16589ce3
      BayMax_BHL authored
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * [Feature] Add profiler hook functionality
      
      * Apply suggestions from code review
      
      * Update mmengine/hooks/profiler_hook.py
      
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      16589ce3
    • Mashiro's avatar
      [Fix] Ignore the distributed tests for macOS platform (#821) · c382f8a5
      Mashiro authored
      * only test timer in linux
      
      * Fix merge_stage_test.yml
      
      * remove install ffmpeg
      
      * test_ci
      
      * test_ci
      
      * Fix python -m pip install pip --upgrade to pip install
      
      * don't test unittest with sleep 1 in windows
      
      * debug with tmate
      
      * increase timeout
      
      * increase timeout
      
      * skip test gloo
      
      * skip test gloo
      
      * fix synteax error
      
      * skip test gloo in torch 1.13
      
      * skip test gloo in torch 1.13
      
      * skip testing setup_env in macOS
      
      * skip test test_dist
      
      * skip test setup
      
      * restore triggered during push
      
      * clean the code
      
      * debug macos
      
      * refine macOS CI
      
      * test merge stage test
      
      * trigger CI during push to main
      
      * Fix as comment
      c382f8a5
  19. Dec 26, 2022
  20. Dec 23, 2022
  21. Dec 22, 2022
Loading