DanTremonti

Results 4 issues of DanTremonti

### Describe the bug In PyTorch Lightning Versions >= 1.6.0, the neptune logger does not work as expected while the logging mode is set to `offline`. ![Screenshot from 2022-05-09 13-07-04](https://user-images.githubusercontent.com/58321625/167362485-0ac7faff-6a1c-4f97-be2b-8798d68f47b6.png)...

bug

### 🐛 Describe the bug Both `torchaudio.functional.pitch_shift` and `torchaudio.transforms.PitchShift` occupy excessive amount of GPU memory, which is not cleared, while working fine on CPU. #### ISSUE 1 The following piece...

Given that `torchaudio.functional.apply_codec` currently only supports "cpu" device [ref](https://pytorch.org/audio/main/generated/torchaudio.functional.apply_codec.html), `apply_codec` effect may need moving the waveform to "cpu" [The below line](https://github.com/descriptinc/audiotools/blob/master/audiotools/core/effects.py#L303) of `time_stretch` effect ```py waveform = self._to_2d().cpu() ``` moves...

### 🐛 Describe the bug The following line in the functional method `loudness` results in `nan` value when the entire waveform is below the hardcoded loudness threshold value `gamma_abs =...