Przeglądaj źródła

Disable neft on eval

Lengyue 2 lat temu
rodzic
commit
415c78a7d4
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      fish_speech/models/text2semantic/llama.py

+ 1 - 1
fish_speech/models/text2semantic/llama.py

@@ -166,7 +166,7 @@ class Transformer(nn.Module):
         x = torch.stack(vocab_embeds, dim=3)
         x = x.sum(dim=3)
 
-        if self.config.neft_alpha > 0:
+        if self.config.neft_alpha > 0 and self.training:
             # alpha / sqrt(L * D)
             scaled_alpha = self.config.neft_alpha / math.sqrt(
                 self.config.dim * x.shape[2]