From c1501b690b34d31a85f1e742f3c2af34b7a4dd29 Mon Sep 17 00:00:00 2001 From: lauraporta <29216006+lauraporta@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:25:06 +0000 Subject: [PATCH] Edit default scaling parameter --- translocator_models/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/translocator_models/models.py b/translocator_models/models.py index 3f2ebb0..f551905 100644 --- a/translocator_models/models.py +++ b/translocator_models/models.py @@ -33,7 +33,7 @@ def rate_based_model( w3: float = 1, t1: float = 0.5, t2: float = 0.5, - k: float = 0.85, + k: float = 0.80, c: float = 1, ) -> float: """ @@ -66,7 +66,7 @@ def rate_based_model( t2 : float, optional Threshold for T-R mismatch adaptive response. Default is 0.5. k : float, optional - Scaling factor for the response. Default is 0.85. + Scaling factor for the response. Default is 0.80. c : float, optional Constant offset for the response. Default is 1.