EleutherAI/LDS-retrain-bank-adamw-N16k-bs256
Retrain bank: sm_adamw_eps1e17_16k_bs256 This repository contains 100 fully retrained language models, not just scores. Each model is GPT-2 (gpt2) fine-tuned on the same 16,000-document corpus with a different random 1% (160 documents) held out, from the same seed and the same data order as the base model in retrained/base. Retraining is deterministic within one environment, so the models differ only by the documents removed. That is the expensive part of any leave-k-out… See the full description on the dataset page: https://huggingface.co/datasets/EleutherAI/LDS-retrain-bank-adamw-N16k-bs256.
Retrain bank: sm_adamw_eps1e17_16k_bs256
This repository contains 100 fully retrained language models, not just scores.
Each model is GPT-2 (gpt2) fine-tuned on the same 16,000-document corpus with a different random 1% (160 documents) held out, from the same seed and the same data order as the base model in retrained/base. Retraining is deterministic within one environment, so the models differ only by the documents removed.
That is the expensive part of any leave-k-out attribution study, and it is reusable: a new attribution method can be evaluated against this bank without retraining anything.
What is here
Using it
from huggingface_hub import snapshot_download
import pandas as pd
path = snapshot_download("EleutherAI/metasmoothness-bank-sm_adamw_eps1e17_16k_bs256", repo_type="dataset")
# ground truth: what removing each subset did to each query's loss
truth = pd.read_csv(f"{path}/validation.csv")
# score your own method, then correlate its predicted influence against `diff`
# LDS = mean over queries of Spearman(predicted subset sums, measured diff)Measured on this bank
LDS is the mean per-query Spearman correlation between a scorer's predicted subset influence and the measured diff. The tail-filter delta is a different question on the same bank: remove the 1% a scorer ranks most influential, retrain once, and measure the query loss change against the bank's random removals as the matched control.
Provenance
- optimizer
adamw, lr0.0002, batch size256,2epochs,125steps, seed42 - corpus: smollm2, 16,000 documents
- retrains for one bank all run on a single GPU type: mixing types changes the retrained models by enough to shift LDS by ~0.05, which is larger than most effects being measured.
Produced by bergson.
