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

  /external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
training_ops.cc 89 SplitCandidate& best_split = best_split_it->second; local
90 if (TF_PREDICT_FALSE(split->gain == best_split.gain)) {
95 << best_split.split_info.split_node().node_case() << ")";
97 best_split.split_info.split_node().node_case()) {
98 best_split = std::move(*split);
100 best_split.split_info.split_node().node_case()) {
104 << ", best split: " << best_split.handler_id << ")";
105 if (split->handler_id > best_split.handler_id) {
106 best_split = std::move(*split);
109 } else if (split->gain > best_split.gain)
    [all...]
  /external/opencv/ml/src/
mlrtrees.cpp 99 CvDTreeSplit *best_split = 0, *split = 0, *t; local
148 if( !best_split || best_split->quality < split->quality )
149 CV_SWAP( best_split, split, t );
157 return best_split;
mltree.cpp 1336 CvDTreeSplit* best_split = 0; local
1530 CvDTreeSplit *best_split = 0, *split = 0, *t; local
    [all...]

Completed in 166 milliseconds