Commit a42c2d50 by Corey Koval

Update clustering aggressiveness

parent 12962ecc
...@@ -248,7 +248,7 @@ def autoeps_calc(X): ...@@ -248,7 +248,7 @@ def autoeps_calc(X):
x2 = x1 + 1 x2 = x1 + 1
y2 = sorted_distances[x2] y2 = sorted_distances[x2]
m = (y2 - y1) / (x2 - x1) m = (y2 - y1) / (x2 - x1)
if m > 0.005: if m > 0.003:
# print(f"Slope: {round(m, 3)}, eps: {y1}") # print(f"Slope: {round(m, 3)}, eps: {y1}")
return y1 return y1
except IndexError: except IndexError:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment