rung-2 pilot: loop-only entrance-faded band LoRA, warm-start, inline eval; BW hard-only fallback

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Nils
2026-07-14 11:00:42 +02:00
co-authored by Claude Fable 5
parent 507c170744
commit 8fe8e34b47
3 changed files with 235 additions and 1 deletions
+8 -1
View File
@@ -132,7 +132,14 @@ class BandLooper:
return h
def band(self, h, calls):
return self._run(h, calls, self.l0, self.l1)
try:
from lora_band import loop_active
loop_active(True)
out = self._run(h, calls, self.l0, self.l1)
loop_active(False)
return out
except ImportError:
return self._run(h, calls, self.l0, self.l1)
def suffix_logits(self, h, calls, last_only=False):
h = self._run(h, calls, self.l1 + 1, self.n_layers - 1)