From 0eeb060c403e6c2b82628dbb649e349972e47ec7 Mon Sep 17 00:00:00 2001 From: Ze Liu Date: Wed, 5 Oct 2022 13:09:30 +0800 Subject: [PATCH 1/2] Change default value of WARMUP_PREFIX to True --- README.md | 1 - config.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 816bf7313..a39e69f10 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -# Swin Transformer [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/swin-transformer-v2-scaling-up-capacity-and/object-detection-on-coco)](https://paperswithcode.com/sota/object-detection-on-coco?p=swin-transformer-v2-scaling-up-capacity-and) [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/swin-transformer-v2-scaling-up-capacity-and/instance-segmentation-on-coco)](https://paperswithcode.com/sota/instance-segmentation-on-coco?p=swin-transformer-v2-scaling-up-capacity-and) diff --git a/config.py b/config.py index 3bff10614..1671ec34c 100644 --- a/config.py +++ b/config.py @@ -171,7 +171,7 @@ # LR decay rate, used in StepLRScheduler _C.TRAIN.LR_SCHEDULER.DECAY_RATE = 0.1 # warmup_prefix used in CosineLRScheduler -_C.TRAIN.LR_SCHEDULER.WARMUP_PREFIX = False +_C.TRAIN.LR_SCHEDULER.WARMUP_PREFIX = True # [SimMIM] Gamma / Multi steps value, used in MultiStepLRScheduler _C.TRAIN.LR_SCHEDULER.GAMMA = 0.1 _C.TRAIN.LR_SCHEDULER.MULTISTEPS = [] From f7f0334665d795e3c58f03e9967027528c04c6d4 Mon Sep 17 00:00:00 2001 From: moorethreads_ai Date: Fri, 30 Jun 2023 18:19:55 +0800 Subject: [PATCH 2/2] tmp --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 1671ec34c..3bff10614 100644 --- a/config.py +++ b/config.py @@ -171,7 +171,7 @@ # LR decay rate, used in StepLRScheduler _C.TRAIN.LR_SCHEDULER.DECAY_RATE = 0.1 # warmup_prefix used in CosineLRScheduler -_C.TRAIN.LR_SCHEDULER.WARMUP_PREFIX = True +_C.TRAIN.LR_SCHEDULER.WARMUP_PREFIX = False # [SimMIM] Gamma / Multi steps value, used in MultiStepLRScheduler _C.TRAIN.LR_SCHEDULER.GAMMA = 0.1 _C.TRAIN.LR_SCHEDULER.MULTISTEPS = []