I have tried 2 different configs with diferent backbones, but all occurs exception of one thing, that is weight_decay is NoneType in optimizer SGD and ADAMW. It seems the configs of WEIGHT_DECAY is not imported correctly?
The problem is due to the missing parameter: WEIGHT_DECAY_BIAS.
To fix it, I added that parameter in the config file with the same value as WEIGHT DECAY.
I have tried 2 different configs with diferent backbones, but all occurs exception of one thing, that is
weight_decay
isNoneType
in optimizer SGD and ADAMW. It seems the configs ofWEIGHT_DECAY
is not imported correctly?