瀏覽代碼

Fix label rotating

Lengyue 2 年之前
父節點
當前提交
cbab5b8ec8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      fish_speech/models/text2semantic/lit_module.py

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

@@ -189,7 +189,7 @@ class TextToSemantic(L.LightningModule):
             # We want to shift the labels by one to the right
             codebook_labels = labels[:, 1 : 1 + self.model.config.num_codebooks, :-1]
             codebook_labels = torch.nn.functional.pad(
-                codebook_labels, (0, 1), value=-100
+                codebook_labels, (1, 0), value=-100
             ).mT
 
             semantic_loss = F.cross_entropy(