Skip to content

Commit fb5da73

Browse files
committed
Update non-local detector default probabilities
Adjusted `no_spike_trans_prob` from 1e-5 to 5e-3 and `local_prob` from 0.999 to 0.99 in the non-local detector defaults. This change likely reflects a tuning of model parameters for improved performance or accuracy.
1 parent 6eb8dcd commit fb5da73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/non_local_detector/models/_defaults.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def multi_environment_defaults():
123123
@staticmethod
124124
def non_local_defaults():
125125
"""Defaults for non-local detector (4-state, sorted and clusterless)."""
126-
no_spike_trans_prob = 1e-5
127-
local_prob = 0.999
126+
no_spike_trans_prob = 5e-3
127+
local_prob = 0.99
128128
cont_non_local_prob = 0.98
129129
non_local_frag_prob = 0.98
130130
no_spike_prob = 0.98

0 commit comments

Comments
 (0)