Home
last modified time | relevance | path

Searched refs:exp_score (Results 1 – 2 of 2) sorted by relevance

/external/libtextclassifier/lang_id/common/math/
Dsoftmax.cc91 const float exp_score = delta_score < -16.0f ? 0 : VeryFastExp(delta_score); in ComputeSoftmax() local
92 exp_scores.push_back(exp_score); in ComputeSoftmax()
93 denominator += exp_score; in ComputeSoftmax()
/external/libtextclassifier/utils/math/
Dsoftmax.cc93 const float exp_score = score - max < -16.0f ? 0 : VeryFastExp(score - max); in ComputeSoftmax() local
94 exp_scores.push_back(exp_score); in ComputeSoftmax()
95 denominator += exp_score; in ComputeSoftmax()