From af46d7b60b71c2f8577d291c08a0f26cbe4552b0 Mon Sep 17 00:00:00 2001 From: Mingxin Zheng <18563433+mingxin-zheng@users.noreply.github.com> Date: Wed, 15 Mar 2023 16:43:12 +0000 Subject: [PATCH] Update Auto3DSeg ALGO_HASH (#5973) Signed-off-by: Mingxin Zheng <18563433+mingxin-zheng@users.noreply.github.com> Fixes #5972 . ### Description Fix and New Feature included: - fix cache rate: https://github.com/Project-MONAI/research-contributions/pull/173 - typo fix https://github.com/Project-MONAI/research-contributions/pull/178 - scheduler step fix https://github.com/Project-MONAI/research-contributions/pull/182 - enhancement https://github.com/Project-MONAI/research-contributions/pull/184 - Fixed pretrain weight loading https://github.com/Project-MONAI/research-contributions/pull/202 ### Types of changes - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [x] `python tests/test_integration_autorunner.py` succeeded locally --------- Signed-off-by: Mingxin Zheng <18563433+mingxin-zheng@users.noreply.github.com> --- monai/apps/auto3dseg/bundle_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monai/apps/auto3dseg/bundle_gen.py b/monai/apps/auto3dseg/bundle_gen.py index f683675781..027db6f605 100644 --- a/monai/apps/auto3dseg/bundle_gen.py +++ b/monai/apps/auto3dseg/bundle_gen.py @@ -35,7 +35,7 @@ from monai.utils import ensure_tuple logger = get_logger(module_name=__name__) -ALGO_HASH = os.environ.get("MONAI_ALGO_HASH", "1dde7a1") +ALGO_HASH = os.environ.get("MONAI_ALGO_HASH", "d0fa876d") __all__ = ["BundleAlgo", "BundleGen"]