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
I noticed that R and Python have logmeanexp. I think this would be a simple, yet useful addition. I would be willing to make a PR. The basic function would be
function logmeanexp(X::AbstractArray{<:Number})
return logsumexp(X) - log(length(X))
end
Some additional logic would be needed to handled the dims keyword.
The text was updated successfully, but these errors were encountered:
Hi,
I noticed that R and Python have
logmeanexp
. I think this would be a simple, yet useful addition. I would be willing to make a PR. The basic function would beSome additional logic would be needed to handled the
dims
keyword.The text was updated successfully, but these errors were encountered: