Skip to content

Commit

Permalink
change parameter default value
Browse files Browse the repository at this point in the history
  • Loading branch information
GrassSunFlower committed Apr 4, 2017
1 parent 633e707 commit 6508985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/batch_norm-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct BatchNormParam : public dmlc::Parameter<BatchNormParam> {
.describe("Momentum for moving average");
DMLC_DECLARE_FIELD(fix_gamma).set_default(true)
.describe("Fix gamma while training");
DMLC_DECLARE_FIELD(fix_linear_trans).set_default(true)
DMLC_DECLARE_FIELD(fix_linear_trans).set_default(false)
.describe("Fix linear transformation while training");
DMLC_DECLARE_FIELD(use_global_stats).set_default(false)
.describe("Whether use global moving statistics instead of local batch-norm. "
Expand Down

0 comments on commit 6508985

Please sign in to comment.