paper-with-me

Papers

LSHBloom: Memory-efficient, Extreme-scale Document Deduplication

2024-11-06 · Arham Khan, Robert Underwood, Carlo Siebenschuh, Yadu Babuji, Aswathy Ajith, Kyle Hippe, Ozan Gokdemir, Alexander Brace, Kyle Chard, Ian Foster

Deduplication is a major focus for assembling and curating training datasets for large language models (LLM) -- detecting and eliminating additional instances of the same content -- in large collections of technical documents. Unrestrained, duplicates in the training dataset increase training costs and lead to undesirable properties such as memorization in trained models or cheating on evaluation. Contemporary approaches to document-level deduplication are often extremely expensive in both runtime and memory. We propose LSHBloom, an extension to MinhashLSH, which replaces the expensive LSHIndex with lightweight Bloom filters. LSHBloom demonstrates the same deduplication performance as MinhashLSH with only a marginal increase in false positives (as low as 1e-5 in our experiments); demonstrates competitive runtime (270\% faster than MinhashLSH on peS2o); and, crucially, uses just 0.6\% of the disk space required by MinhashLSH to deduplicate peS2o. We demonstrate that this space advantage scales with increased dataset size -- at the extreme scale of several billion documents, LSHBloom promises a 250\% speedup and a 54$\times$ space advantage over traditional MinHashLSH scaling deduplication of text datasets to many billions of documents.

📄 PDF Abstract BibTeX arXiv:2411.04257

Code (0)

등록된 구현이 없습니다.

Tasks

Memorization

Methods 이 논문이 사용한 방법론

BLOOM BLOOM is a decoder-only Transformer language model that was trained on the ROOTS corpus, a dataset comprising hundreds of sources in 46 natural and 13 programming languages…
Focus 설명 없음

Similar Papers 제목 키워드 기반

Deduplication of Scholarly Documents using Locality Sensitive Hashing and Word Embeddings

2020-05-01 · LREC 2020 5 · Bikash Gyawali, Lucas Anastasiou, Petr Knoth

Deduplication is the task of identifying near and exact duplicate data items in a collection. In this paper, we present a novel method for deduplication of scholarly documents. We develop a hybrid model which uses struct…

Word Embeddings

Scalable Frequency- and Length-Aware Subdocument Deduplication for Large Language Model Pretraining

2026-08-04 · Hai Wang, Chenhao Wang, Qifeng Cai, Yixiu Liu 외 arxiv

Large-scale pretraining corpora contain substantial duplicate content. Although document-level deduplication is widely used, removing subdocument-level redundancy remains challenging. At corpus scale, suffix-array-based …

SemHash-LLM: A Multi-Granularity Semantic Hashing Framework for Document Deduplication

2026-07-02 · Xinyi Fang, Kejian Tong, Jiabei Liu, Tao Ning 외 arxiv

Large scale document deduplication must preserve semantic equivalence while remaining efficient over massive corpora. We present SemHash LLM, a multi granularity framework that unifies semantic projection hashing, attent…

FED: Fast and Efficient Dataset Deduplication Framework with GPU Acceleration

2025-01-02 · YoungJun Son, Chaewon Kim, Jaejin Lee

Dataset deduplication plays a crucial role in enhancing data quality, ultimately improving training performance and efficiency of LLMs. A commonly used method for data deduplication is the MinHash LSH algorithm. Recently…

CPUGPU

Oasis: Data Curation and Assessment System for Pretraining of Large Language Models

2023-11-21 · Tong Zhou, Yubo Chen, Pengfei Cao, Kang Liu 외

Data is one of the most critical elements in building a large language model. However, existing systems either fail to customize a corpus curation pipeline or neglect to leverage comprehensive corpus assessment for itera…

Language ModelingLanguage ModellingLarge Language Model