• Home
  • Raw
  • Download

Lines Matching refs:weights

185     const double* weights = ensemble->get_subtree_weights()->data.db;  in calc_node_dir()  local
200 double w = weights[i]; in calc_node_dir()
221 double w = weights[idx]; in calc_node_dir()
229 double w = weights[idx]; in calc_node_dir()
249 const double* weights = ensemble->get_subtree_weights()->data.db; in find_split_ord_class() local
252 const double* rcw0 = weights + n; in find_split_ord_class()
263 double w = weights[idx]; in find_split_ord_class()
278 double w = weights[idx], w2 = w*w; in find_split_ord_class()
303 double w = weights[idx]; in find_split_ord_class()
341 const double* weights = ensemble->get_subtree_weights()->data.db; in CV_IMPLEMENT_QSORT_EX() local
357 double w = weights[i]; in CV_IMPLEMENT_QSORT_EX()
445 const double* weights = ensemble->get_subtree_weights()->data.db; in find_split_ord_reg() local
450 double L = 0, R = weights[n]; in find_split_ord_reg()
456 double w = weights[idx]; in find_split_ord_reg()
465 double w = weights[idx]; in find_split_ord_reg()
493 const double* weights = ensemble->get_subtree_weights()->data.db; in find_split_cat_reg() local
510 double w = weights[i]; in find_split_cat_reg()
575 const double* weights = ensemble->get_subtree_weights()->data.db; in find_surrogate_split_ord() local
592 double w = weights[idx]; in find_surrogate_split_ord()
607 double w = weights[idx]; in find_surrogate_split_ord()
641 const double* weights = ensemble->get_subtree_weights()->data.db; in find_surrogate_split_cat() local
661 double w = weights[i]; in find_surrogate_split_cat()
702 const double* weights = ensemble->get_weights()->data.db; in calc_node_value() local
716 double w = weights[idx]/*priors[responses[i]]*/; in calc_node_value()
750 double w = weights[idx]/*priors[values[i] > 0]*/; in calc_node_value()
800 weights = subtree_weights = 0; in CvBoost()
843 cvReleaseMat( &weights ); in clear()
862 orig_response = sum_response = weak_eval = subsample_mask = weights = 0; in CvBoost()
993 cvReleaseMat( &weights ); in update_weights()
998 CV_CALL( weights = cvCreateMat( 1, count, CV_64F )); in update_weights()
1021 weights->data.db[i] = w0*p[class_labels[i]]; in update_weights()
1093 double w = weights->data.db[i]; in update_weights()
1106 double w = weights->data.db[i]* in update_weights()
1109 weights->data.db[i] = w; in update_weights()
1127 double w = weights->data.db[i]*weak_eval->data.db[i]; in update_weights()
1129 weights->data.db[i] = w; in update_weights()
1165 weights->data.db[i] = w; in update_weights()
1193 double w = weights->data.db[i] * weak_eval->data.db[i]; in update_weights()
1194 weights->data.db[i] = w; in update_weights()
1205 weights->data.db[i] *= sumw; in update_weights()
1229 cvCopy( weights, weak_eval ); in CV_IMPLEMENT_QSORT_EX()
1249 double w = weights->data.db[i]; in CV_IMPLEMENT_QSORT_EX()
1626 return weights; in get_weights()