Searched refs:left_count (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/ |
D | prob.c | 32 const unsigned int left_count = in tree_merge_probs_impl() local 39 const unsigned int ct[2] = { left_count, right_count }; in tree_merge_probs_impl() 41 return left_count + right_count; in tree_merge_probs_impl()
|
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/ |
D | tree_utils.cc | 135 float left_count = splits_count_accessor(accumulator, i, 0); in RegressionSplitScore() local 136 float right_count = totals_count_accessor(accumulator, 0) - left_count; in RegressionSplitScore() 141 if (left_count > 0) { in RegressionSplitScore() 144 splits_square.slice(offsets, extents), left_count); in RegressionSplitScore() 252 float left_count = lc(accumulator, index, i + 1); in MakeBootstrapWeights() local 253 (*weights)[i] = (left_count + 1.0) / denom; in MakeBootstrapWeights() 254 float right_count = tc(accumulator, i + 1) - left_count; in MakeBootstrapWeights()
|
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/ |
D | grow_stats.h | 200 virtual float left_count(int split, int class_num) const = 0; 342 float left_count(int split, int class_num) const override { in left_count() function 405 float left_count(int split, int class_num) const override { in left_count() function 509 float left_count(int split, int class_num) const override { in left_count() function
|
D | grow_stats.cc | 192 left_gini_->update(i, left_count(i, int_label), weight); in AddExample() 326 (*weights)[i] = (left_count(index, i) + 1.0) / denom; in MakeBootstrapWeights() 463 left_stats->add_value()->set_float_value(left_count(split_num, i)); in PackToProto() 474 const float left = left_count(split, j); in GiniScore() 494 left_counts->add_value()->set_float_value(left_count(best_split_index, i)); in InitLeafClassStats() 501 left_count(best_split_index, i)); in InitLeafClassStats()
|