HoneyTian commited on
Commit
5344390
·
1 Parent(s): 32b6496
toolbox/torchaudio/models/dfnet/modeling_dfnet.py CHANGED
@@ -789,6 +789,7 @@ class DfNet(nn.Module):
789
  def __init__(self, config: DfNetConfig):
790
  super(DfNet, self).__init__()
791
  self.config = config
 
792
 
793
  self.freq_bins = self.config.nfft // 2 + 1
794
 
 
789
  def __init__(self, config: DfNetConfig):
790
  super(DfNet, self).__init__()
791
  self.config = config
792
+ self.eps = 1e-8
793
 
794
  self.freq_bins = self.config.nfft // 2 + 1
795