Home
last modified time | relevance | path

Searched refs:bfcc_with_corr (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/libopus/dnn/torch/fwgan/models/
H A Dfwgan500.py237 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 Dfwgan400.py272 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 Dinference.py83bfcc_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…