Natural Language Processing: The Age of Transformers
blog.scaleway.com
Natural Language Processing: The Age of Transformers
1–10 of 26 posts
Re: Natural Language Processing: The Age of Transformers
#2Recent work by Jakob and team:https://ai.google/research/people/author37567/
Image transformer is particularly interesting
Re: Natural Language Processing: The Age of Transformers
#3Re: Natural Language Processing: The Age of Transformers
#4Previous discussion on “Attention is all you need”: https://news.ycombinator.com/item?id=15938082 Recent work by Jakob and team: https://ai.google/research/people/author37567/ Image transformer is particularly interesting
Re: Natural Language Processing: The Age of Transformers
#5Previous discussion on “Attention is all you need”: https://news.ycombinator.com/item?id=15938082 Recent work by Jakob and team: https://ai.google/research/people/author37567/ Image transformer is particularly interesting
Also, recent discussion about a very good intro article about Transformers: https://news.ycombinator.com/item?id=20773992
Re: Natural Language Processing: The Age of Transformers
#6My take away - pretraining achieves excellent paper results but robust application is hard. There is still quite a way to go down this road for fault intolerant users and applications.
Re: Natural Language Processing: The Age of Transformers
#7If anyone wants to use these tools practically I urge you to have a good look at this paper : https://www.aclweb.org/anthology/P19-1439/ My take away - pretraining achieves excellent paper results but robust application is hard. There is still quite a way to go down this road for fault intolerant users and applications.
Re: Natural Language Processing: The Age of Transformers
#8XLNet (https://arxiv.org/abs/1906.08237) is in essence a recurrent neural network, using a transformer (which is based on neural networks) which recurrently keeps context between different batches. But the gated RNN's, such as AWD-LSTM/GRU, are fading out to the superior transformer architectures, this is true.
That's my only complain though, excellent theoretical introduction.
Although, if anyone wanted to actually implement a transformer, be ware that you want to have a 8+ GB GPU unit available, or be prepared to use cloud computing (Google Colab is free, for now). Training neural networks is quite hardware dependent still.
Re: Natural Language Processing: The Age of Transformers
#9>Next we shall take a moment to remember the fallen heros, without whom we would not be where we are today. I am, of course, referring to the RNNs - Recurrent Neural Networks, a concept that became almost synonymous with NLP in the deep learning field. XLNet ( https://arxiv.org/abs/1906.08237 ) is in essence a recurrent neural network, using a transformer (which is based on neural networks) which recurrently keeps co…
Re: Natural Language Processing: The Age of Transformers
#10If anyone's interested in further experiments on their own. There is now a unified Python framework for dialogue models ;)