Views
No views yet
| Path | Description |
|---|---|
hold-out/ | Fyelp Hold-Out idx=-0 split (39 seen / 1 unseen configuration) |
acd/ | Fyelp ACD split (half of all configurations held out) |
| File | Description |
|---|---|
config.json | Architecture and training configuration |
full_model_best.pt | Concept encoder MLPs, classifier heads, injector, internal prior |
best_lora_adapter.pt | LoRA adapter weights (rank 8, alpha 16); optimiser state stripped |
label_prior.pt | Post-hoc label-conditioned prior $g_\gamma$ (the paper's recommended z-source) |
retrieval_prior.pt | Nearest-seen-configuration retrieval baseline (Appendix L), where available |
label_prior_flow.pt | Conditional normalising-flow baseline (Appendix K), where available |
label_prior_factorized.pt | Factorised per-axis prior (Appendix N), where available |
clsinv_reg_*.pt | Manifold-regulariser statistics for the inversion sweeps (Appendix I), where available |
1git clone https://github.com/BiancaBing/cbctg-illusion-of-control
2cd cbctg-illusion-of-control
3
4huggingface-cli download kabing/gpt2-cbctg-prior --local-dir ckpt/gpt2-cbctg-prior
5
6python evaluation/generate_v3.py \
7 --checkpoint ckpt/gpt2-cbctg-prior/hold-out/full_model_best.pt \
8 --data_dir data/fyelp_hold-out_idx0_4ax \
9 --output_dir out/ \
10 --model_name gpt2-cbctg-prior_prior \
11 --z_source prior \
12 --prior_path ckpt/gpt2-cbctg-prior/hold-out/label_prior.pt--z_source prior for oracle (reference-text encoding) or mode_b
(classifier inversion) to reproduce the other two protocols compared in the
paper. Full reproduction instructions are in the code repository.1@inproceedings{bing2026illusion,
2 title = {The Illusion of Control: Why Bare Classifier Inversion
3 Silently Fails in Concept-Bottleneck Text Generation},
4 author = {Bing, Qi and Shao, Xiaowei},
5 booktitle = {Proceedings of the 2026 Conference on Empirical Methods in
6 Natural Language Processing (EMNLP)},
7 year = {2026},
8 eprint = {2608.22956},
9 archivePrefix = {arXiv},
10 primaryClass = {cs.CL},
11 url = {https://arxiv.org/abs/2608.22956}
12}