HomeSort by relevance Sort by last modified time
    Searched refs:Gmax1 (Results 1 - 2 of 2) sorted by null

  /external/opencv/ml/src/
mlsvm.cpp 750 double Gmax1 = -DBL_MAX; // max { -grad(f)_i * d | y_i*d = +1 }
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 }
859 if( !is_upper_bound(i) && (t = -G[i]) > Gmax1 ) // d = +1
861 Gmax1 = t;
885 if( MAX(Gmax1 + Gmax2, Gmax3 + Gmax4) < eps
    [all...]
  /external/opencv3/modules/ml/src/
svm.cpp 805 double Gmax1 = -DBL_MAX; // max { -grad(f)_i * d | y_i*d = +1 }
821 if( !is_upper_bound(i) && (t = -G[i]) > Gmax1 ) // d = +1
823 Gmax1 = t;
839 if( !is_lower_bound(i) && (t = G[i]) > Gmax1 ) // d = -1
841 Gmax1 = t;
850 return Gmax1 + Gmax2 < eps;
895 double Gmax1 = -DBL_MAX; // max { -grad(f)_i * d | y_i = +1, d = +1 }
917 if( !is_upper_bound(i) && (t = -G[i]) > Gmax1 ) // d = +1
919 Gmax1 = t;
943 if( MAX(Gmax1 + Gmax2, Gmax3 + Gmax4) < eps
    [all...]

Completed in 692 milliseconds