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
Currently, only median and arithmetic mean are supported. The challenge here will be avoiding overflow when multiplying numbers. This can be solved by doing arithmetic mean in the log-space, but this costs us efficiency. Another idea is to multiply until we hit a sufficiently large number and then do a log (e.g. https://stackoverflow.com/questions/19980319/efficient-way-to-compute-geometric-mean-of-many-numbers)
The text was updated successfully, but these errors were encountered:
Currently, only median and arithmetic mean are supported. The challenge here will be avoiding overflow when multiplying numbers. This can be solved by doing arithmetic mean in the log-space, but this costs us efficiency. Another idea is to multiply until we hit a sufficiently large number and then do a log (e.g. https://stackoverflow.com/questions/19980319/efficient-way-to-compute-geometric-mean-of-many-numbers)
The text was updated successfully, but these errors were encountered: