feat: register hyper paradigms in chimera/__init__.py (v5.3)
Browse files- chimera/__init__.py +13 -2
chimera/__init__.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
-
"""Chimera 5.
|
| 2 |
|
| 3 |
from .config import load_config, scale_config, tiny_config
|
| 4 |
|
| 5 |
-
__version__ = "5.
|
| 6 |
|
| 7 |
__all__ = [
|
| 8 |
"load_config", "scale_config", "tiny_config",
|
|
@@ -14,6 +14,11 @@ __all__ = [
|
|
| 14 |
"SelfEvolutionEngine", "SemanticMemory", "InPlaceTTT",
|
| 15 |
"EpisodicCaseMemory", "MetaGuidelineBank", "SelfFeedback",
|
| 16 |
"LoopDepthClassifier",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
]
|
| 18 |
|
| 19 |
|
|
@@ -37,4 +42,10 @@ def __getattr__(name):
|
|
| 37 |
"LoopDepthClassifier"}:
|
| 38 |
from . import evolution as _evo
|
| 39 |
return getattr(_evo, name)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
raise AttributeError(name)
|
|
|
|
| 1 |
+
"""Chimera 5.3 — CPU-first causal LM with ternary 1.58-bit weights."""
|
| 2 |
|
| 3 |
from .config import load_config, scale_config, tiny_config
|
| 4 |
|
| 5 |
+
__version__ = "5.3.0"
|
| 6 |
|
| 7 |
__all__ = [
|
| 8 |
"load_config", "scale_config", "tiny_config",
|
|
|
|
| 14 |
"SelfEvolutionEngine", "SemanticMemory", "InPlaceTTT",
|
| 15 |
"EpisodicCaseMemory", "MetaGuidelineBank", "SelfFeedback",
|
| 16 |
"LoopDepthClassifier",
|
| 17 |
+
# v5.3 — Hyper paradigms
|
| 18 |
+
"GrowLengthDataset", "GrowLengthScheduler",
|
| 19 |
+
"apply_reservoir_freezing", "SparseMeZOOptimizer",
|
| 20 |
+
"precompute_ternary_cache", "pack_documents",
|
| 21 |
+
"ProgressiveUnfreezer", "cosine_lr",
|
| 22 |
]
|
| 23 |
|
| 24 |
|
|
|
|
| 42 |
"LoopDepthClassifier"}:
|
| 43 |
from . import evolution as _evo
|
| 44 |
return getattr(_evo, name)
|
| 45 |
+
if name in {"GrowLengthDataset", "GrowLengthScheduler",
|
| 46 |
+
"apply_reservoir_freezing", "SparseMeZOOptimizer",
|
| 47 |
+
"precompute_ternary_cache", "pack_documents",
|
| 48 |
+
"ProgressiveUnfreezer", "cosine_lr"}:
|
| 49 |
+
from . import hyper as _hyp
|
| 50 |
+
return getattr(_hyp, name)
|
| 51 |
raise AttributeError(name)
|