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
the old version of code is:
y_std_score = float(1.0 / (1.0 + np.std(x_values))) is not correct
I changed to the
y_std_score = float(1.0 / (1.0 + np.std(y_values)))
0 commit comments