Searched defs:Gmax1 (Results 1 - 1 of 1) sorted by relevance

/external/opencv/ml/src/
H A Dmlsvm.cpp750 double Gmax1 = -DBL_MAX; // max { -grad(f)_i * d | y_i*d = +1 } local
764 if( !is_upper_bound(i) && (t = -G[i]) > Gmax1 ) // d = +1
766 Gmax1 = t;
782 if( !is_lower_bound(i) && (t = G[i]) > Gmax1 ) // d = -1
784 Gmax1 = t;
793 return Gmax1 + Gmax2 < eps;
839 double Gmax1 = -DBL_MAX; // max { -grad(f)_i * d | y_i = +1, d = +1 } local
859 if( !is_upper_bound(i) && (t = -G[i]) > Gmax1 ) // d = +1
861 Gmax1 = t;
885 if( MAX(Gmax1
[all...]

Completed in 79 milliseconds