Skip to content

Commit

Permalink
[skip ci] fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Oct 28, 2024
1 parent 30806d7 commit 5ba009e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dolphin/phase_link/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def process_coherence_matrices(
if beta > 0:
# Perform regularization
Gamma = (1 - beta) * Gamma + beta * Id
# if clip_coh_below > 0.0:
# Assume correlation below `clip_coh_below` is 0
Gamma = jnp.where(Gamma < clip_coh_below, 0, Gamma)

# Attempt to invert Gamma
Expand Down

0 comments on commit 5ba009e

Please sign in to comment.