File size: 278 Bytes
518db7a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """
SEM V6 Modules - Core neural network modules for semantic encoding.
Exports:
- NeuroscienceEnhancer: Module E - Neuroscience-inspired enhancements (STDP, sleep, neuromodulation)
"""
from .module_e import NeuroscienceEnhancer
__all__ = [
"NeuroscienceEnhancer",
]
|