https://twitter.com/92hschoi/status/1593467656379990016
Disentangled self-supervised representations for timbre, language and pitch using contrastive and reconstruction objectives.
DEMAND noise is used for linguistic contrast, CQT cropping is used for pitch. No extra augmentation seems to be used for timbre. Global speaker encoder tokens are turned into time-dependent using cross-attention in the synthesizer.
10k hours of pretraining data on 10x 3090. Beats supervised YourTTS on some tasks.
Disentangled self-supervised representations for timbre, language and pitch using contrastive and reconstruction objectives.
DEMAND noise is used for linguistic contrast, CQT cropping is used for pitch. No extra augmentation seems to be used for timbre. Global speaker encoder tokens are turned into time-dependent using cross-attention in the synthesizer.
10k hours of pretraining data on 10x 3090. Beats supervised YourTTS on some tasks.
❤1
Rotate the phase of each frequency bin to simulate one-to-many mapping. Useful augmentation for GAN vocoder training. Differentiable.
https://mindslab-ai.github.io/phaseaug/
https://mindslab-ai.github.io/phaseaug/
On augmentations for voice conversion:
> On the other hand, the use of more carefully designed augmentation techniques (such as timbre transformation with VoTrans and modifying prosody with NoisyF0) may be helpful in achieving more realistic target speaker identity and better audio quality
https://arxiv.org/abs/2212.13581
> On the other hand, the use of more carefully designed augmentation techniques (such as timbre transformation with VoTrans and modifying prosody with NoisyF0) may be helpful in achieving more realistic target speaker identity and better audio quality
https://arxiv.org/abs/2212.13581
New scaling laws paper for combining different modalities (e.g. speech and text) using Chinchilla style notation.
https://twitter.com/ArmenAgha/status/1613192899646324736
https://twitter.com/ArmenAgha/status/1613192899646324736
I've been thinking about Transformers a lot — I've trained 5 GPT-2 models of different sizes, my first decoder-only Transformers over the past few weeks and trained my first encoder-decoder transformer on Math tasks from DeepMind.
It's magical how much faster these models converge if you care to spend engineering effort to scale them up. Recent advancements with Flash Attention and Triton make them go faster, 8-bit Adam saves memory, FP8 training is around the block.
I found a few training tricks people use in various combinations: gradient clipping, LR warmup + cooldown, model warmup (stochastic depth)
Going to share this important paper that moves Layer Norm to the top of the block (norm_first=True in PyTorch)
https://arxiv.org/abs/2002.04745
It's magical how much faster these models converge if you care to spend engineering effort to scale them up. Recent advancements with Flash Attention and Triton make them go faster, 8-bit Adam saves memory, FP8 training is around the block.
I found a few training tricks people use in various combinations: gradient clipping, LR warmup + cooldown, model warmup (stochastic depth)
Going to share this important paper that moves Layer Norm to the top of the block (norm_first=True in PyTorch)
https://arxiv.org/abs/2002.04745
Sometimes, you can only train once. No time to tune learning rates.
Zero-shot Hyperparameter transfer: https://www.microsoft.com/en-us/research/blog/µtransfer-a-technique-for-hyperparameter-tuning-of-enormous-neural-networks/
Zero-shot Hyperparameter transfer: https://www.microsoft.com/en-us/research/blog/µtransfer-a-technique-for-hyperparameter-tuning-of-enormous-neural-networks/
Microsoft Research
µTransfer: A technique for hyperparameter tuning of enormous neural networks - Microsoft Research
Great scientific achievements cannot be made by trial and error alone. Every launch in the space program is underpinned by centuries of fundamental research in aerodynamics, propulsion, and celestial bodies. In the same way, when it comes to building large…
Geoffrey Hinton tweeted a guide to tuning deep learning models. Definitely reading this one tomorrow:
https://twitter.com/geoffreyhinton/status/1616154554768162818
https://twitter.com/geoffreyhinton/status/1616154554768162818
X (formerly Twitter)
Geoffrey Hinton (@geoffreyhinton) on X
A huge amount of practical experience has been distilled into this great guide to tuning deep learning models.
❤1
S4 ready to prod? Colab with the author of Flash Attention
https://twitter.com/realdanfu/status/1617605971395891201
https://twitter.com/realdanfu/status/1617605971395891201
Twitter
Attention is all you need... but how much of it do you need?
Announcing H3 - a new generative language models that outperforms GPT-Neo-2.7B with only *2* attention layers! Accepted as a *spotlight* at #ICLR2023! 📣 w/ @tri_dao
📜 https://t.co/vKdOTCH8Lk…
Announcing H3 - a new generative language models that outperforms GPT-Neo-2.7B with only *2* attention layers! Accepted as a *spotlight* at #ICLR2023! 📣 w/ @tri_dao
📜 https://t.co/vKdOTCH8Lk…
Bidirectional attention and unidirectional attention in one model can be achieved by changing the attention mask. This is called "Prefix LM"
https://www.semanticscholar.org/paper/Generating-Wikipedia-by-Summarizing-Long-Sequences-Liu-Saleh/7570afa31c68e24fce1342b7d67c591787219bc1
The image is from the T5 paper.
https://www.semanticscholar.org/paper/Generating-Wikipedia-by-Summarizing-Long-Sequences-Liu-Saleh/7570afa31c68e24fce1342b7d67c591787219bc1
The image is from the T5 paper.
https://twitter.com/30SecToMercury/status/1626265029346566145
HMM efficient forward-backward kernel + representation learning method
> However, running dynamic programming in Pytorch is computationally expensive especially for long sequences such as speech.
> This repo provides a C++ kernel of the HMM layer, gradients are computed with batched message passing algorithm (also known as forward-backward).
HMM efficient forward-backward kernel + representation learning method
> However, running dynamic programming in Pytorch is computationally expensive especially for long sequences such as speech.
> This repo provides a C++ kernel of the HMM layer, gradients are computed with batched message passing algorithm (also known as forward-backward).
Twitter
My paper on learning discrete speech representations with neural HMMs was accepted at ICASSP23 🎉
paper:
https://t.co/hhTegkp11U
The hmm layer:
https://t.co/k9BnwC4aD4
paper:
https://t.co/hhTegkp11U
The hmm layer:
https://t.co/k9BnwC4aD4
All you need is a good init, again
1. Model warmup (zipformer) is not only a soft way to speed up training (in contrast to train small, double, continue on medium) IS ALSO a way to mitigate attention rank collapse.
2. Deep attention loses rank very quickly as depth grows — attention can collapse when training large models. Probably hints at an explanation of why my causal -> bidirectional GPT adaptation failed.
https://twitter.com/bobby_he/status/1628388400142204928
1. Model warmup (zipformer) is not only a soft way to speed up training (in contrast to train small, double, continue on medium) IS ALSO a way to mitigate attention rank collapse.
2. Deep attention loses rank very quickly as depth grows — attention can collapse when training large models. Probably hints at an explanation of why my causal -> bidirectional GPT adaptation failed.
https://twitter.com/bobby_he/status/1628388400142204928