Kaushal Kumar Agarwal

Results 6 comments of Kaushal Kumar Agarwal

@Zenahr Actually I want to keep my resume.pdf file in the server itself. Is it a good practice to keep it inside server? In which directory shall I keep it?...

@Zenahr Thanks man! Just for the update: export​ ​const​ ​aboutData​ ​=​ ​{​ // ... ​resume​: ​'./images/yourPDF.pdf'​,​ ​// if no resume, the button will not show up​ ​}​; This doesn't work...

Do you need implementation of BIT?

> Just tried it out on my M2(CPU), took about a minute but it works! Hey, Can you please help me. I'm trying without installing xformers and q=q.half(), it's getting...

INFO:__main__:RuntimeError: Error(s) in loading state_dict for CascadedNet: INFO:__main__:size mismatch for stg1_low_band_net.0.enc1.conv.0.weight: copying a param with shape torch.Size([16, 2, 3, 3]) from checkpoint, the shape in current model is torch.Size([16, 4,...

Try this: ``` def restore_audio(model, input_path, output_path, steps=16, cfg_strength=0.5): waveform, _ = torchaudio.load(input_path) waveform = waveform.mean(dim=0, keepdim=True) if waveform.dim() > 1 else waveform # Convert to mono if stereo with...