ry / tensorflow-resnet

ResNet model in TensorFlow
MIT License
1.66k stars 625 forks source link

typo in FC layer #8

Open kshmelkov opened 8 years ago

kshmelkov commented 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.

achaiah commented 8 years ago

Out of curiosity, what should it be?

kshmelkov commented 8 years ago

FC_WEIGHT_DECAY. Which already exists, but just isn't used. For equivalent code in conv layers CONV_WEIGHT_DECAY is used.