diff --git a/egs/fluent_speech_commands/SLU/transducer/decode.py b/egs/fluent_speech_commands/SLU/transducer/decode.py index 4f3d205c2..fb039e76d 100755 --- a/egs/fluent_speech_commands/SLU/transducer/decode.py +++ b/egs/fluent_speech_commands/SLU/transducer/decode.py @@ -22,7 +22,7 @@ from typing import List, Tuple import torch import torch.nn as nn -from transducer.asr_datamodule import SluDataModule +from transducer.slu_datamodule import SluDataModule from transducer.beam_search import greedy_search from transducer.decoder import Decoder from transducer.encoder import Tdnn diff --git a/egs/fluent_speech_commands/SLU/transducer/asr_datamodule.py b/egs/fluent_speech_commands/SLU/transducer/slu_datamodule.py similarity index 100% rename from egs/fluent_speech_commands/SLU/transducer/asr_datamodule.py rename to egs/fluent_speech_commands/SLU/transducer/slu_datamodule.py diff --git a/egs/fluent_speech_commands/SLU/transducer/train.py b/egs/fluent_speech_commands/SLU/transducer/train.py index 891119cb9..4f69573cc 100755 --- a/egs/fluent_speech_commands/SLU/transducer/train.py +++ b/egs/fluent_speech_commands/SLU/transducer/train.py @@ -26,7 +26,7 @@ import torch import torch.multiprocessing as mp import torch.nn as nn import torch.optim as optim -from asr_datamodule import SluDataModule +from slu_datamodule import SluDataModule from lhotse.utils import fix_random_seed from torch import Tensor from torch.nn.parallel import DistributedDataParallel as DDP