Aidan Pine

Results 24 issues of Aidan Pine

When testing log outputs I sometimes use io and contextlib.redirect_stderr in the following way: ```python import io from contextlib import redirect_stderr log_output = io.StringIO() with redirect_stderr(log_output): cause_some_horrible_error() ``` Up until...

Hi there, I appear to be getting some strange indenting errors. When I copy the quickstart `.gel` file and text and run the provided command, I get the error `Exception:...

me again 😄 When setting the hop length - your 16kHz spectrogram has a hop length of 256 and a window of (4*hop_length) 1024. Since you are tripling the sampling...

Hi there, I have a Pydantic class that inherits another Pydantic class that allows for [custom handling of function serialization](https://docs.pydantic.dev/usage/exporting_models/#json_encoders): ```python class ConfigModel(BaseModel): class Config: extra = Extra.forbid use_enum_values =...

bug
help wanted

## Describe the bug I have a JSON schema generated by Pydantic has descriptions of certain fields. When I create a json file and validate it with the schema, the...

Related to **Model/Framework(s)** SpeechSynthesis/FastPitch **Describe the bug** [There is a convolutional layer `attn_proj` that is declared, but unused anywhere](https://github.com/NVIDIA/DeepLearningExamples/blob/54e2fb4853ac0c393335f5187bd3b9aff4bbd765/PyTorch/SpeechSynthesis/FastPitch/fastpitch/attention.py#LL93C9-L93C75) which results in unused parameters in the model. I don't see...

bug

Thanks for your work on this! When I try and play the reference audio in a MUSHRA test, nothing happens. Inspecting the button, it doesn't appear to do anything either...

### 🐛 Describe the bug Running the following: ```python import torchaudio from pathlib import Path test_audio_path = Path('test.wav') torchaudio.load(test_audio_path) ``` Produces the following error: ``` Traceback (most recent call last):...

I expected toggles for `v2.0.0` and `stable` as well as `latest`

bug