Skip to main content

Bergson

Bergson is a python library which provides scalable, state-of-the-art data attribution methods for large language models. Data attribution methods estimate the effect on a behavior of interest of removing data points from a model's training corpus. We support EK-FAC (2023), TrackStar (2024), SOURCE (2024), MAGIC (2025), gradient cosine similarity, and more.

We try to make research and application straightforward. You can reproduce any of your runs with a single line, use a few CLI flags to save and re-use useful intermediate artifacts, do everything using just the CLI or just code, train models here or use existing ones, tune and evaluate your methods, and scale them up to multi-node runs with 70B+ parameters. More information is available in the Bergson docs.

Installation

Bergson can be installed using pip:

pip install bergson

Or you can clone the repository and install locally:

git clone https://github.com/EleutherAI/bergson.git
cd bergson
pip install -e .

Leaderboard

Indicative performance of data attribution methods in the finetuning regime - see the leaderboard for more methods.

Linear datamodeling score (LDS) is the accuracy of a method for producing global data rankings by influence. The query loss difference (QLD) shows how much model loss for a held-out query can be increased by retraining without the most highly ranked data by influence (here the top 1%), compared to a random removal baseline.

Method Proponent QLD [95% CI] LDS [95% CI]
MAGIC 0.100 [0.090, 0.112] 0.931 [0.925, 0.936]
Eigenvalue-corrected Shampoo 0.071 [0.060, 0.082] 0.517 [0.491, 0.539]
EK-FAC 0.070 [0.058, 0.082] 0.454 [0.426, 0.479]
KFAC 0.067 [0.056, 0.080] 0.420 [0.391, 0.446]
BM25 0.062 [0.048, 0.076] 0.220 [0.185, 0.252]
Qwen3-Embedding-8B semantic search 0.049 [0.038, 0.061] 0.132 [0.093, 0.169]
TrackStar (no optimizer correction, projection 64) 0.045 [0.036, 0.055] 0.270 [0.240, 0.295]
TRAK (8-model ensemble) 0.032 [0.024, 0.040] 0.138 [0.111, 0.165]
SOURCE (Adam) 0.024 [0.018, 0.030] 0.154 [0.126, 0.181]
Gradient cosine similarity 0.021 [0.016, 0.027] 0.156 [0.131, 0.181]
Activation similarity 0.000 [-0.000, 0.001] 0.110 [0.070, 0.149]

Results for GPT-2 finetuned on 4 epochs of the WikiText corpus. Held-out loss dropped from 3.545 to 3.111 over training.

Functionality

Attribute through Training

bergson magic runs a powerful attribution method that backpropagates through the training process to compute the gradient of a model behavior loss with respect to a weighting placed on each training item. It is powered by our twice-differentiable trainer, which can also be called directly using bergson train.

Note: unrolled differentiation efficacy is proportional to metasmoothness. Untuned training hyperparameters can result in disappointing linear datamodeling scores. Check your run's estimated metasmoothness with bergson metasmoothness.

bergson approxunrolling is an approximation of bergson magic that uses a handful of training checkpoints to run the multi-step SOURCE attribution pipeline. This is roughly equivalent to an influence function averaged over several checkpoints.

To build a train‑time gradient store, use our HF Trainer callback. This will incur a ~17% performance overhead.

Attribute Post-Hoc

Bergson supports on-disk gradient stores and on-the-fly queries, and per-token and per-sequence attribution.

bergson trackstar, bergson ekfac, and bergson trak all orchestrate multi-step attribution recipes over a model checkpoint. bergson trak also supports ensembling over independently trained models.

At a lower level, you can build your own gradient store for efficient serial queries using bergson build. Collection-time gradient compression makes the store space-efficient, and a FAISS integration enables fast KNN search over large stores - see bergson query, or Attributor in the programmatic interface. For small queries and methods that don't use gradient compression (e.g., EK-FAC), you can score a dataset in a single pass using an in-memory query index of precomputed gradients. Dataset items may be scored using max, mean, and individual scoring strategies, enabling LESS-style data filtering. See bergson score and bergson build.

