Skip to content

Commit

Permalink
change the default value of reset_weights tiny-dnn#136
Browse files Browse the repository at this point in the history
  • Loading branch information
nyanp authored and edgarriba committed Jun 13, 2016
1 parent 4bfd8d8 commit 5c60871
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tiny_cnn/network.h
Expand Up @@ -217,7 +217,7 @@ class network
int epoch,
OnBatchEnumerate on_batch_enumerate,
OnEpochEnumerate on_epoch_enumerate,
const bool reset_weights = true,
const bool reset_weights = false,
const int n_threads = CNN_TASK_SIZE,
const std::vector<vec_t>& t_cost = std::vector<vec_t>()
)
Expand Down Expand Up @@ -280,7 +280,7 @@ class network
int epoch,
OnBatchEnumerate on_batch_enumerate,
OnEpochEnumerate on_epoch_enumerate,
const bool reset_weights = true,
const bool reset_weights = false,
const int n_threads = CNN_TASK_SIZE,
const std::vector<U>& t_cost = std::vector<U>()
)
Expand Down Expand Up @@ -594,7 +594,7 @@ class network
int epoch,
OnBatchEnumerate on_batch_enumerate,
OnEpochEnumerate on_epoch_enumerate,
const bool reset_weights = true,
const bool reset_weights = false,
const int n_threads = CNN_TASK_SIZE,
const std::vector<tensor_t>& t_cost = std::vector<tensor_t>()
)
Expand Down

0 comments on commit 5c60871

Please sign in to comment.