An enterprise-grade, lightweight, and mathematically rigorous PyTorch cognitive augmentation library. Based on the cognitive science principles of Global Workspace Theory (GWT), active dendritic processing, metacognitive neuromodulation, and glial homeostasis, GWT enables developers to augment any open-weights foundation model (such as Llama-3, Mistral, ResNet, and Vision Transformers) with state-of-the-art brain-inspired routing, active gating, and local learning regulation.
The GWT library acts as a framework-agnostic, low-overhead cognitive layer that hooks into PyTorch models (Transformers, CNNs, and Spiking Neural Networks) without requiring intrusive alterations to their source code. By leveraging PyTorch forward and backward hooks, GWT intercepts intermediate representations, routes them through a central workspace bottleneck where they compete for attention, and broadcasts a unified cognitive context vector back to all subsystems.
graph TD
subgraph SM ["Specialized Modules (Open-Weights Subnets)"]
M1[Vision Transformer / CNN] -->|Hooked Output| A1[Crossbar Slot 0]
M2[Llama / Language Model] -->|Hooked Output| A2[Crossbar Slot 1]
end
subgraph CMR ["Cross-Modal Routing (Phase v0.7)"]
A1 & A2 -->|Vectorized Routing| CC[Cognitive Crossbar]
end
subgraph GCE ["GWT Core Engine & Attention (Phase v0.1)"]
CC -->|Bottom-Up Salience| GW[Global Workspace]
GW -->|Top-Down Query Selection| AS[Attention Selector]
end
subgraph MGR ["Metacognitive & Glial Regulation (Phase v0.4 & v0.5)"]
GW -->|Entropy / Surprise| MM[Metacognitive Monitor]
MM -->|ACh / NE| GW
MM -->|Local LR Modulation| AM[Astrocyte Manager]
end
subgraph ADC ["Active Dendrites & Concepts (Phase v0.2 & v0.6)"]
GW -->|Broadcast Context| ADG[Active Dendrite Gate]
ADG -->|Modulated Features| CL[Concept Layer Bottleneck]
end
subgraph ACN ["Autonomous Computational Neurogenesis (Phase v0.9)"]
MM -->|NE Surprise Trigger| NM[Neurogenesis Manager]
NM -->|Add Dendritic Branch| EDMA[Extended Dendritic Module Adapter]
NAM[Neurogenesis Astrocyte Manager] -->|Growth Excitotoxicity Safety| NM
EDMA -->|Active NMDA Gating| GW
end
- Global Workspace Bottleneck (Phase v0.1): Collapses high-dimensional representation spaces into a selective, low-dimensional competitive broadcast.
- Active Dendritic Gating (Phase v0.2): Simulates compartmental dendritic trees where GWT context filters and modulates feedforward inputs via NMDA-like threshold spiking.
- Episodic Consolidation & Synaptic Homeostasis (Phase v0.3): Executes offline sleep-replay cycles and permanently prunes underutilized synapses using backward gradient lockout hooks.
- Metacognitive Neuromodulation (Phase v0.4): Automatically tunes hyperparameter knobs based on temporal cosine surprise (Norepinephrine) and entropy focus (Acetylcholine).
- Glial Metaplasticity & Excitotoxicity Protection (Phase v0.5): Employs virtual astrocytes to scale local learning rates and damps excessive gradient variance locally.
-
Conceptual Bottlenecks & Causal Interventions (Phase v0.6): Maps representations onto explicit concept activation scores in
$[0, 1]$ , enabling human-in-the-loop causal overrides. - Cross-Modal Cognitive Crossbar (Phase v0.7): Routes information concurrently across multiple parallel slots using multi-slot attention routing.
- Enterprise Scalability & Caching (Phase v0.8): Offloads heavy SWS consolidation loops asynchronously and serializes/deserializes PyTorch activation tensors to/from Redis Enterprise.
- Autonomous Computational Neurogenesis (Phase v0.9): Dynamically spawns new parallel dendritic branches in response to high unexpected uncertainty, protected by somatic calcium regulators and offline pruning consolidation.
Install the library directly from PyPI or within your development workspace using pip or Poetry:
pip install gwt-cognitive-auggit clone https://github.com/your-org/gwt.git
cd gwt
pip install -e ".[dev]"poetry add gwt-cognitive-augThe following script demonstrates how to instantiate the engine, register a simple PyTorch layer with a dendritic adapter, execute a forward and stepping loop, and print the live ASCII diagnostic panel:
import torch
import torch.nn as nn
from gwt import (
CognitiveAugEngine,
GlobalWorkspace,
DendriticModuleAdapter,
MetacognitiveMonitor,
)
# 1. Define a standard PyTorch module
class VisionEncoder(nn.Module):
def __init__(self) -> None:
super().__init__()
self.conv = nn.Conv2d(3, 8, kernel_size=3, padding=1)
self.fc = nn.Linear(8 * 4 * 4, 16)
def forward(self, x: torch.Tensor) -> torch.Tensor:
out = torch.relu(self.conv(x))
out = out.view(out.size(0), -1)
return self.fc(out)
# 2. Instantiate modules and engine
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model = VisionEncoder().to(device)
engine = CognitiveAugEngine()
# 3. Register standard module with a Dendritic Adapter
adapter = DendriticModuleAdapter(
name="vision_encoder",
module=model,
latent_dim=16,
data_flow=engine.data_flow,
num_branches=4,
spike_type="nmda-threshold",
threshold=0.4
)
engine.registry.register("vision_encoder", adapter)
# 4. Attach Workspace and Neuromodulator
workspace = GlobalWorkspace(latent_dim=16, key_dim=32, ignition_threshold=0.3).to(device)
engine.attach_workspace(workspace)
monitor = MetacognitiveMonitor(alpha_ne=0.2, alpha_ach=0.2)
engine.attach_neuromodulator(monitor)
# 5. Run standard forward pass & step GWT cycle
inputs = torch.randn(4, 3, 4, 4, device=device)
outputs = model(inputs) # Adapter automatically intercepts latents via hooks
broadcast_state = engine.step() # Computes GWT routing and ACh/NE curves
print(f"[*] Broadcast Context Shape: {broadcast_state.shape}")
print(engine.inspect()) # Displays gorgeous live terminal telemetry dashboard!This section provides a rigorous class-by-class, method-by-method blueprint of the entire GWT library across all 7 architectural phases.
Manages the core infrastructure including module registry, O(1) dynamic latent routing buffers, GWT workspace attention selection (top-down / bottom-up), and global broadcasting.
Main central orchestrator wrapping all GWT subsystems.
class CognitiveAugEngine:
def __init__(self) -> None: ...
def register_module(
self,
name: str,
module: torch.nn.Module,
latent_dim: int,
**kwargs: Any
) -> ModuleAdapter: ...
def attach_workspace(self, workspace: torch.nn.Module) -> None: ...
def attach_neuromodulator(self, monitor: Any) -> None: ...
def attach_glial_manager(self, manager: Any) -> None: ...
def attach_concept_layer(self, name: str, layer: Any) -> None: ...
def attach_crossbar(self, crossbar: Any) -> None: ...
def attach_replay_buffer(self, replay_buffer: Any) -> None: ...
def step(self) -> torch.Tensor: ...
"""
Executes one full GWT cycle:
1. Collects modular buffers from DataFlowManager.
2. Modulates parameters based on chemical levels.
3. Runs CognitiveCrossbar message passing (if attached).
4. Computes Workspace routing and broadcasts the unified state [B, latent_dim].
"""
def inspect(self) -> str: ...
"""Renders a beautiful ASCII diagnostic report of all subcomponents."""Manages a mapping of unique names to registered module adapters.
class ModuleRegistry:
def __init__(self) -> None: ...
def register(self, name: str, adapter: Any) -> None: ...
def get(self, name: str) -> Any: ...
def list_names(self) -> List[str]: ...
def list_adapters(self) -> List[Any]: ...
def clear(self) -> None: ...Implements high-performance transient buffers and salience metrics.
class DataFlowManager:
def __init__(self) -> None: ...
def update_buffer(self, name: str, tensor: torch.Tensor) -> None: ...
def get_buffer(self, name: str) -> torch.Tensor: ...
def list_buffers(self) -> Dict[str, torch.Tensor]: ...
def update_salience(self, name: str, score: float) -> None: ...
def get_salience(self, name: str) -> float: ...
def list_saliences(self) -> Dict[str, float]: ...
def clear_buffers(self) -> None: ...The core GWT competitive bottleneck module.
class GlobalWorkspace(torch.nn.Module):
def __init__(
self,
latent_dim: int,
key_dim: int = 64,
attention_type: str = "key-query",
selection_mode: str = "soft",
ignition_threshold: float = 0.0,
workspace_slots: int = 1,
) -> None: ...
def forward(
self,
latent_states: Dict[str, torch.Tensor],
keys: Dict[str, torch.Tensor],
custom_query: Optional[torch.Tensor] = None,
) -> torch.Tensor: ...
"""
Args:
latent_states : Map of name -> [B, latent_dim] latents.
keys : Map of name -> [B, key_dim] key representations.
custom_query : Optional query representation override [B, key_dim].
Returns:
Unified GWT broadcast state [B, latent_dim].
"""Simulates biologically plausible dendritic gating where global context modulates localized feedforward outputs.
Vectorized dendritic pre-processing module supporting NMDA spikes.
class ActiveDendriteGate(torch.nn.Module):
def __init__(
self,
feedforward_dim: int,
context_dim: int,
num_branches: int = 4,
spike_type: str = "modulatory-gain",
threshold: float = 0.5,
gain_temperature: float = 1.0,
) -> None:
"""
Args:
feedforward_dim : Dimension of raw feedforward inputs.
context_dim : Dimension of GWT broadcast context.
num_branches : Number of dendritic branches.
spike_type : Gating type: 'modulatory-gain' (sigmoid) or 'nmda-threshold' (STE step).
threshold : Spike threshold for NMDA gating.
gain_temperature : Division factor scaling sigmoidal steepness.
"""
...
def forward(self, x: torch.Tensor, context: torch.Tensor) -> torch.Tensor: ...
"""
Computes modulated output shape matching x (supports [B, D] or [B, S, D]).
"""
def get_status(self) -> Dict[str, float]: ...
"""Returns active_pct and muted_pct status maps based on latest activations."""Extends ModuleAdapter to automatically inject ActiveDendriteGate into the PyTorch forward pipeline.
class DendriticModuleAdapter(ModuleAdapter):
def __init__(
self,
name_or_module: Any = None,
module: Optional[torch.nn.Module] = None,
latent_dim: Optional[int] = None,
data_flow: Optional[DataFlowManager] = None,
num_branches: int = 4,
spike_type: str = "modulatory-gain",
key_dim: int = 64,
projection_in_dim: Optional[int] = None,
threshold: float = 0.5,
name: Optional[str] = None,
**kwargs: Any,
) -> None: ...Handles slow-wave sleep memory consolidation and synaptic homeostasis.
Lightweight, O(1) bounded replay buffer storing high-salience experiences.
class CognitiveReplayBuffer:
def __init__(self, max_size: int = 1000) -> None: ...
def add_trace(
self,
latent_states: Dict[str, torch.Tensor],
context: torch.Tensor,
salience: float,
) -> None: ...
"""
Stores detached clones of inputs in O(1) time.
Evicts the lowest salience item when size exceeds max_size.
"""
def sample_batch(self, batch_size: int) -> List[Dict[str, Any]]: ...
def clear(self) -> None: ...Handles offline consolidation cycles minimizing combined reconstruction and stability losses.
class ConsolidationEngine:
def __init__(self, engine: Any, replay_buffer: CognitiveReplayBuffer) -> None: ...
def sleep_cycle(
self,
steps: int = 100,
learning_rate: float = 0.001,
batch_size: int = 32,
) -> Dict[str, Any]: ...
"""
Performs memory consolidation optimization loop. Returns summary statistics.
"""Executes structural pruning on under-utilized dendritic branches.
def prune_dendrites(
engine: Any,
pruning_threshold: float = 0.05,
waking_activations: Optional[Dict[str, torch.Tensor]] = None,
) -> int:
"""
Locks out parameter gradient propagation permanently on pruned branches.
Returns the total number of branches successfully pruned.
"""Self-tunes hyperparameters dynamically via Acetylcholine (ACh) and Norepinephrine (NE).
Calculates dynamic chemical levels under strict torch.no_grad() scopes.
class MetacognitiveMonitor:
def __init__(
self,
alpha_ne: float = 0.8,
alpha_ach: 0.8,
beta: float = 0.5,
gamma: float = 0.2,
threshold_coef: float = 0.3,
temp_coef: float = 0.5,
) -> None:
"""
Args:
alpha_ne : Smoothing factor for NE surprise tracking.
alpha_ach : Smoothing factor for ACh focus tracking.
beta : Base baseline scaling for GWT ignition.
gamma : ACh scaling scale factor for GWT ignition.
threshold_coef : Enforced NMDA spike threshold shift.
temp_coef : Enforced sigmoid gain sharpening.
"""
...
def modulate(self, engine: Any) -> None: ...
"""Triggers chemical monitoring and executes threshold updates."""
def get_chemical_levels(self) -> Dict[str, Any]: ...
"""Returns dynamic chemical statistics and gorgeous progress bars."""Adapts thresholds of Global Workspace and Dendritic Gates in-place.
class DynamicThresholdAdapter:
def __init__(
self,
baseline_ignition: float = 0.5,
baseline_dendrite: float = 0.5,
threshold_coef: float = 0.3,
temp_coef: float = 0.5,
beta: float = 0.5,
gamma: float = 0.2,
) -> None: ...
def apply(self, engine: Any, ne: float, ach: float) -> None: ...
"""Performs dynamic parameter injection."""Implements localized learning rate metaplasticity and gradient excitotoxicity protection.
Coordinates Tripartite Synapse learning scaling based on local salience EMA and global chemical states.
class AstrocyteManager(torch.nn.Module):
def __init__(
self,
ema_alpha: float = 0.9,
lr_lock_scale: float = 0.5,
lr_unlock_scale: float = 1.5,
max_variance_threshold: float = 3.0,
damping_factor: float = 0.2,
) -> None: ...
def attach(self, engine: Any) -> None: ...
def update(self, engine: Any) -> None: ...
"""Tracks running EMA of modular saliences."""
def adjust_learning_rates(self, optimizer: torch.optim.Optimizer) -> None: ...
"""
Dynamically scales optimizer param group learning rates:
- Highly stable focused state (ACh high, NE low) -> scales down (lock-in) by lr_lock_scale.
- Surprising/high-salience state (NE high) -> scales up (unlock) by lr_unlock_scale.
"""Stops gradient explosions from propagating through the architecture.
class GradientSanitizerHook:
def __init__(
self,
max_variance_threshold: float = 3.0,
damping_factor: float = 0.2,
) -> None: ...
def register(self, parameter: torch.nn.Parameter) -> None: ...
"""Applies a standard PyTorch backward hook."""
def remove_hooks(self) -> None: ...Projects hidden representations into explicit conceptual labels, allowing targeted causal overrides.
The low-dimensional concept bottleneck projector.
class ConceptLayer(torch.nn.Module):
def __init__(
self,
input_dim: int,
num_concepts: int,
abstraction_type: str = "projection",
concept_names: Optional[List[str]] = None,
threshold: float = 0.5,
) -> None:
"""
Args:
input_dim : Dimension of incoming hidden states.
num_concepts : Dimension of low-dimensional concept space.
abstraction_type : Bottleneck type: 'projection' (sigmoid), 'linear', 'softmax', or 'threshold' (STE).
concept_names : Human-readable concept labels.
threshold : Activation threshold for 'threshold' GWT bottleneck.
"""
...
def forward(self, x: torch.Tensor) -> torch.Tensor: ...
"""
Projects hidden states and executes causal interventions if registered.
"""Maintains programmatic causal interventions.
class ConceptInterventionEngine:
def __init__(self) -> None: ...
def set_intervention(self, concept_idx: int, value: float) -> None: ...
def clear_intervention(self, concept_idx: int) -> None: ...
def clear_interventions(self) -> None: ...
def get_interventions(self) -> Dict[int, float]: ...Implements an all-to-all parallel distributed routing bus allowing dynamic cross-modal routing.
Routes slot context in parallel using vectorized query-key routing.
class CognitiveCrossbar(torch.nn.Module):
def __init__(
self,
slot_dim: int,
num_slots: int,
slot_names: Optional[List[str]] = None,
) -> None:
"""
Args:
slot_dim : Dimension of parallel routing slot matrices.
num_slots : Number of parallel slots.
slot_names : Human-readable name labels.
"""
...
def write_slot(self, slot_idx: int, tensor: torch.Tensor) -> None: ...
"""Inserts a tensor into a dedicated slot index."""
def forward(self) -> torch.Tensor: ...
"""
Executes vectorized all-to-all routing.
Returns routed slot representation [B, num_slots, slot_dim].
"""Adapts standard modules to seamlessly write features into a crossbar slot.
class CrossbarModuleAdapter(ModuleAdapter):
def __init__(
self,
name: str,
module: torch.nn.Module,
latent_dim: int,
data_flow: DataFlowManager,
slot_idx: int,
**kwargs: Any,
) -> None: ...Implements asynchronous offline consolidation and serializes active activation tensors to/from a distributed Redis State Store.
Serializes/deserializes PyTorch tensors as binary blobs with autograd graph isolation using Redis.
class RedisStateStore(BaseStateStore):
def __init__(self, redis_url: str = "redis://localhost:6379/0", key_prefix: str = "gwt:state", **kwargs: Any) -> None: ...Triggers Slow-Wave Sleep (SWS) offline memory consolidation asynchronously in background daemon queues or Celery/Redis Enterprise, avoiding GPU thread blocking.
def offloaded_enter_sleep_phase(engine: Any, steps: int = 5, learning_rate: float = 0.001, pruning_threshold: float = 0.05, batch_size: int = 32, use_celery: bool = False) -> Dict[str, Any]: ...Enables runtime adaptive neural architecture growth (spawning new parallel dendritic pathways) and consolidation, protected by calcium regulators and maturate gradient sanitizers.
Extends dendritic processing to support dynamic, structural additions of branches at runtime.
class ExtendedDendriticModuleAdapter(torch.nn.Module):
def __init__(self, feedforward_dim: int, context_dim: int, initial_branches: int = 1) -> None: ...
def add_dendritic_branch(self) -> int: ...
"""Spawns a new zero-initialized linear branch and gate."""
def prune_branch(self, idx: int) -> None: ...
"""Zeroes out parameters and masks the branch."""Primary orchestrator evaluating unexpected uncertainty (NE_surprise) to trigger growth on target adapters under temporal cooldown refractories and ACh focus ceilings.
class NeurogenesisManager:
def __init__(self, config: Dict[str, Any], astrocyte_manager: nn.Module, replay_buffer: Any, metacognitive_monitor: Any) -> None: ...
def step(self, step_idx: int, metrics: Dict[str, Any], adapters: List[nn.Module]) -> str: ...
"""Evaluates criteria and coordinates dynamic structural growth. Returns status string."""Manages offline sleep cycles, accumulating branch performance metrics to permanentize or prune candidates.
class NeurogenesisConsolidationEngine:
def __init__(self, model: nn.Module, replay_buffer: Any, threshold_perm: float = 0.4) -> None: ...
def execute_sleep_cycle(self, optimizer: torch.optim.Optimizer, steps: int = 100) -> None: ...Below is a complete, self-contained, and reproducible demonstration script that simulates surprise-triggered neurogenesis, dynamic optimizer updates, glia-inspired safety checks, and offline SWS consolidation:
import torch
import torch.nn as nn
import torch.optim as optim
from gwt import (
ExtendedDendriticModuleAdapter,
NeurogenesisManager,
NeurogenesisConsolidationEngine,
NeurogenesisReplayBuffer,
dynamic_register_parameters,
NeurogenesisAstrocyteManager
)
# 1. Initialize dynamic module adapter and homeostatic astrocyte regulator
in_dim, context_dim = 8, 4
adapter = ExtendedDendriticModuleAdapter(feedforward_dim=in_dim, context_dim=context_dim, initial_branches=1)
astrocyte = NeurogenesisAstrocyteManager(calcium_decay=0.1, safety_ceiling=3.0)
replay_buffer = NeurogenesisReplayBuffer(capacity=10)
# 2. Setup dynamic live optimizer
optimizer = optim.Adam(adapter.parameters(), lr=0.01)
# 3. Setup Neurogenesis lifecycle manager
config = {"ne_threshold": 0.80, "ach_focus_ceiling": 0.70, "cooldown_steps": 1}
manager = NeurogenesisManager(
config=config,
astrocyte_manager=astrocyte,
replay_buffer=replay_buffer,
metacognitive_monitor=None
)
# 4. Simulate a training pass under unexpected high uncertainty (NE surprise spike)
x = torch.randn(2, in_dim)
context = torch.randn(2, context_dim)
metrics = {"NE_surprise": torch.tensor(0.95), "ACh_focus": torch.tensor(0.1)}
print(f"Pre-neurogenesis branches count: {len(adapter.branches)}")
# 5. Evaluate and trigger neurogenesis
status = manager.step(step_idx=1, metrics=metrics, adapters=[adapter])
print(f"Neurogenesis status: {status}")
if status == "neurogenesis_triggered":
new_idx = len(adapter.branches) - 1
print(f"Successfully spawned new branch at index: {new_idx}")
# Register the newly spawned branch parameters in the active optimizer
dynamic_register_parameters(optimizer, adapter, new_idx)
print("Registered new parameters inside the live running Optimizer.")
# 6. Execute forward pass with active calcium monitoring
raw_outputs = adapter(x, context)
regulated_outputs = astrocyte.monitor_and_regulate(raw_outputs)
print(f"Calcium Level: {astrocyte.calcium_store.item():.4f}")
# 7. Simulate offline Slow-Wave Sleep (SWS) crystallization consolidation
target = torch.randn(2, in_dim)
replay_buffer.push(x, context, target, surprise=1.0, neuro_event=True)
sleep_engine = NeurogenesisConsolidationEngine(adapter, replay_buffer, threshold_perm=0.3)
sleep_engine.execute_sleep_cycle(optimizer, steps=2)
print("Completed offline sleep-cycle consolidation evaluation.")To deploy GWT in high-throughput enterprise systems with billions of parameters, developers must follow these critical production paradigms.
PyTorch builds a directed acyclic graph (DAG) during the forward pass to track operations for backpropagation. If transient or historical representations (e.g., past global broadcasts, stored episodic memory traces, or moving average scores) are kept across stepping cycles without gradient isolation, autograd continues to accumulate the graph indefinitely. This results in a catastrophic memory leak and eventual Out-Of-Memory (OOM) crashes.
GWT guarantees graph isolation by explicitly detaching historical states at critical boundaries:
- Episodic memory writing: When writing state transitions to the
CognitiveReplayBuffer, GWT enforces.detach().clone()on all captured latents, separating them from active computational subgraphs. - Gradient-free monitoring: All neuromodulation updates (calculating ACh focus and NE surprise curves) and local ASTROCYTE learning rate tracking run inside
with torch.no_grad():blocks, preventing tracking variables from generating unnecessary gradient dependencies. - Detached working memory decay: In short-term memory transitions, active slot decay operations use in-place multiplication operations on detached tensors.
# Enterprise Best Practice: Detach caching states to guarantee zero memory leaks
latent_state = adapter.data_flow.get_buffer("subsystem").detach().clone()Foundation models utilize diverse activation tensor ranks across modalities:
- Transformers (e.g., Llama-3): Output sequence arrays with shape
[Batch, Sequence, Dim]. - CNNs (e.g., ResNet): Output spatial feature arrays with shape
[Batch, Channel, Height, Width]. - Standard MLPs: Output flat state vectors with shape
[Batch, Dim].
GWT's global_pool_latent seamlessly accepts arbitrary multi-dimensional tensors and collapses spatial/temporal channels dynamically into flat 2D [B, D] dimensions. This guarantees that deep-learning outputs can interface cleanly with GWT's low-dimensional concept bottlenecks without manual shape resizing.
def global_pool_latent(x: torch.Tensor) -> torch.Tensor:
if x.dim() == 2:
return x
elif x.dim() == 3:
# Collapse sequence length dimension [B, S, D] -> [B, D] via average pooling
return x.mean(dim=1)
elif x.dim() == 4:
# Collapse spatial dimension [B, C, H, W] -> [B, C] via adaptive average pooling
return F.adaptive_avg_pool2d(x, (1, 1)).flatten(start_dim=1)
else:
return x.flatten(start_dim=1)For stable learning convergence under complex 7-phase neuro-cognitive loops, configure hyperparameter ranges according to these empirical baseline settings:
| Parameter | Type | Default | Recommended Range | Description |
|---|---|---|---|---|
alpha_ne |
float |
0.8 |
0.3 - 0.9 |
Surprise decay smoothing rate. Lower values accelerate adaptation. |
alpha_ach |
float |
0.8 |
0.3 - 0.9 |
Focus decay smoothing rate. Lower values enable faster attention shifts. |
lr_lock_scale |
float |
0.5 |
0.1 - 0.8 |
Glial damping scale for stable focus states. |
lr_unlock_scale |
float |
1.5 |
1.1 - 3.0 |
Glial boosting scale for surprising/novelty states. |
max_variance_threshold |
float |
3.0 |
2.0 - 5.0 |
Excitotoxicity limit. Standard deviation limit before gradient damping triggers. |
damping_factor |
float |
0.2 |
0.05 - 0.5 |
Glial damping multiplier applied to local gradients during spikes. |
pruning_threshold |
float |
0.05 |
0.01 - 0.2 |
Minimum average activation threshold below which dendritic branches are pruned. |
Run GWT's full unit and integration test suite to verify correct mathematical execution across all 7 phases:
# Set PYTHONPATH to the current development folder and run pytest
$env:PYTHONPATH="."; py -m pytest testsTo run GWT's production benchmark loop directly and verify memory safety, local plasticity, and dynamic chemical curves:
# Run GWT execution loop performance benchmark
$env:PYTHONPATH="."; py tests/benchmark_cognitive_engine.pyWe welcome contributions and collaboration from MLOps infrastructure engineers, PyTorch core developers, and neuro-cognitive AI researchers.
Get started immediately in your browser without local installation:
- Clone the repository:
git clone https://github.com/foxprint666/cognitive-layer.git cd cognitive-layer - Initialize a virtual environment:
- Using
uv(recommended for 10x faster setup):uv venv # On macOS/Linux: source .venv/bin/activate # On Windows (PowerShell): .venv\Scripts\Activate.ps1 # Install GWT package in editable mode with development dependencies $env:UV_LINK_MODE="copy" # Prevents cloud syncing hardlink conflicts on OneDrive/Windows uv pip install -e ".[dev]"
- Using standard
pip:python -m venv venv # On macOS/Linux: source venv/bin/activate # On Windows (PowerShell): venv\Scripts\Activate.ps1 pip install -e ".[dev]"
- Using
Before submitting a pull request, ensure all tests pass and there are no regression errors:
# Set local PYTHONPATH and run the 55-test suite
$env:PYTHONPATH="." # On Linux/macOS: export PYTHONPATH="."
python -m pytest tests/To run end-to-end multi-modal cognitive benchmarks:
python tests/benchmark_cognitive_engine.py- Autograd Graph Safety: Enforce strict
.detach().clone()boundaries on any intermediate tensors stored or cached historically (like memory traces) to prevent OOM graph memory leaks. - Type Hinting: Maintain strict PEP 484 type hints across all dynamic parameters and constructor parameters.
- Formatting: Format your edits using
blackand lint withrufforflake8to comply with coding standards.
- Fork the repository and create a new feature branch (
git checkout -b feature/amazing-feature). - Implement your architectural enhancements or bug fixes.
- Add corresponding unit tests in the
tests/directory. - Verify all tests pass successfully.
- Commit your changes (
git commit -m 'Add amazing GWT phase') and push to your fork. - Submit a Pull Request targeting the
mainbranch.
This library is dual-licensed under the following terms:
- Open-Source Development: Licensed under the GNU General Public License v3.0 (GNU GPL v3.0). Anyone is free to use, modify, and redistribute the codebase under the same copyleft terms.
- Commercial Closed-Source Licensing: For integrations into proprietary closed-source applications or commercial deployments where copyleft redistribution is not desired, a commercial license must be obtained. Please contact the core maintainer at synaptiq44@gmail.com for pricing and commercial licensing terms.