Skip to content

Commit

Permalink
xavier weight init now default in MLP template for Caffe
Browse files Browse the repository at this point in the history
  • Loading branch information
beniz committed Aug 10, 2015
1 parent 2e6dbfe commit 02c7a6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/caffe/mlp/deploy.prototxt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ layer {
inner_product_param {
num_output: 50
weight_filler {
type: "gaussian"
type: "xavier"
std: 0.1
}
bias_filler {
Expand Down Expand Up @@ -50,7 +50,7 @@ layer {
inner_product_param {
num_output: 20
weight_filler {
type: "gaussian"
type: "xavier"
std: 0.1
}
bias_filler {
Expand Down
4 changes: 2 additions & 2 deletions templates/caffe/mlp/mlp.prototxt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ layer {
inner_product_param {
num_output: 50
weight_filler {
type: "gaussian"
type: "xavier"
std: 0.1
}
bias_filler {
Expand Down Expand Up @@ -64,7 +64,7 @@ layer {
inner_product_param {
num_output: 20
weight_filler {
type: "gaussian"
type: "xavier"
std: 0.1
}
bias_filler {
Expand Down

0 comments on commit 02c7a6b

Please sign in to comment.