Open kshmelkov opened 8 years ago
Hello,
In resnet.py:283 you use FC_WEIGHT_STDDEV even for weight decay which looks wrong for me. Probably just a copy-paste bug.
resnet.py:283
FC_WEIGHT_STDDEV
Out of curiosity, what should it be?
FC_WEIGHT_DECAY. Which already exists, but just isn't used. For equivalent code in conv layers CONV_WEIGHT_DECAY is used.
FC_WEIGHT_DECAY
CONV_WEIGHT_DECAY
Hello,
In
resnet.py:283
you useFC_WEIGHT_STDDEV
even for weight decay which looks wrong for me. Probably just a copy-paste bug.