Increased the default sgd learning rate.

This commit is contained in:
Davis King 2016-01-09 09:39:07 -05:00
parent 9f92b082a3
commit 4189386ddb
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace dlib
public:
sgd(
float learning_rate_ = 0.001,
float learning_rate_ = 0.01,
float weight_decay_ = 0.0005,
float momentum_ = 0.9
)

View File

@ -78,7 +78,7 @@ namespace dlib
public:
sgd(
float learning_rate = 0.001,
float learning_rate = 0.01,
float weight_decay = 0.0005,
float momentum = 0.9
);