Papers › Augmenting Interpretable Models with LLMs during Training

Augmenting Interpretable Models with LLMs during Training

23 Sep 2022arXiv:2209.11799archive 2025-07-28

Chandan Singh, Armin Askari, Rich Caruana, Jianfeng Gao

Recent large language models (LLMs) have demonstrated remarkable prediction performance for a growing array of tasks. However, their proliferation into high-stakes domains (e.g. medicine) and compute-limited settings has created a burgeoning need for interpretability and efficiency. We address this need by proposing Augmented Interpretable Models (Aug-imodels), a framework for leveraging the knowledge learned by LLMs to build extremely efficient and interpretable models. Aug-imodels use LLMs during fitting but not during inference, allowing complete transparency and often a speed/memory improvement of greater than 1,000x for inference compared to LLMs. We explore two instantiations of Aug-imodels in natural-language processing: (i) Aug-GAM, which augments a generalized additive model with decoupled embeddings from an LLM and (ii) Aug-Tree, which augments a decision tree with LLM feature expansions. Across a variety of text-classification datasets, both outperform their non-augmented counterparts. Aug-GAM can even outperform much larger models (e.g. a 6-billion parameter GPT-J model), despite having 10,000x fewer parameters and being fully transparent. We further explore Aug-imodels in a natural-language fMRI study, where they generate interesting interpretations from scientific data. All code for using Aug-imodels and reproducing results is made available on Github.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2209.11799")

Code

Syntology Ran 2 of 12 code samples harvested from 2 repositories linked to this paper; 10 have no recorded run. Of those that ran: 2 ran · our draft was wrong.

By repository: official repository: 12 samples from 2 repositories, 2 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

csinva/emb-gam officialmentioned in papermentioned on GitHubpytorchMIT report
csinva/imodelsX officialmentioned in papermentioned on GitHubpytorch report
microsoft/augmented-interpretable-models officialmentioned in papermentioned on GitHubpytorch report
microsoft/automated-explanations mentioned on GitHubMIT report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

12 samples harvested; 2 ran; 0 honoured the contract we drafted; 10 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

2ran · our draft was wrong
10unverified

Licence: 10 of the 12 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

add_computational_args microsoft/augmented-interpretable-models/augtree/experiments/01_train_model.py official repository ran · our draft was wrong MIT (permissive) · 19363da9b2e0a8e4 · report
add_main_args microsoft/augmented-interpretable-models/augtree/experiments/01_train_model.py official repository ran · our draft was wrong MIT (permissive) · 9a9d5e7dbc61cc12 · report
add_computational_args csinva/emb-gam/augdistill/experiments/01_eval.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 406e7b11b9a38bf6 · report
add_main_args csinva/emb-gam/augdistill/experiments/01_eval.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 63743868776d4aa1 · report
average_seeds csinva/emb-gam/auggam/auggam/analyze_helper.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 94fc12cee266d05f · report
corrplot_max_abs_unigrams csinva/emb-gam/auggam/auggam/analyze_helper.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 4d8fce0e5de37264 · report
embed_and_sum_function csinva/emb-gam/auggam/auggam/embed.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 1bf3bdbe0145f356 · report
generate_ngrams_list csinva/emb-gam/auggam/auggam/embed.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 1999a51d3bcebcb3 · report
get_dir_name csinva/emb-gam/auggam/auggam/data.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 6fbf6dc523fe795c · report
load_fitted_results csinva/emb-gam/auggam/auggam/data.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · cddd3f8fab150afb · report
preprocess_gpt_token_batch csinva/emb-gam/auggam/auggam/embed.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · ce5f966b7b6f6781 · report
process_data_and_args csinva/emb-gam/auggam/auggam/data.py official repository unverified MIT recorded; this copy not marked cleared · pointer only · 751633c4c0a353c8 · report

Tasks

Additive modelsLanguage ModellingSentiment AnalysisText Classificationtext-classification

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections