serg06

Results 19 issues of serg06

- In `yarn.lock`, no package has typescript as a dependency - In `package.json` it's under `devDependencies` - In `serverless.yml` I have `excludeDevDependencies: true` Yet for some reason when I run...

question

Is there a reason that validation loss isn't implemented for tacotron? I'm implementing it myself right now, and it has me wondering: Maybe you had a good reason for not...

The code is overriding `len` right now

Occasionally when training tacotron (`train_tacotron.py`), CUDA throws an error and kills the training. ``` | Epoch: 167/1630 (15/45) | Loss: 0.3459 | 1.1 steps/s | Step: 284k | Traceback (most...

The WaveRNN vocoder is too slow for me (I'm running it on the CPU), so I want to hook up a different vocoder to the Tacotron for inferences. [MelGAN](https://github.com/seungwonpark/melgan) and...

### System - Windows 10 x64 - RTX 3080 - PyTorch 1.7.0 - CUDA 11.0 - cuDNN 8.0.4 ### Problem When I try to run `python train_wavernn.py`, it does a...

This is a fix for this version of librosa accidentally installing a version of numba that is too new (numba==0.51.2) and breaking. https://github.com/librosa/librosa/issues/1160

Command: ```bash espeak-ng -v ar -q -b 1 --ipa=0 "مرحبا هناك ، اسمي كزة." ``` Output on Linux (v1.50): ``` mrħbˈaː hˈunaːkˌa ˈismiːj kzt ``` Output on Windows (v1.52-dev): ```...

### Brief overview I tried to build EasyHttp on Windows using the [wiki guide](https://github.com/sony/easyhttpcpp/wiki/Installing-EasyHttp). It worked for EasyHttp 1.0.0, but not for 2.0.0 or 2.1.0. First I was getting this...

I used the Tacotron2 -> ONNX export script: [PyTorch/SpeechSynthesis/Tacotron2/exports/export_tacotron2_onnx.py](https://github.com/NVIDIA/DeepLearningExamples/blob/master/PyTorch/SpeechSynthesis/Tacotron2/exports/export_tacotron2_onnx.py) But it produced 3 separate files: ``` encoder.onnx decoder_iter.onnx postnet.onnx ``` How do we actually use these models with an onnx...