Files
auto-antislop/README.md
sam-paech af04bf4d74 cleanup
2025-10-25 14:45:21 +11:00

346 lines
21 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Auto-Antislop
Auto-Antislop is an automated pipeline which takes a model and does the following:
1. Generates a baseline dataset on a set of prompts that you specify
2. Identifies the model's slop (over-represented words, phrases & n-grams)
3. Using [antislop-vllm](https://github.com/sam-paech/antislop-vllm) generates a preference dataset for fine-tuning
4. Fine tunes the model on the generated preference dataset using a novel trainer (FTPO: final token preference optimisation)
Paper: [https://arxiv.org/abs/2510.15061](https://arxiv.org/abs/2510.15061)
<strong>Table of Contents</strong>
- [Quickstart](#-quickstart)
- [Installation](#-installation)
- [Configuration](#-configuration)
- [Usage](#-usage)
- [How It Works (Pipeline Flow)](#-how-it-works-pipeline-flow)
- [FTPO Explained](#-ftpo-explained)
- [Output Structure](#-output-structure)
- [Post-Finetuning: Testing the Model](#-post-finetuning-testing-the-model)
- [Submodules](#-submodules)
- [Notes & Troubleshooting](#-notes--troubleshooting)
- [Citation](#-citation)
## Quickstart
```bash
# creates a venv, installs auto-antislop and runs an end-to-end unslop of gemma-3-4b-it
git clone https://github.com/sam-paech/auto-antislop.git --recurse
conda create -n antislop python=3.11 -y
conda activate antislop
cd auto-antislop
pip install "torch==2.8.*"
pip install -r requirements.txt
pip install vllm
python main.py -c configs/gemma-3-4b-it.yaml
```
## Installation
1. **Prerequisites:**
* Python 3.9+
* NVIDIA GPU with CUDA installed (for vLLM and finetuning).
* Git.
2. **Clone the Repository (with submodules):**
```bash
git clone --recurse-submodules https://github.com/your-username/auto-antislop.git
cd auto-antislop
```
If you've already cloned without submodules, run:
```bash
git submodule update --init --recursive
```
3. **Install Dependencies:**
*Preferably do this in a venv! Unsloth likes to install its own required dep versions, including torch.*
```bash
pip install -r requirements.txt
```
* **Note on vLLM & Torch:** `vllm` and `torch` are listed in `requirements.txt` but commented out. It's often best to install versions compatible with your specific CUDA setup.
* If you plan to use the `--manage-vllm` feature, install `vllm` (e.g., `pip install vllm`).
* Ensure PyTorch is installed with CUDA support (see [pytorch.org](https://pytorch.org/)).
4. **NLTK Data:**
The script will attempt to download necessary NLTK resources (`punkt`, `punkt_tab`, `stopwords`) on first run. If this fails due to network issues, you might need to download them manually:
```python
import nltk
nltk.download('punkt')
nltk.download('punkt_tab') # For NLTK 3.9+
nltk.download('stopwords')
```
5. **Troubleshooting:**
If you are getting import errors during the training step (after installing the dependencies in requirements.txt), one thing to try is building flash-attn from source. The current prebuilt wheels (flash-attn==2.8.0.post2) installed by pip are non-functional with torch 2.7. Install it from source like:
```
pip uninstall -y flash-attn
pip install -U wheel ninja packaging cmake
MAX_JOBS=12 pip install git+https://github.com/Dao-AILab/flash-attention.git@v2.8.0.post2#egg=flash_attn --no-build-isolation
```
## Configuration
The primary configuration is done through a YAML file. Refer to the examples provided in `configs/`.
While the pipeline is ostensibly automatic end to end, there are a lot of options you can tweak in the config file, some of which are important for a successful result. Let's walk through some of them:
#### VLLM & Antislop Generation Parameters
* **`model_id`**: The model you want to unslop. Can be a huggingface id or a local dir.
* **`vllm management`:**: The pipeline can launch vllm automatically with the settings you provide; alternatively you can provide an openai compatible endpoint.
* **`generation_threads`:** How many parallel threads to generate with (set according to your system specs; if in doubt try 30).
* **`generation_max_prompts`:** The number of prompts to generate a response for. Set to 50 for a quick test. Recommmended is 1000-2000 for good coverage.
* **`generation_hf_dataset_name`:** The huggingface dataset used to source prompts (expects sharegpt format). The kinds of prompts you use determines the slop that will be removed from the model in fine tuning.
* **`extra_slop_phrases_to_ban`:** Set your own slop list to ban. The strings you add here will be trained out of the model.
#### Fine-Tuning Parameters
* **`finetune_use_unsloth`:** Supports unsloth or transformers/trl. Unsloth has lower vram usage but it doesn't work with all modesl in this pipeline.
* **`finetune_mode`:** Set to "ftpo", "dpo" or "dpo_final_token". FTPO is our trainer implemented specifically for the preference dataset we generate in this pipeline. It's more gentle in training out slop without causing model degradation, compared to DPO.
* **`finetune_early_stopping_wins`:** This stops training when "chosen" tokens are preferred more than "rejected" tokens by this fraction. Early stopping is important to avoid overtraining. We find a good number is 0.8-0.9. Some models will degrade more easily than others, in which case you can try a lower stopping threshold.
* **`finetune_lora_r`:** FTPO works best with a high lora rank (128-256), which may be higher than is commonly used. We find these high ranks allow for better accuracy with less degradation.
* **`finetune_target_modules`:** The modules we target in fine tuning seems to be model dependent in terms of what works best. Check out the training recipes in `configs/` for working examples, or try just `["lm_head"]` for a minimally invasive fine-tune.
* **`finetune_freeze_early_layers`:** Set "true" to freeze all layers during training except the last n. This keeps model behaviour close to reference and avoids degradation.
* **`finetune_n_layers_unfrozen`:** The number of late layers unfrozen during training (default 5).
* **`finetune_learning_rate`:** Set the learning rate manually.
* **`finetune_auto_learning_rate`:** Set "true" to use an automatic learning rate that adjusts to dataset size, batch size & lora rank. Adjustable via `finetune_auto_learning_rate_adjustment_scaling`.
* **`finetune_max_train_examples`:** The number of training examples. Suggest 8000-12000.
#### FTPO Parameters
These params control the final token preference optimisation trainer. The defaults are probably fine for a first pass. See below for a breakdown of FTPO and the configurable parameters.
## Usage
### Quickstart:
Once your .yaml is set up:
```
python main.py --config myconfig.yaml
```
### Commandline Args
**Key Command-Line Arguments (override config settings):**
* `--config-file`: Path to the main YAML configuration file (default: `auto_antislop_config.yaml`).
* `--resume-from-dir`: Path to an existing experiment run directory to resume.
* `--log-level`: Set logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL).
* `--manage-vllm [true/false]`: Override vLLM management.
* `--vllm-port <port>`: Override vLLM port.
* `--vllm-model-id <model_id>`: Override vLLM model.
* `--num-iterations <N>`: Override number of iterations.
* `--generation-max-prompts <N>`: Override max prompts for generation.
* `--run-finetune [true/false]`: Override finetuning step.
* `--finetune-base-model-id <model_id>`: Override base model for DPO.
* `--finetune-mode [dpo/ftpo]`: Override finetuning mode.
* `--finetune-cuda-visible-devices "0,1"`: Set specific GPUs for finetuning.
**Resuming Runs:**
If the pipeline is interrupted, you can resume it by providing the path to the experiment directory:
```bash
python main.py --config-file path/to/your_config.yaml --resume-from-dir results/auto_antislop_runs/run_YYYYMMDD_HHMMSS
```
The script will attempt to pick up from the last successfully completed part of the iteration. Generation for an iteration is considered complete if the output JSONL file exists and contains the expected number of `prompt_id`s.
## How It Works (Pipeline Flow)
1. **vLLM Server Management:** If `manage_vllm` is true, the script starts a vLLM server. If a server is already running on the configured port, or if `manage_vllm` is false, the script assumes an external vLLM server.
2. **Antislop Iteration Loop (`num_iterations` times):**
* **Generation (Iter 0 - Baseline):**
* The `antislop-vllm` script generates text from a source dataset (e.g., writing prompts) *without* any ban lists active. This forms the baseline dataset.
* **Analysis (All Iterations):**
* The generated text is analyzed using tools from `slop-forensics` and custom analysis scripts:
* N-gram frequencies are compared against a human writing profile.
* Over-represented words are identified.
* Common "slop phrases" are extracted.
* **Ban List Update (All Iterations):**
* Based on the analysis, n-gram and slop phrase ban lists are created or updated. User-supplied `extra_ngrams_to_ban`, `extra_slop_phrases_to_ban`, and `extra_regex_patterns` from the config are merged.
* **Generation (Iter 1+ - Anti-Slop):**
* `antislop-vllm` generates text again on the same prompts, but this time it uses the accumulated ban lists (n-grams, slop phrases, regex) to avoid slop.
* While generating, preference pairs are produced each time a ban occurs, containing a *rejected* token and a number of coherent alternative *chosen* tokens, as well as the preceding context.
3. **FTPO Dataset Creation:**
* Pairs are created:
* `prompt`: The original input prompt + generated context so far.
* `rejected`: The first token in a banned sequence, at the time a ban occurred during antislop generation.
* `chosen`: A number of coherent alternative tokens at that position, constrained by min_p.
4. **FTPO Finetuning:**
* If `finetune_enabled` is true, the script runs FTPO finetuning using the preference dataset.
* Supports LoRA and optional 4-bit quantization
* Supports unsloth or transformers/trl training paths (though some models may not work with both)
* Saves the LoRA adapters and optionally a merged 16-bit model.
### FTPO Explained
FTPO (Final-Token Preference Optimisation) is a preference optimisation training algorithm that constrains gradient updates to just a rejected/chosen *continuation token*, and avoids training on the preceding context. The intent is to push probability mass **away from the first token of a banned phrase (the *rejected* token)** and **toward one or more viable alternatives (the *chosen* tokens)** while leaving the rest of the model distribution largely intact.
---
#### How a training example is created in the Auto-Antislop pipeline
1. **Generation runs with antislop active.**
In the auto-antislop pipeline, the FTPO dataset is generated in iterations > 0, when antislop is actively banning slop that it surfaced during the first iteration. Whenever the sampler encounters a banned n-gram / phrase / regex, it halts and constructs a training example before resuming inference with a non-banned continuation.
2. **Rejected token.**
The would-have-been next token (the first token of the banned phrase) is stored as the `rejected` continuation token.
3. **Chosen tokens.**
The sampler then draws further candidates for that same position, applying a *min-p* filter ¹ to keep only continuations whose tail probability mass is above a given threshold, to ensure they are coherent. These candidates are further filtered per the banned phrases list. The remaining tokens are stored as the `chosen` continuation tokens in the sample.
* If no alternative passes the filter the event is discarded and no FTPO sample is written.
4. **Context.**
The full prompt (and any chat template markers) up to but **not including** the banned token is stored.
This means the model receives identical context for both the rejected and chosen tokens.
Result: a single JSONL line contains the shared context plus one rejected token and a small set of chosen tokens — exactly the information FTPO needs.
---
#### Loss formulation
**Preference term.**
For each example the trainer computes
`Δ = logit(chosen) logit(rejected)`
for all chosen+rejected pairs. In a given sample there is 1 rejected and typically 4+ chosen tokens.
The loss is a function of the amount that all the chosen logits are beating the rejected, averaged across chosen tokens for that sample.
This encourages the model to rank *every* chosen token above the rejected one.
Once a chosen logit is beating rejected by a given margin, it no longer contributes to the loss. This helps to avoid unnecessarily moving the weights when chosen is already winning.
**Two-part MSE regulariser.**
A key part of the loss function is the MSE loss which is split into two terms:
* lambda_mse \* mse_non_target +
* lambda_mse_target \* mse_target
Where "target" refers to the chosen & rejected logits for a given training example, and non-target refers to the remaining vocab.
We use MSE loss in logit space rather than KL loss, because applying softmax as part of the loss function (like KL does) creates learning pressure on the whole vocab, when we are instead trying to apply minimal, targeted gradient updates.
* **mse_target**: This term applies tokenwise loss pressure on just the target tokens (rejected & chosen) to keep them close to the original weights. We apply this separately so that we can apply a weaker MSE loss to the target tokens, allowing them to move more freely than the remainder of the vocab. This is because the target tokens need to move significantly relative to one another, since the "rejected" token is typically highest prob by a large margin (that's why it's slop!). Generally you should enable *either* mse_target_tokenwise or mse_target_aggregate.
* **lambda_mse_target**: The scaling strength applied to the mse_target_tokenwise term. Set to 0 in the config to disable this loss term.
* **mse_non_target**: This loss term represents tokenwise loss for the remaining vocab (other than the target chosen + rejected tokens).
* **lambda_mse**: The scaling strength applied to the mse_non_target term. Set to 0 in the config to disable this loss term.
**Tau parameters**
There is also a `tau` parameter for each of the two *target* loss terms, which acts as penalty free range (in logits) within which logits can move relative to baseline without incurring loss. Setting tau to > 0 can be helpful when using mse_target_tokenwise, to allow the model to learn more easily and reach higher preference accuracies when training. A reasonable range is 0-1.5. Higher values may lead to degradation with some models.
Check in the `configs/` dir for training recipes for specific models.
#### FTPO Tunable hyper-parameters
** These are settable in the config file: **
```
# ── FTPO-specific hyper-parameters ─────────────────────────────────────────
# Leave any of these out (or set to null) to fall back to FTPOTrainer defaults.
ftpo_beta: 0.1 # Global scale on pref loss (higher = steeper sigmoid).
# MSE loss term 1: light mse loss applied tokenwise on target tokens
ftpo_lambda_mse_target_tokenwise: 0.05 # Strength of MSE loss tether on the individual logits in the
# chosen+rejected set vs reference.
ftpo_tau_mse_target_tokenwise: 0.5 # Grace bandwidth (logits) before the above MSE loss kicks in.
# MSE loss term 2: stronger mse term applied to remaining (non-target) vocab
ftpo_lambda_mse: 0.4
ftpo_clip_epsilon_logits: 2 # For a chosen token: "after winning vs rejected token by this margin, preference loss turns off"
```
## Output Structure
Outputs are saved in `experiment_base_dir` (e.g., `results/auto_antislop_runs/`), under a timestamped directory for each run (e.g., `run_YYYYMMDD_HHMMSS/`):
* `run_config_YYYYMMDD_HHMMSS.yaml`: The exact configuration used for this run.
* `iter_N_creative_writing_generations.jsonl`: Raw generated text for iteration `N`.
* `iter_N_ftpo_pairs.jsonl`: (If FTPO mode is active) Fine-grained preference pairs for iteration `N`.
* `iter_N_analysis_results/`: Directory containing:
* `bigrams__dictionary_sorted.csv`, `trigrams__non_dictionary_sorted.csv`, etc.: N-gram analysis results.
* `overrepresented_words.csv`: Analysis of over-represented words.
* `slop_list_phrases.jsonl` (inside `phrase_tmp/`): Candidate slop phrases from `slop-forensics`.
* `banned_ngrams_used.json`, `banned_slop_phrases_used.json`: Copies of ban lists *used* for this iteration's generation (for iter > 0).
* `banned_ngrams_new_this_iter.json`, `banned_slop_phrases_new_this_iter.json`: Ban list entries *added* after this iteration's analysis.
* `orchestration.log`: Log specific to analysis and ban list updates for this iteration.
* `banned_ngrams.json`: Aggregated list of banned n-grams across iterations.
* `banned_slop_phrases.json` (or custom name): Aggregated list of banned slop phrases.
* `user_defined_regex_blocklist.json`: Copy of user-defined regex patterns.
* `dpo_pairs_dataset.jsonl`: The final preference dataset for DPO/FTPO.
* `final_iteration_statistics.csv`: Summary metrics for each iteration.
* `finetuned_model_SUFFIX/`: (If finetuning is run)
* `lora_adapters/`: Saved LoRA adapter weights and tokenizer config.
* `merged_16bit/`: (If `finetune_save_merged_16bit: true`) Full model with LoRA weights merged, in 16-bit precision.
* `gguf_q8_0.gguf`: (If `finetune_save_gguf_q8_0: true`) GGUF quantized model.
* `logprob_gap_analysis/`: (If FTPO mode) JSONL files with pre/post training logprob gap statistics.
## Post-Finetuning: Testing the Model
A simple script `test_inference.py` is provided to load the latest finetuned model and run a test generation.
```bash
python test_inference.py
```
This script automatically searches for the most recent `merged_16bit` model in the standard output directories. You can modify the prompt within the script.
## Submodules
* **`antislop-vllm`**: (Path: `antislop-vllm/`)
* Handles the core text generation using vLLM.
* Crucially, it implements the logic for dynamic banning of n-grams, phrases, and regex patterns during the generation process.
* **`slop-forensics`**: (Path: `slop-forensics/`)
* Provides tools and algorithms for analyzing text to identify various types of "slop," including over-represented n-grams and common undesirable phrases.
---
¹ *min-p sampler: see* *Nguyen et al., “Turning Up the Heat: Min-p Sampling for Creative and Coherent LLM Outputs” (arXiv:2407.01082).*
## Notes & Troubleshooting
* **GPU Memory:** Running vLLM and finetuning (especially with larger models) requires significant GPU VRAM. Adjust `vllm_gpu_memory_utilization` and finetuning batch sizes/quantization accordingly. If running both on the same GPU, the script attempts to stop vLLM before finetuning to free up VRAM.
* **Submodule Issues:** If you encounter errors related to `antislop-vllm` or `slop-forensics`, ensure the submodules are correctly initialized (`git submodule update --init --recursive`).
* **NLTK Data:** If `ensure_core_nltk_resources()` fails, download the resources manually as described in Installation.
* **Unsloth Cache:** Unsloth might create a `unsloth_compiled_cache` directory. This is ignored by git.
* **Gemma-3 Checkpoints:** The `utils/model_helpers.py` contains a `fix_gemma3_checkpoint` function to handle potential inconsistencies in Gemma-3 model key naming, and `detie_lm_head` to ensure proper saving of merged models.
* **FTPO Mode:** The "ftpo" (Final Token Preference Optimization) mode uses `FTPOTrainer` which focuses on the preference for a single next token, given a context. This is useful for correcting specific token choices rather than entire continuations.
## Citation
If you use Auto-Antislop or the concepts from the original `antislop-sampler` in your research, please consider citing:
```bibtex
@misc{paech2025antislop,
title = {Antislop: A Comprehensive Framework for Identifying and Eliminating Repetitive Patterns in Language Models},
author = {Paech, Samuel and Roush, Allen and Goldfeder, Judah and Shwartz-Ziv, Ravid},
year = {2025},
month = {oct},
eprint = {2510.15061},
archivePrefix = {arXiv},
primaryClass = {cs.LG},
doi = {10.48550/arXiv.2510.15061},
url = {https://arxiv.org/abs/2510.15061}
}
```
And/or link to this repository: `https://github.com/sam-paech/auto-antislop`