Home

Git 操作

Git修改远程仓库地址: git remote set-url origin xxx 已存在仓库,拉取指定分支到本地,有可能出错,建议先fetch一下: git fetch origin git checkout -b dev origin/dev 拉取所有分支: git clone xxx git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all 删除分支: git push origin --delete xxx # 删除远程分支 git br...

Read more

优化Nvidia/Tacotron2

由于Nvidia版本的Tacotron2实在是比较差,不支持redcution tactor>2,不支持multi_speaker,LSA不够robust… 因此非常有必要构建一个自己用的顺手的Tacotron版本,以方便后面的工作,关于GMM Attention的实现见Attentions-in-Tacotron 本工作将借鉴很多现有的TTS复现工作 r9y9/tacotron_pytorch NVIDIA/tacotron2 CorentinJ/Real-Time-Voice-Cloning Tacotron1 Tacotron1中,Attention_RNN的实现是torch.nn.GRUCell(input, hidden) 这里input是[mel, ...

Read more

最近工作事项

最近主要有两个需要尽快完成的事情(也是自己拖的太久了😭), 包括 多说话人的Prosody Transfer和Neural Voice Puppetry论文的理解。

Read more

Speech Synthesis Related Papers

本文用以记录语音合成 (Speech Synthesis) 领域相关论文,包括经典的和未来的方向。 Acoustic model Tacotron1: Tacotron: Towards End-to-End Speech Synthesis (Interspeech 2017) Tacotron2: Natural TTS Synthesis by Conditioning WaveNet on Mel Spectrogram Predictions (ICASSP 2018) FastSpeech1: FastSpeech: Fast, Robust and Controllable Text to Speech (NIPS 2019) FastSpeech2...

Read more