Willebaldo Gómez

Results 11 comments of Willebaldo Gómez

What is the exact error you're seeing? I have seen an out-of-memory error before, which I ended up solving by reducing the size of the batch (`bs` parameter in the...

How did you install the repository? I did the following and had no trouble at all: 1. Create virtual environment with `python -m venv venv` 2. Activate virtual environment with...

It seems like this has been fixed in the latest release (`0.0.18`) -- Does it work for you if you update to that version?

Maybe this post can help: https://support.prodi.gy/t/unicodeencodeerror-during-training/955/3. Others have reported a similar encoding issue (https://github.com/huggingface/neuralcoref/issues/5), but perhaps in this case it is a little too deep in the guts for you...

will you let me in?

Even that link is broken these days. I had to Google it and find the file hosted by random people.

I suspect that the issue is probably that the default speech synthesizer (`espeak`) cannot generate proper speech for two languages in a single sentence, so the generated alignment for that...

Here's what ChatGPT suggests: > As of my last update in September 2021, "code-switching," which involves seamlessly switching between two or more languages within a sentence or conversation, is a...

I achieved it using the following: ```python config = TaskConfiguration() config[gc.PPN_TASK_IS_TEXT_FILE_FORMAT] = TextFileFormat.MPLAIN # other configurations... rconf = RuntimeConfiguration() rconf[RuntimeConfiguration.MFCC_MASK_NONSPEECH] = True # L3 represents word granularity rconf[RuntimeConfiguration.MFCC_MASK_NONSPEECH_L3] = True...

The error message is a little misleading: what it should really say is that it can't process *uncompressed* (i.e., `wav`) files larger than 4GB. What happens behind the scenes is...