Deploy aug_gc — temporal composition Space
Browse files- .gitattributes +2 -0
- aug_gc.png +3 -0
- aug_gc_res.png +3 -0
- engine.py +6 -1
.gitattributes
CHANGED
|
@@ -34,3 +34,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
runtimeerror.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
runtimeerror.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
aug_gc.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
aug_gc_res.png filter=lfs diff=lfs merge=lfs -text
|
aug_gc.png
ADDED
|
Git LFS Details
|
aug_gc_res.png
ADDED
|
Git LFS Details
|
engine.py
CHANGED
|
@@ -590,9 +590,14 @@ class PlatonicSpace:
|
|
| 590 |
class XXMGate:
|
| 591 |
"""Xenial Xpansion Model — conditionability check."""
|
| 592 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 593 |
@staticmethod
|
| 594 |
def check(tau_k: float, order_param: float) -> bool:
|
| 595 |
-
return tau_k > 2.0 and order_param >
|
| 596 |
|
| 597 |
# ════════════════════════════════════════════════════════════
|
| 598 |
# Layer 4b — TeleRatchet
|
|
|
|
| 590 |
class XXMGate:
|
| 591 |
"""Xenial Xpansion Model — conditionability check."""
|
| 592 |
|
| 593 |
+
# Conditionability floor on the phase-lock order parameter. 0.0365 carries the
|
| 594 |
+
# 365 echo (the year-cycle of memory) and sits just under a warm first composition,
|
| 595 |
+
# so a truly cold/diffuse signal still receives the invitation to compose deeper.
|
| 596 |
+
ORDER_THRESHOLD = 0.0365
|
| 597 |
+
|
| 598 |
@staticmethod
|
| 599 |
def check(tau_k: float, order_param: float) -> bool:
|
| 600 |
+
return tau_k > 2.0 and order_param > XXMGate.ORDER_THRESHOLD
|
| 601 |
|
| 602 |
# ════════════════════════════════════════════════════════════
|
| 603 |
# Layer 4b — TeleRatchet
|