Searched defs:max_bound (Results 1 - 1 of 1) sorted by relevance

/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dsparse_weight_vector.cpp99 double max_bound = 0; local
112 bool is_max_bounded = GetValue(wmax_, iter->first, &max_bound);
114 if ((w_[iter->first] / normalizer_) > max_bound)
115 w_[iter->first] = max_bound*normalizer_;
137 double max_bound = 0; local
151 bool is_max_bounded = GetValue(wmax_, iter->first, &max_bound);
153 if ((iter->second / normalizer_) > max_bound)
154 iter->second = max_bound*normalizer_;
173 double max_bound = 0; local
185 bool is_max_bounded = GetValue(wmax_, iter->first, &max_bound);
[all...]

Completed in 49 milliseconds