We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there not a typing error here?
BetaML.jl/src/Utils/Measures.jl
Lines 15 to 17 in 4bf2d55
"""Cosine distance""" cosine_distance(x,y) = dot(x,y)/(norm(x)*norm(y)) """
I guess it should be:
"""Cosine distance""" cosine_distance(x,y) = 1 - dot(x,y)/(norm(x)*norm(y)) """
(if I well understood what you wanted to refer to as "cosine distance")
The text was updated successfully, but these errors were encountered:
Thank you.
Sorry, something went wrong.
No branches or pull requests
Is there not a typing error here?
BetaML.jl/src/Utils/Measures.jl
Lines 15 to 17 in 4bf2d55
I guess it should be:
(if I well understood what you wanted to refer to as "cosine distance")
The text was updated successfully, but these errors were encountered: