Commit 62c8d3ee authored by Davis King's avatar Davis King

Changed svm_c_linear_trainer stopping epsilon to something a little more

reasonable.
parent cdc0f3b0
......@@ -351,7 +351,7 @@ namespace dlib
Cpos = 1;
Cneg = 1;
verbose = false;
eps = 0.0001;
eps = 0.001;
max_iterations = 10000;
learn_nonnegative_weights = false;
last_weight_1 = false;
......@@ -372,7 +372,7 @@ namespace dlib
Cpos = C;
Cneg = C;
verbose = false;
eps = 0.0001;
eps = 0.001;
max_iterations = 10000;
learn_nonnegative_weights = false;
last_weight_1 = false;
......
......@@ -49,7 +49,7 @@ namespace dlib
- #get_oca() == oca() (i.e. an instance of oca with default parameters)
- #get_c_class1() == 1
- #get_c_class2() == 1
- #get_epsilon() == 0.0001
- #get_epsilon() == 0.001
- this object will not be verbose unless be_verbose() is called
- #get_max_iterations() == 10000
- #learns_nonnegative_weights() == false
......@@ -68,7 +68,7 @@ namespace dlib
- #get_oca() == oca() (i.e. an instance of oca with default parameters)
- #get_c_class1() == C
- #get_c_class2() == C
- #get_epsilon() == 0.0001
- #get_epsilon() == 0.001
- this object will not be verbose unless be_verbose() is called
- #get_max_iterations() == 10000
- #learns_nonnegative_weights() == false
......
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