Home
last modified time | relevance | path

Searched refs:right_count (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dprob.c36 const unsigned int right_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/
Dtree_utils.cc136 float right_count = totals_count_accessor(accumulator, 0) - left_count; in RegressionSplitScore() local
147 if (right_count > 0) { in RegressionSplitScore()
150 right_squares.slice(offsets, extents), right_count); in RegressionSplitScore()
254 float right_count = tc(accumulator, i + 1) - left_count; in MakeBootstrapWeights() local
255 (*weights)[num_classes + i] = (right_count + 1.0) / denom; in MakeBootstrapWeights()
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
Dgrow_stats.h201 virtual float right_count(int split, int class_num) const = 0;
345 float right_count(int split, int class_num) const override { in right_count() function
408 float right_count(int split, int class_num) const override { in right_count() function
513 float right_count(int split, int class_num) const override { in right_count() function
Dgrow_stats.cc197 right_gini_->update(i, right_count(i, int_label), weight); in AddExample()
327 (*weights)[num_outputs_ + i] = (right_count(index, i) + 1.0) / denom; in MakeBootstrapWeights()
477 const float right = right_count(split, j); in GiniScore()