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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user