You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Aesara already performs one pass of this optimization (which will be exactly equivalent to the pymc3 one after pymc-devs/pytensor#465). As things stand, the final graph contains two passes of the same optimization, because the optimized output still contains the same form as the original unoptimized graph log(sum(exp(x))) -> x_max + << log(sum(exp(x - x_max))) >>
Aesara already performs one pass of this optimization (which will be exactly equivalent to the pymc3 one after pymc-devs/pytensor#465). As things stand, the final graph contains two passes of the same optimization, because the optimized output still contains the same form as the original unoptimized graph
log(sum(exp(x))) -> x_max + << log(sum(exp(x - x_max))) >>
https://github.com/pymc-devs/pymc3/blob/c62100c99df9a74194db89863776f155a95c076a/pymc3/math.py#L189-L194
The text was updated successfully, but these errors were encountered: