Skip to content

Commit 8555549

Browse files
committed
fix lint
1 parent 3047591 commit 8555549

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cosyvoice/llm/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def forward_dpo(
401401
speech_token_combined_emb = self.speech_embedding(speech_token_combined)
402402

403403
# 3. prepare llm_input/target
404-
lm_target, lm_input, lm_input_len = self.prepare_lm_input_target(text_token.repeat(2, 1), text_token_emb.repeat(2, 1, 1), text_token_len.repeat(2), \
404+
lm_target, lm_input, lm_input_len = self.prepare_lm_input_target(text_token.repeat(2, 1), text_token_emb.repeat(2, 1, 1), text_token_len.repeat(2),
405405
speech_token_combined, speech_token_combined_emb, speech_token_combined_len)
406406
lm_target = lm_target.to(device)
407407

0 commit comments

Comments
 (0)