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
Love the package. One thing I noticed is that I wanted to try using a few custom cost functions. One I used: C(x,y) = 0.5*|| x - y ||^2 only gets the same as the inbuilt p=2 for some sample points, but can occasionally disagree.
Any thoughts on this?
Many thanks,
Jake
The text was updated successfully, but these errors were encountered:
Thanks for your interest in the library!
This is quite surprising: the only case that I can think of is the computation of squared distances in the "tensorized" backend that relies on the polar identity |x-y|^2 = x^2 + y^2 - 2 * (x | y) and may induce small differences due to float precision errors.
Hi there,
Love the package. One thing I noticed is that I wanted to try using a few custom cost functions. One I used: C(x,y) = 0.5*|| x - y ||^2 only gets the same as the inbuilt p=2 for some sample points, but can occasionally disagree.
Any thoughts on this?
Many thanks,
Jake
The text was updated successfully, but these errors were encountered: