augerd commited on
Commit
ee600ee
·
verified ·
1 Parent(s): 9e9aed2

Deploy aug_gc — temporal composition Space

Browse files
Files changed (4) hide show
  1. .gitattributes +2 -0
  2. aug_gc.png +3 -0
  3. aug_gc_res.png +3 -0
  4. 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

  • SHA256: 789aa82163ee1667ce550b312d7c3dbbe05ec3b602e894aecc6666fc99f70df5
  • Pointer size: 131 Bytes
  • Size of remote file: 213 kB
aug_gc_res.png ADDED

Git LFS Details

  • SHA256: 0c933b350c2bf94179631b59c688d98abb94fdb0d2a384df90105d9b683bac05
  • Pointer size: 131 Bytes
  • Size of remote file: 340 kB
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 > 0.05
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