Skip to content

Commit b549d26

Browse files
committed
Fix merge issues
1 parent 9c4a9de commit b549d26

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

nemo/collections/speechlm2/data/duplex_ear_tts_dataset.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,10 +288,6 @@ def __getitem__(self, cuts: CutSet) -> dict:
288288
source_audio = F.pad(source_audio, (0, extra_frames))
289289
source_audio_lens = source_audio_lens + extra_frames
290290

291-
<<<<<<< HEAD
292-
=======
293-
# Add audio and text prompts
294-
>>>>>>> e5cc7fb09 (Fix code scanning issues)
295291
text_pad_id = get_pad_id(self.tokenizer)
296292
input_text_tokens_ = []
297293
source_tokens_ = []

nemo/collections/speechlm2/modules/rvq_ear_tts_vae.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from collections.abc import Callable
1818
from contextlib import contextmanager
1919
from dataclasses import dataclass, field
20-
from typing import Any, Concatenate, Literal, overload
20+
from typing import Any, Concatenate
2121

2222
# Third-party
2323
import torch

0 commit comments

Comments
 (0)