File size: 504 Bytes
			
			| ad16788 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import torch
from espnet2.enh.encoder.abs_encoder import AbsEncoder
class NullEncoder(AbsEncoder):
    """Null encoder. """
    def __init__(self):
        super().__init__()
    @property
    def output_dim(self) -> int:
        return 1
    def forward(self, input: torch.Tensor, ilens: torch.Tensor):
        """Forward.
        Args:
            input (torch.Tensor): mixed speech [Batch, sample]
            ilens (torch.Tensor): input lengths [Batch]
        """
        return input, ilens
 | 
