LLMSanitize: An Open-Source Library for Contamination Detection in NLP and LLM Datasets
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
LLMSanitize is an open-source Python library designed for detecting contamination in NLP datasets and Large Language Models (LLMs). It offers a comprehensive suite of methods, ranging from string matching to model likelihood and embedding similarity, to ensure data integrity. This tool is crucial for researchers and developers working with LLMs to maintain the reliability of their models and evaluations.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
LLMSanitize is an essential open-source Python library dedicated to identifying and mitigating data contamination in Natural Language Processing (NLP) datasets and Large Language Models (LLMs). Data contamination can significantly impact the reliability and trustworthiness of LLM evaluations, making tools like LLMSanitize vital for ensuring robust research and development. The library provides a unified framework to apply various state-of-the-art detection methods.
Installation
LLMSanitize is designed and tested with Python 3.9 and CUDA 11.8. Follow these steps to get started:
First, ensure you have CUDA 11.8 installed. Then, create a conda environment with Python 3.9:
conda create --name llmsanitize python=3.9
Activate your new environment:
conda activate llmsanitize
Finally, install LLMSanitize from PyPI:
pip install llmsanitize
Note that the library specifically uses vllm 0.3.3.
Examples
LLMSanitize supports a wide array of contamination detection methods. For methods requiring vLLM, you first need to launch a vLLM instance.
To launch the vLLM instance, run the following command in a terminal, specifying a port number and model name in the vllm_hosting.sh script:
sh llmsanitize/scripts/vllm_hosting.sh
You can run contamination detection using the provided test scripts. For instance, to run sharded-likelihood on Hellaswag with Llama-2-7B:
sh llmsanitizescripts/tests/closed_data/sharded-likelihood/test_hellaswag.sh -m <path_to_your_llama-2-7b_folder>
For methods using vLLM, such as guided-prompting, pass the port number as an argument:
sh llmsanitizescripts/tests/closed_data/guided-prompting/test_hellaswag.sh -m <path_to_your_llama-2-7b_folder> -p <port_number_from_your_vllm_instance>
Alternatively, you can integrate LLMSanitize directly into your Python scripts:
from llmsanitize import ClosedDataContaminationChecker
args = # setup your argparse here
contamination_checker = ClosedDataContaminationChecker(args)
contamination_checker.run_contamination("guided-prompting") # make sure that your args contain all parameters relevant this specific method
Why Use LLMSanitize?
LLMSanitize offers a robust solution for a critical problem in LLM development. By providing a comprehensive suite of contamination detection methods, it empowers researchers and practitioners to:
- Ensure Data Integrity: Verify the cleanliness of datasets used for training and evaluation.
- Improve Model Reliability: Build more trustworthy LLMs by identifying and addressing contaminated data.
- Support Diverse Methods: Access various detection techniques, including string matching, embedding similarity, model likelihood, and LLM-based approaches, catering to different use cases and model access types.
- Facilitate Research: Serve as a valuable tool for academic and industrial research into LLM data quality and evaluation.
Links
- GitHub Repository: LLMSanitize
- Citation Paper: How Much are LLMs Contaminated? A Comprehensive Survey and the LLMSanitize Library
Related repositories
Similar repositories that may be relevant next.

Tau: A Minimalist Python Coding Agent for Your Terminal
September 8, 2026
Tau is a Python port of Pi's minimalist coding agent, designed to live in your terminal. It allows users to make requests like "explain this repo" or "add tests," and it can read files, edit code, and run commands. Beyond its utility, Tau also serves as a teaching project, demonstrating how coding agents are built with a small, readable codebase.

Awesome Harness Engineering: Building Reliable AI Agent Systems
September 7, 2026
Awesome Harness Engineering is a comprehensive curated list dedicated to the discipline of designing robust AI agent harnesses. It offers a wealth of resources, patterns, and templates essential for building reliable AI agent systems. Developers can explore tools, best practices, and foundational concepts across various critical areas of agent development.
Best of Agent Harnesses: A Curated List for AI Agent Development
September 7, 2026
RyanAlberts' Best of Agent Harnesses is a comprehensive, curated, and ranked list of over 100 AI agent harnesses and orchestration frameworks. It provides valuable insights for building reliable agentic systems, offering both human-readable guides and machine-readable formats for agents themselves. The repository is rescored weekly to ensure up-to-date recommendations.

Wasm Agents Blueprint: Run Python AI Agents in Your Browser with WebAssembly
September 3, 2026
Wasm Agents Blueprint is an innovative project from Mozilla AI that allows you to run Python-based AI agents directly in your web browser using WebAssembly (Wasm) and Pyodide. It bridges the gap between powerful Python AI frameworks, like the OpenAI Agents SDK, and browser-based applications. This blueprint eliminates the need for complex server setups or Docker containers, offering a streamlined way to experience AI agents.
Source repository
Open the original repository on GitHub.
18 counted GitHub visits