SkyalyticAI 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- skyalyticAI/__init__.py +82 -0
- skyalyticAI/active_inference/__init__.py +3 -0
- skyalyticAI/active_inference/agent.py +895 -0
- skyalyticAI/brain.py +1316 -0
- skyalyticAI/consciousness/__init__.py +307 -0
- skyalyticAI/data/__init__.py +519 -0
- skyalyticAI/data/corpus_manager.py +284 -0
- skyalyticAI/data/education_config.py +254 -0
- skyalyticAI/env/__init__.py +14 -0
- skyalyticAI/env/curriculum_world.py +240 -0
- skyalyticAI/env/environment.py +92 -0
- skyalyticAI/env/exam_world.py +143 -0
- skyalyticAI/env/grid_world.py +219 -0
- skyalyticAI/env/social_classroom_world.py +244 -0
- skyalyticAI/env/text_world.py +99 -0
- skyalyticAI/evolution/__init__.py +430 -0
- skyalyticAI/exams/__init__.py +14 -0
- skyalyticAI/exams/char_prediction_exam.py +127 -0
- skyalyticAI/exams/exam_suite.py +122 -0
- skyalyticAI/exams/multi_step_reasoning_exam.py +167 -0
- skyalyticAI/exams/reading_comprehension_exam.py +153 -0
- skyalyticAI/gpu/__init__.py +370 -0
- skyalyticAI/language/__init__.py +6 -0
- skyalyticAI/language/language_head.py +101 -0
- skyalyticAI/language/text_encoder.py +72 -0
- skyalyticAI/memory/__init__.py +13 -0
- skyalyticAI/memory/consolidation.py +633 -0
- skyalyticAI/memory/hdc.py +542 -0
- skyalyticAI/metacognition/__init__.py +3 -0
- skyalyticAI/metacognition/metacognition.py +453 -0
- skyalyticAI/neurons/__init__.py +5 -0
- skyalyticAI/neurons/alif.py +199 -0
- skyalyticAI/neurons/lif.py +284 -0
- skyalyticAI/neurons/snn_layer.py +664 -0
- skyalyticAI/neurons/sparse_connectivity.py +384 -0
- skyalyticAI/npc/__init__.py +6 -0
- skyalyticAI/npc/persona_registry.py +151 -0
- skyalyticAI/npc/teacher_npc.py +235 -0
- skyalyticAI/npc/teacher_service.py +112 -0
- skyalyticAI/perception/__init__.py +5 -0
- skyalyticAI/perception/audio_encoder.py +212 -0
- skyalyticAI/perception/multimodal_fusion.py +150 -0
- skyalyticAI/perception/visual_encoder.py +315 -0
- skyalyticAI/plasticity/__init__.py +4 -0
- skyalyticAI/plasticity/stdp.py +311 -0
- skyalyticAI/plasticity/stdp_layer.py +410 -0
- skyalyticAI/predictive_coding/__init__.py +4 -0
- skyalyticAI/predictive_coding/pcn.py +475 -0
- skyalyticAI/predictive_coding/pcn_layer.py +327 -0
- skyalyticAI/society/__init__.py +6 -0
- skyalyticAI/society/sim_world.py +311 -0
- skyalyticAI/training/__init__.py +5 -0
- skyalyticAI/training/acceptance_report.py +140 -0
- skyalyticAI/training/human_growth_trainer.py +229 -0
- skyalyticAI/training/text_metrics.py +45 -0
- skyalyticAI/training/trainer.py +446 -0
- skyalyticAI/training/training_quality.py +84 -0
- skyalyticAI/world_model/__init__.py +3 -0
- skyalyticAI/world_model/world_model.py +541 -0
- skyalyticai-0.1.0.dist-info/METADATA +317 -0
- skyalyticai-0.1.0.dist-info/RECORD +64 -0
- skyalyticai-0.1.0.dist-info/WHEEL +5 -0
- skyalyticai-0.1.0.dist-info/licenses/LICENSE +25 -0
- skyalyticai-0.1.0.dist-info/top_level.txt +1 -0
skyalyticAI/__init__.py
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"""
|
|
2
|
+
NIEA: Neural Isomorphic Evolutionary Architecture
|
|
3
|
+
|
|
4
|
+
A brain-inspired AI framework implementing four theoretical pillars
|
|
5
|
+
and seven core functional modules:
|
|
6
|
+
|
|
7
|
+
Four Theoretical Pillars:
|
|
8
|
+
1. SNN Substrate - Event-driven computing primitives (LIF/ALIF)
|
|
9
|
+
2. Predictive Coding Learning - Hierarchical free energy minimization (PCN)
|
|
10
|
+
3. Complementary Memory System - Hippocampal-cortical dual architecture (HDC + CMS)
|
|
11
|
+
4. Global Workspace Consciousness Emergence - Competitive broadcasting (GW)
|
|
12
|
+
|
|
13
|
+
Seven Core Functional Modules:
|
|
14
|
+
1. Spike Encoder - Rate/temporal coding for sensory input
|
|
15
|
+
2. SNN Computing Core - LIF/ALIF neurons with STDP plasticity
|
|
16
|
+
3. Predictive Coding Network (PCN) - Hierarchical prediction and error correction
|
|
17
|
+
4. Hyperdimensional Memory System (HDC) - Episodic and semantic memory
|
|
18
|
+
5. Active Inference Engine - Intrinsic motivation and curiosity-driven exploration
|
|
19
|
+
6. World Model (WM) - Recurrent state space model for planning and imagination
|
|
20
|
+
7. Metacognition & Structural Self-Evolution - Self-awareness and architecture adaptation
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
__version__ = "0.1.0"
|
|
24
|
+
|
|
25
|
+
from skyalyticAI.neurons import LIFNeuron, ALIFNeuron, SNNLayer
|
|
26
|
+
from skyalyticAI.plasticity import STDPSynapse, STDPLayer
|
|
27
|
+
from skyalyticAI.predictive_coding import PCNLayer, PredictiveCodingNetwork
|
|
28
|
+
from skyalyticAI.active_inference import ActiveInferenceAgent
|
|
29
|
+
from skyalyticAI.memory import HDCMemory, ComplementaryMemorySystem, HippocampalStore, CorticalStore
|
|
30
|
+
from skyalyticAI.world_model import WorldModel
|
|
31
|
+
from skyalyticAI.metacognition import MetacognitiveModule
|
|
32
|
+
from skyalyticAI.brain import NIEABrain, BrainScalePresets
|
|
33
|
+
from skyalyticAI.perception import VisualEncoder, AudioEncoder, MultimodalFusion
|
|
34
|
+
from skyalyticAI.env import Environment, GridWorldEnv, HumanGrowthWorld, TextWorldEnv, ExamWorld
|
|
35
|
+
from skyalyticAI.training import NIEATrainer, HumanGrowthTrainer
|
|
36
|
+
from skyalyticAI.language import TextEncoder, LanguageHead
|
|
37
|
+
from skyalyticAI.data.corpus_manager import CorpusManager
|
|
38
|
+
from skyalyticAI.data import Dataset, NIEADataLoader, ExperienceReplayDataset, MultimodalDataset
|
|
39
|
+
from skyalyticAI.gpu import GPUBatchProcessor, is_gpu_available, get_device
|
|
40
|
+
from skyalyticAI.consciousness import GlobalWorkspace
|
|
41
|
+
from skyalyticAI.evolution import StructuralEvolution
|
|
42
|
+
|
|
43
|
+
__all__ = [
|
|
44
|
+
"LIFNeuron",
|
|
45
|
+
"ALIFNeuron",
|
|
46
|
+
"SNNLayer",
|
|
47
|
+
"STDPSynapse",
|
|
48
|
+
"STDPLayer",
|
|
49
|
+
"PCNLayer",
|
|
50
|
+
"PredictiveCodingNetwork",
|
|
51
|
+
"ActiveInferenceAgent",
|
|
52
|
+
"HDCMemory",
|
|
53
|
+
"ComplementaryMemorySystem",
|
|
54
|
+
"HippocampalStore",
|
|
55
|
+
"CorticalStore",
|
|
56
|
+
"WorldModel",
|
|
57
|
+
"MetacognitiveModule",
|
|
58
|
+
"NIEABrain",
|
|
59
|
+
"BrainScalePresets",
|
|
60
|
+
"VisualEncoder",
|
|
61
|
+
"AudioEncoder",
|
|
62
|
+
"MultimodalFusion",
|
|
63
|
+
"Environment",
|
|
64
|
+
"GridWorldEnv",
|
|
65
|
+
"HumanGrowthWorld",
|
|
66
|
+
"TextWorldEnv",
|
|
67
|
+
"ExamWorld",
|
|
68
|
+
"NIEATrainer",
|
|
69
|
+
"HumanGrowthTrainer",
|
|
70
|
+
"TextEncoder",
|
|
71
|
+
"LanguageHead",
|
|
72
|
+
"CorpusManager",
|
|
73
|
+
"Dataset",
|
|
74
|
+
"NIEADataLoader",
|
|
75
|
+
"ExperienceReplayDataset",
|
|
76
|
+
"MultimodalDataset",
|
|
77
|
+
"GPUBatchProcessor",
|
|
78
|
+
"is_gpu_available",
|
|
79
|
+
"get_device",
|
|
80
|
+
"GlobalWorkspace",
|
|
81
|
+
"StructuralEvolution",
|
|
82
|
+
]
|