Alex Gajewski
16 followers · 12 following · 750 views
on the atlas — 14
- [1912.13318] LayoutLM: Pre-training of Text and Layout for Document Image Understanding1 savers
- radford2018improving.pdf1 savers
- Learning Unsupervised Visual Grounding Through Semantic Self-Supervision1 savers
- [2009.01719] Grounded Language Learning Fast and Slow1 savers
- [2011.04006] Long Range Arena: A Benchmark for Efficient Transformers1 savers
- [2101.03961] Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity1 savers
- [2005.11401] Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks4 savers
- [2103.06326] S4RL: Surprisingly Simple Self-Supervision for Offline Reinforcement Learning2 savers
- OpenAI API2 savers
- [2002.08909] REALM: Retrieval-Augmented Language Model Pre-Training1 savers
- CS 6120: The Self-Guided Course5 savers
- 1. Finance, Growth, and Volatility1 savers
- 1. Introduction and What this Course Will Do for You and Your Purposes1 savers
- Keyboard Lessons Online - Cory-Henry1 savers
highlights — 21
concept learning as a proxy task to obtain self-supervision
Learning Unsupervised Visual Grounding Through Semantic Self-SupervisionEach Wikipedia article is split into disjoint 100-word chunks, to make a total of 21M documents.
[2005.11401] Retrieval-Augmented Generation for Knowledge-Intensive NLP Taskskeep the document encoder (and index) fixed, only fine-tuning the query encoder BERT q and the BART generator.
[2005.11401] Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasksquery's probability (what is used to create the score) is conditioned on the document's probability
OpenAI APIwarm- start it with BERT pre-training
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Traininghis results in one index refresh per ap- proximately 500 training steps. To demonstrate the impor- tance of frequent index refreshes, we compare against using a slower refresh rate.
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-TrainingREALM outperforms the largest T5-11B model while being 30 times smaller.
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Training200k steps on 64 Google Cloud TPUs, with a batch size of 512
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingcan be run on a single machine with a 12GB GPU
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-TrainingDocuments are greedily split into chunks of up to 288 BERT wordpieces, resulting in just over 13 million retrieval candidates
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-TrainingThe NaturalQuestions dataset ( Kwiatkowski et al. , 2019 ) consists of naturally occurring Google queries and their answers.
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingcold-start problem, we warm-start Embed input and Embed doc using a simple training objective known as the Inverse Cloze Task (ICT) where, given a sentence, the model is trained to retrieve the document where that sen- tence came from
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingtrivial retrieval candidate z that is too informative: if the masked sentence x comes from document z ,
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingignificantly outperforms other masking strategies
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingwe mask salient spans such as “ United Kingdom ” or “ July 1969 ”
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingasynchronous MIPS refreshes
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingonly used to select the top k documents. We recompute p ( z | x ) and its gradient, using the fresh θ , for these top k documents after retriev- ing them.
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-TrainingThus, we can employ Maximum Inner Prod- uct Search (MIPS) algorithms to find the approximate top k documents, using running time and storage space that scale sub-linearly with the number of documents ( Ram & Gray , 2012 ; Shrivastava & Li , 2014 ; Shen et al. , 2015 ).
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-TrainingWe approximate this by instead summing over the top k documents with highest probability under p ( z | x ) —this is reasonable if most documents have near zero probability.
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Trainingp ( y j | z, x ) ∝ exp ( w ⊤ j BERT MASK ( j ) ( join BERT ( x, z body )) )
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-TrainingGiven an input x , we first retrieve possibly helpful documents z from a knowledge corpus Z .
[2002.08909] REALM: Retrieval-Augmented Language Model Pre-Training