Can anyone help me, to fix this code.
I think there is some mistake in my code. Can anyone identify it and tell me correct code.
Error message is been attached, along with code that I put in to calculate the square distance.
Code details:
def sq_dist(a,b):
“”"
Returns the squared distance between two vectors
Args:
a (ndarray (n,)): vector with n features
b (ndarray (n,)): vector with n features
Returns:
d (float) : distance
“”"
m = 10
X = np.random.randint(10, size =(m,m))
d = np.zeros((m,m), dtype = int)
### START CODE HERE ###
### END CODE HERE ###
return (d)