Commit afe67a2b authored by Davis King's avatar Davis King

Fixed typo in learn_platt_scaling(). The method wasn't using the exact prior

suggested by Platt's paper.
parent f74ccbda
...@@ -627,10 +627,10 @@ namespace dlib ...@@ -627,10 +627,10 @@ namespace dlib
<< "\n\t is_binary_classification_problem(scores,labels): " << is_binary_classification_problem(scores,labels) << "\n\t is_binary_classification_problem(scores,labels): " << is_binary_classification_problem(scores,labels)
); );
const T prior0 = sum(mat(labels)>0); const T num_pos = sum(mat(labels)>0);
const T prior1 = sum(mat(labels)<0); const T num_neg = sum(mat(labels)<0);
const T hi_target = (prior1+1)/(prior1+2); const T hi_target = (num_pos+1)/(num_pos+2);
const T lo_target = 1.0/(prior0+2); const T lo_target = 1.0/(num_neg+2);
std::vector<T,alloc> target; std::vector<T,alloc> target;
for (unsigned long i = 0; i < labels.size(); ++i) for (unsigned long i = 0; i < labels.size(); ++i)
......
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