Searched refs:bfcc_with_corr (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/libopus/dnn/torch/fwgan/models/ |
H A D | fwgan500.py | 237 def forward(self, pitch_period, bfcc_with_corr, x0): argument 241 envelope = self.bfcc_with_corr_upsampler(bfcc_with_corr.permute(0,2,1).contiguous()) 258 waveform = self.gain_multiply(waveform_unscaled,bfcc_with_corr[:,:,:1])
|
H A D | fwgan400.py | 272 def forward(self, pitch_period, bfcc_with_corr, x0): argument 280 envelope = self.bfcc_with_corr_upsampler(bfcc_with_corr.permute(0,2,1).contiguous()) 306 waveform = self.gain_multiply(waveform,bfcc_with_corr[:,:,:1])
|
/aosp_15_r20/external/libopus/dnn/torch/fwgan/ |
H A D | inference.py | 83 …bfcc_with_corr = torch.from_numpy(np.hstack((bfcc, corr))).type(torch.FloatTensor).unsqueeze(0)#.… 91 …x1 = generator(period, bfcc_with_corr, torch.zeros(1,320)) #this means the vocoder runs in complet…
|