Harry00 commited on
Commit
0336663
·
verified ·
1 Parent(s): 363e04a

Upload mle/__init__.py

Browse files
Files changed (1) hide show
  1. mle/__init__.py +24 -0
mle/__init__.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Morpho-Logic Engine (MLE) - Adaptive Learning System
3
+
4
+ A high-dimensional sparse distributed memory system with energy-based dynamics,
5
+ optimized for CPU performance with bit-slicing SIMD operations.
6
+ """
7
+
8
+ from .memory import SparseAddressTable, VECTOR_SIZE
9
+ from .routing import HammingRouter
10
+ from .binding import CircularBinder
11
+ from .energy import EnergyLandscape
12
+ from .inference import InferenceEngine, InferenceResult
13
+ from .mle_system import MLESystem
14
+
15
+ __all__ = [
16
+ 'SparseAddressTable',
17
+ 'HammingRouter',
18
+ 'CircularBinder',
19
+ 'EnergyLandscape',
20
+ 'InferenceEngine',
21
+ 'InferenceResult',
22
+ 'MLESystem',
23
+ 'VECTOR_SIZE',
24
+ ]