From a6b7ecb2ef43052e6ac93cc88678ceeeabcbe117 Mon Sep 17 00:00:00 2001
From: Alexander van Meegen <a.van.meegen@fz-juelich.de>
Date: Thu, 3 Dec 2020 11:36:34 +0100
Subject: [PATCH] Fix default value of K_stable
---
multiarea_model/default_params.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/multiarea_model/default_params.py b/multiarea_model/default_params.py
index bbe72df..73dc579 100644
--- a/multiarea_model/default_params.py
+++ b/multiarea_model/default_params.py
@@ -117,11 +117,11 @@ General connection parameters
"""
connection_params = {
# Whether to apply the stabilization method of
- # Schuecker, Schmidt et al. (2017). Default is False.
+ # Schuecker, Schmidt et al. (2017). Default is None.
# Options are True to perform the stabilization or
# a string that specifies the name of a binary
# numpy file containing the connectivity matrix
- 'K_stable': False,
+ 'K_stable': None,
# Whether to replace all cortico-cortical connections by stationary
# Poisson input with population-specific rates (het_poisson_stat)
--
GitLab