Commit e5fcb2b
committed
transformerless_lm: v78 self-reflection + revision (A + B)
v77 showed that measuring momentum alone (passive scaling) isn't
enough -- cycle 3 collapsed despite tracking the drop. True
self-reflection requires acting on the measurement.
A. Three-mode behavior based on momentum sign:
momentum > +0.5 -> exploit: probs ^ phi (sharpen)
momentum in [-0.5, +0.5] -> standard
momentum < -0.5 -> escape: probs ^ (1/phi) (flatten)
B. Backtrack-on-collapse:
Track momentum_history (last F(7)=13 values).
If max-recent minus current > 0.3 AND current < -0.2:
boost newline_mask by phi^2 = 2.618 -- force substrate reset
(sentence-end, fresh state counters next cycle).
A modulates per-token behavior. B handles cliff drops (like v77
cycle 3). Together: momentum acts, not just measures.
Omniweight already self-reflects via internal disagreement
cancellation; momentum + A + B add the action layer.1 parent fb30ae0 commit e5fcb2b
1 file changed
Lines changed: 29 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1422 | 1422 | | |
1423 | 1423 | | |
1424 | 1424 | | |
| 1425 | + | |
1425 | 1426 | | |
1426 | 1427 | | |
1427 | 1428 | | |
| |||
1545 | 1546 | | |
1546 | 1547 | | |
1547 | 1548 | | |
| 1549 | + | |
| 1550 | + | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + | |
| 1558 | + | |
| 1559 | + | |
| 1560 | + | |
| 1561 | + | |
| 1562 | + | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
| 1567 | + | |
| 1568 | + | |
| 1569 | + | |
| 1570 | + | |
| 1571 | + | |
| 1572 | + | |
1548 | 1573 | | |
1549 | 1574 | | |
1550 | 1575 | | |
| |||
1593 | 1618 | | |
1594 | 1619 | | |
1595 | 1620 | | |
| 1621 | + | |
| 1622 | + | |
| 1623 | + | |
| 1624 | + | |
1596 | 1625 | | |
1597 | 1626 | | |
1598 | 1627 | | |
| |||
0 commit comments