Skip to content

Commit

Permalink
make filter less severe as it tends to cut neighbors
Browse files Browse the repository at this point in the history
  • Loading branch information
rhayes777 committed Nov 8, 2024
1 parent 5a08070 commit 9b2fa7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autolens/point/solver/point_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def solve(
for mean in filtered_means:
if any(
np.linalg.norm(np.array(mean) - np.array(other))
<= self.pixel_scale_precision
<= self.pixel_scale_precision / 2
for other in filtered_close
):
continue
Expand Down

0 comments on commit 9b2fa7a

Please sign in to comment.