You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Keras Version, in main_train.py the function DnCNN (where the model is defined) has a parameter use_bnorm.
What the name of the parameter implies to me, is that you can specify whether to use batch-normalization, or not.
However, that's not what it does. There will be a Layer for Batch-Normalization included, always.
I assume this is just an indention error, with the if-clause above, isn't it?
What it now does, is only affecting the layer counter...
The text was updated successfully, but these errors were encountered:
No I think you are right, the batch normalization used in the if clause governed by use_bnorm is commented out. The batch normalization is therefore always used, no matter the value of use_bnorm.
Hello,
In the Keras Version, in
main_train.py
the functionDnCNN
(where the model is defined) has a parameteruse_bnorm
.What the name of the parameter implies to me, is that you can specify whether to use batch-normalization, or not.
However, that's not what it does. There will be a Layer for Batch-Normalization included, always.
I assume this is just an indention error, with the if-clause above, isn't it?
What it now does, is only affecting the layer counter...
The text was updated successfully, but these errors were encountered: