Homeostasis¶
Homeostatic regulation: self-stabilising SNN without manual tuning.
Adjusts population firing thresholds and learning-rate scaling to maintain target firing rates. The public regulator rejects malformed scalar and array inputs before changing thresholds or learning rates, including bool aliases, empty rate vectors, non-finite values, non-numeric arrays, and invalid sleep-consolidation seeds.
- Threshold adaptation: overactive populations raise thresholds; quiet populations lower thresholds.
- Learning-rate scaling: high firing-rate variance reduces the caller-provided learning rate.
- Sleep consolidation: finite non-empty weight arrays receive deterministic power-law decay plus optional replay noise.
from sc_neurocore.homeostasis import NetworkRegulator, SleepConsolidation
sc_neurocore.homeostasis
¶
Homeostatic regulation: self-stabilizing SNN without manual tuning.
NetworkRegulator
¶
Network-wide homeostatic regulator.
Monitors population firing rates and adjusts thresholds, learning rates, and weights to maintain target activity levels.
Parameters¶
target_rate : float Target mean firing rate (spikes per step). rate_tolerance : float Acceptable deviation from target (fraction). threshold_step : float Per-step threshold adjustment magnitude. lr_scale_factor : float Multiplicative LR adjustment factor.
Source code in src/sc_neurocore/homeostasis/regulator.py
| Python | |
|---|---|
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | |
regulate(firing_rates, thresholds, learning_rate, weights=None)
¶
Apply homeostatic regulation.
Parameters¶
firing_rates : ndarray of shape (N,) Current per-neuron firing rates. thresholds : ndarray of shape (N,) Current per-neuron thresholds. learning_rate : float Current learning rate. weights : list of ndarray, optional Weight matrices for norm monitoring.
Returns¶
(new_thresholds, new_lr, StabilityMetrics)
Source code in src/sc_neurocore/homeostasis/regulator.py
| Python | |
|---|---|
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |
SleepConsolidation
¶
Sleep-phase synaptic renormalization for memory consolidation.
During sleep: suppress external input, apply power-law weight decay, allow spontaneous replay through recurrent dynamics.
Reference: Sleep-Based Homeostatic Regularization (arXiv Jan 2026)
Parameters¶
decay_exponent : float Power-law exponent for weight decay (higher = more aggressive). noise_amplitude : float Spontaneous activity noise during sleep. duration_fraction : float Sleep duration as fraction of epoch (0.1 = 10% of time sleeping).
Source code in src/sc_neurocore/homeostasis/regulator.py
| Python | |
|---|---|
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | |
apply(weights, seed=42)
¶
Apply sleep consolidation to weights.
High-activity synapses (large |w|) undergo proportionally more decay. Low-activity synapses are relatively preserved.
Parameters¶
weights : list of ndarray
Non-empty finite numeric weight arrays.
seed : int, default=42
Deterministic NumPy RandomState seed in [0, 2**32 - 1].
Returns¶
list of ndarray Renormalized weights.
Source code in src/sc_neurocore/homeostasis/regulator.py
| Python | |
|---|---|
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 | |
should_sleep(epoch, total_epochs)
¶
Determine if this epoch should include a sleep phase.
Parameters¶
epoch : int Zero-based epoch index. total_epochs : int Positive total epoch count for caller-side schedule validation.
Returns¶
bool
True when the epoch is a positive multiple of the interval
implied by duration_fraction.
Source code in src/sc_neurocore/homeostasis/regulator.py
| Python | |
|---|---|
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | |
StabilityMetrics
dataclass
¶
Network stability measurements.
Source code in src/sc_neurocore/homeostasis/regulator.py
| Python | |
|---|---|
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | |
summary()
¶
Render a multi-line human-readable network-stability report.
Returns¶
str Text report containing stability status, firing-rate statistics, E/I ratio, weight norm, and any applied regulation actions.
Source code in src/sc_neurocore/homeostasis/regulator.py
| Python | |
|---|---|
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | |