diff --git a/configs_unify/fastscnn/fast_scnn_4x3_1000e_cityscapes.py b/configs_unify/fastscnn/fast_scnn_4x3_1000e_cityscapes.py index e360324ab..7583cb6f2 100644 --- a/configs_unify/fastscnn/fast_scnn_4x3_1000e_cityscapes.py +++ b/configs_unify/fastscnn/fast_scnn_4x3_1000e_cityscapes.py @@ -57,3 +57,6 @@ lr_config = dict( total_epochs = 247000 evaluation = dict(interval=1000, metric='mIoU') checkpoint_config = dict(interval=1000) + +# log config: log by iter. +log_config = dict(interval=50, hooks=[dict(type='TextLoggerHook', by_epoch=False)]) diff --git a/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.045_power1.2_cityscapes.py b/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.045_power1.2_cityscapes.py index e4c940efd..078fa94c5 100644 --- a/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.045_power1.2_cityscapes.py +++ b/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.045_power1.2_cityscapes.py @@ -50,12 +50,15 @@ optimizer_config = dict() # learning policy lr_config = dict( policy='poly', - power=0.9, + power=1.2, by_epoch=False, ) # runtime settings # total_epochs = 1000 -total_iters = 80000 -evaluation = dict(interval=8000, metric='mIoU') -checkpoint_config = dict(interval=8000) +total_iters = 100000 +evaluation = dict(interval=2000, metric='mIoU') +checkpoint_config = dict(interval=2000) + +# log config: log by iter. +log_config = dict(interval=50, hooks=[dict(type='TextLoggerHook', by_epoch=False)]) diff --git a/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.08_cityscapes.py b/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.08_cityscapes.py index dac8151f9..10f56e093 100644 --- a/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.08_cityscapes.py +++ b/configs_unify/fastscnn/fast_scnn_4x8_100k_lr0.08_cityscapes.py @@ -56,6 +56,9 @@ lr_config = dict( # runtime settings # total_epochs = 1000 total_iters = 100000 -evaluation = dict(interval=5000, metric='mIoU') -checkpoint_config = dict(interval=5000) +evaluation = dict(interval=2000, metric='mIoU') +checkpoint_config = dict(interval=2000) + +# log config: log by iter. +log_config = dict(interval=50, hooks=[dict(type='TextLoggerHook', by_epoch=False)]) diff --git a/configs_unify/fastscnn/fast_scnn_4x8_80k_cityscapes.py b/configs_unify/fastscnn/fast_scnn_4x8_80k_cityscapes.py index 51d2d61eb..dd6ac7f15 100644 --- a/configs_unify/fastscnn/fast_scnn_4x8_80k_cityscapes.py +++ b/configs_unify/fastscnn/fast_scnn_4x8_80k_cityscapes.py @@ -55,7 +55,7 @@ lr_config = dict( ) # runtime settings # total_epochs = 1000 -total_iters = 80000 -evaluation = dict(interval=8000, metric='mIoU') -checkpoint_config = dict(interval=8000) +total_iters = 100000 +evaluation = dict(interval=2000, metric='mIoU') +checkpoint_config = dict(interval=2000) diff --git a/configs_unify/fastscnn/fast_scnn_4x8_80k_lr0.045_cityscapes.py b/configs_unify/fastscnn/fast_scnn_4x8_80k_lr0.045_cityscapes.py index e4c940efd..f6fd1729e 100644 --- a/configs_unify/fastscnn/fast_scnn_4x8_80k_lr0.045_cityscapes.py +++ b/configs_unify/fastscnn/fast_scnn_4x8_80k_lr0.045_cityscapes.py @@ -55,7 +55,10 @@ lr_config = dict( ) # runtime settings # total_epochs = 1000 -total_iters = 80000 -evaluation = dict(interval=8000, metric='mIoU') -checkpoint_config = dict(interval=8000) +total_iters = 100000 +evaluation = dict(interval=2000, metric='mIoU') +checkpoint_config = dict(interval=2000) + +# log config: log by iter. +log_config = dict(interval=50, hooks=[dict(type='TextLoggerHook', by_epoch=False)])