Tim Sainburg

Results 101 comments of Tim Sainburg

I'm not sure what the cause . of this is, it sounds like the signal package is not properly installed? In any case, iirc the sigalarm is just there as...

Great, let me know if you have any more questions. On Wed, Jan 29, 2020 at 11:04 AM AvisP wrote: > Ok. Thanks for the update. I am using the...

Hi Jose, Thanks for pointing thiis out. I'll have to dig into the code to see where this is happening. Presumably either in inverting the STFT or in the loop...

Could you send me a notebook of the example not working in colab without flattening? / with flattening? Maybe it would be a good idea to add a link to...

Hi @awildfivreld thanks for posting. np.flatten() is taking the 2d audio (2, 200542) dimensional audio and making it 1d (401084,). If the audio is 2D and we want to convert...

Does this happen with all of your data or just some? Could you try to reproduce the issue in a colab notebook?

Hi Vivek, For 1 and 2, that is because this algorithm is designed for stationary noise (relatively constant noise). For 3, you could renormalize after noise reduction. If you set...

That's one way of doing it. Stay tuned... I'm also planning on writing a non-stationary noise reduction version of this, which works well for preliminary results when I get some...

Hm, I just tried to reproduce your error and don't get the same error with just another progress bar in use: https://colab.research.google.com/drive/1J_cu_bmow2j-x6LEnrRfHbaC7UqxoAU9?usp=sharing Maybe it's some interaction between torchaudio and tqdm?...

Yes, I'm trying to figure out where your error is coming from. In noisereduce, I call tqdm here: tqdm(pos_list, disable=self.use_tqdm) So I am suggesting you try adding a tqdm(range(10), disable=True)...