Arbaz Ahmad

Results 6 comments of Arbaz Ahmad

Ensure that the file path does not contain any illegal characters. Windows file paths can have issues with characters like `:"/\|?*` and the directory `D:\Private\AIVC\RVC-beta/logs/zundamon/` exists. If not, create it...

There is a mismatch between the arguments provided to the `librosa.core.load` function and what the function expects. This is likely due to an update in the `librosa` library that has...

Use noise reduction techniques to remove artifacts. ``` import noisereduce as nr y, sr = librosa.load('your_audio_file.wav', sr=None) # Load your audio file y_reduced = nr.reduce_noise(y=y, sr=sr) # Apply noise reduction...

Add more examples of click consonants in your dataset and modify the tokenizer to treat click consonants as distinct units.

hi, please try the following steps: 1. use a virtual environment. this helps avoid conflicts with system-wide packages: ``` python3 -m venv env source env/bin/activate ``` 2. if the above...

The traceback indicates an issue with file operations, particularly related to directory paths and file lists. The error appears to occur here: `& set([name.split(".")[0] for name in os.listdir(f0_dir)])`