Searched refs:exp_score (Results 1 – 2 of 2) sorted by relevance
91 const float exp_score = delta_score < -16.0f ? 0 : VeryFastExp(delta_score); in ComputeSoftmax() local92 exp_scores.push_back(exp_score); in ComputeSoftmax()93 denominator += exp_score; in ComputeSoftmax()
93 const float exp_score = score - max < -16.0f ? 0 : VeryFastExp(score - max); in ComputeSoftmax() local94 exp_scores.push_back(exp_score); in ComputeSoftmax()95 denominator += exp_score; in ComputeSoftmax()