Per-module and per-attention head gradients can be extracted from the store.

Note: influence functions can be sensitive to both Hessian approximation inversion hyperparameters (in tiny models) and metasmoothness. Untuned hyperparameters can result in a disappointing linear datamodeling score.

Evaluate

Use bergson validate and bergson recall to compute LDS and recall@k metrics respectively.

Examples

There are many example YAMLs in the examples directory. use bergson <yaml_path> to try them. For example, to MAGIC-attribute a GPT-2 WikiText fine-tune:

bergson examples/magic/gpt2_wikitext_tiny.yaml

Or check out a notebook for programmatic usage:

Notebook Description
Open In Colab Poison Detection Detect poisoned training examples with gradient attribution (T4, ~5 min)
Open In Colab Style Ablation Suppress style to recover semantic matching (A100, ~20 min)

Construct and query an on-disk index of randomly projected gradients:

bergson build runs/index --model EleutherAI/pythia-14m --dataset NeelNanda/pile-10k --truncation --token_batch_size 4096 --projection_dim 16
bergson query --index runs/index --unit_norm

Collect TrackStar attribution scores for an I.I.D sample query:

bergson trackstar runs/trackstar --model EleutherAI/pythia-14m --query.dataset NeelNanda/pile-10k --data.dataset NeelNanda/pile-10k --data.truncation --token_batch_size 4096 --query.truncation --query.split "train[:20]"

Development

pip install -e ".[dev]"
pre-commit install
pytest
pyright

We use conventional commits for releases.

If you have multiple GPUs, you can run pytest in distributed mode: pytest -n 8 --dist loadgroup.

Citation

If you found Bergson useful in your research, please cite us:

@misc{quirke2026bergsonopensourcelibrary,
      title={Bergson: An Open Source Library for Data Attribution},
      author={Lucia Quirke and Louis Jaburi and David Johnston and William Z. Li and Gonçalo Paulo and Guillaume Martres and Girish Gupta and Stella Biderman and Nora Belrose},
      year={2026},
      eprint={2606.11660},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2606.11660},
}

Support

If you have suggestions, questions, or would like to collaborate, please email lucia@eleuther.ai or drop us a line in the #data-attribution channel of the EleutherAI Discord!

Release files for bergson 1.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bergson 1.1.0
File Size Uploaded
bergson-1.1.0.tar.gz 349.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for bergson 1.1.0
File Interpreter ABI Platform
bergson-1.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 599.4 kB

Release files / bergson-1.1.0.tar.gz

Download URL bergson-1.1.0.tar.gz
Size 349.4 kB
Tags Source
SHA-256 checksum
How to use checksums
59113dce257e99a5836ac1c621e1305f42433efb5cc142141d13adaca83d2c2a
BLAKE2b-256 checksum
How to use checksums
89bf38eecbc6723c1f2933fafabe2ad43751688584dcd383dcca556ea35a8a77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / bergson-1.1.0-py3-none-any.whl

Download URL bergson-1.1.0-py3-none-any.whl
Size 250.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
3f0aed4018796aca96e22e05b5a1e8427784b5dff11afc08b14a0777ea8846ec
BLAKE2b-256 checksum
How to use checksums
b7b8d41fb384fe8ef2c7882ab7b2c5fca2de48ff3048316d7bb1001c0fc27168
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release history Release notifications | RSS feed

1.2.0

2 release files

This release

1.1.0 This release

2 release files

1.0.0

2 release files

0.26.3

2 release files

0.26.1

2 release files

0.15.1

2 release files

0.15.0

2 release files

0.14.0

2 release files

0.13.4

2 release files

0.13.3

2 release files

0.13.2

2 release files

0.13.1

2 release files

0.13.0

2 release files

0.12.1

2 release files

0.12.0

2 release files

0.11.1

2 release files

0.11.0

2 release files

0.10.1

2 release files

0.5.1

2 release files

0.5.0

2 release files

0.4.6

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page