jwpark

Results 2 issues of jwpark

It seems to have to be corrected from `ch[0] = (2/(np.pi))*(np.arccos(filter_bounds[0])-np.arccos(filter_bounds[1]))` to `ch[0] = (1/(np.pi))*(np.arccos(filter_bounds[0])-np.arccos(filter_bounds[1]))`.

I think def minkowski_distance_gradient(u, v): # u,v in hyperboloid # returns gradient with respect to u return -1*(hyperboloid_dot(u,v) ** 2 - 1) ** -1/2 * v should be changed into...