Commit 4189386d authored by Davis King's avatar Davis King

Increased the default sgd learning rate.

parent 9f92b082
...@@ -14,7 +14,7 @@ namespace dlib ...@@ -14,7 +14,7 @@ namespace dlib
public: public:
sgd( sgd(
float learning_rate_ = 0.001, float learning_rate_ = 0.01,
float weight_decay_ = 0.0005, float weight_decay_ = 0.0005,
float momentum_ = 0.9 float momentum_ = 0.9
) )
......
...@@ -78,7 +78,7 @@ namespace dlib ...@@ -78,7 +78,7 @@ namespace dlib
public: public:
sgd( sgd(
float learning_rate = 0.001, float learning_rate = 0.01,
float weight_decay = 0.0005, float weight_decay = 0.0005,
float momentum = 0.9 float momentum = 0.9
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment