179 questions
No questions match those filters.
Why does deduplication matter so much for pre-training...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansDuplicated content in a pre-training corpus does real damage in two ways: the model effectively sees that content many more times than intended, giving it disproportionate influence on what gets learned, and it directly increases the risk of the model memorizing and later regurgitating that specific text verbatim — a real privacy and copyright concern. It’s also just wasted compute, training repeatedly on content that teaches nothing new after the first pass.
The hard part is that exact-match deduplication (hashing whole documents) misses near-duplicates — boilerplate pages with slightly different headers, articles republished with minor edits, scraped mirrors of the same content. Detecting near-duplicates requires similarity comparison, and a naive all-pairs comparison across a trillion-token corpus is computationally impossible. The standard solution is locality-sensitive hashing (commonly MinHash-based): a technique that maps similar documents to the same hash bucket with high probability, letting you find near-duplicate candidates without ever comparing every document to every other document directly.