Accurately computing the log-sum-exp and softmax functions
Accurately computing the log-sum-exp and softmax functions
复制标题
DOI:
10.1093/imanum/draa038
复制
发表时间:
2021-10-01
影响因子:
2.1
通讯作者:
Higham, Nicholas J.
中科院分区:
文献类型:
--
作者:
Blanchard, Pierre;Higham, Desmond J.;Higham, Nicholas J.
Evaluating the log-sum-exp function or the softmax function is a key step in many modern data science algorithms, notably in inference and classification. Because of the exponentials that these functions contain, the evaluation is prone to overflow and underflow, especially in low-precision arithmetic. Software implementations commonly use alternative formulas that avoid overflow and reduce the chance of harmful underflow, employing a shift or another rewriting. Although mathematically equivalent, these variants behave differently in floating-point arithmetic and shifting can introduce subtractive cancellation. We give rounding error analyses of different evaluation algorithms and interpret the error bounds using condition numbers for the functions. We conclude, based on the analysis and numerical experiments, that the shifted formulas are of similar accuracy to the unshifted ones, so can safely be used, but that a division-free variant of softmax can suffer from loss of accuracy.