Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# Models used in 'Verification of the Implicit World Model in a Generative Model via Adversarial Sequences' (ICLR 2026).
|
| 6 |
+
|
| 7 |
+
This repo contains **48 chess-playing GPT-2 and LLaMA models**, as well as 24 board state probes that were used in the experiments of the paper.
|
| 8 |
+
|
| 9 |
+
## Contents
|
| 10 |
+
|
| 11 |
+
Each model architecture folder contains 6 subfolders for the 6 datasets used in our experiments.
|
| 12 |
+
Each of these 6 subfolders contains 4 checkpoint files, corresponding to the four training methods we used:
|
| 13 |
+
- Next-token prediction (NT) → `next_token.ckpt`
|
| 14 |
+
- Matching the probability distribution (PD) of valid single token continuations → `prob_dist.ckpt`
|
| 15 |
+
- NT with a jointly trained board state probe (NT+JP) → `next_token_joint_probe.ckpt`
|
| 16 |
+
- PD with a jointly trained board state probe (PD+JP) → `prob_dist_joint_probe.ckpt`
|
| 17 |
+
|
| 18 |
+
Models trained without a joint probe have their linear board state probes in the `probes` folder.
|
| 19 |
+
|
| 20 |
+
## Links
|
| 21 |
+
|
| 22 |
+
Paper links:
|
| 23 |
+
arXiv: [https://arxiv.org/abs/2602.05903](https://arxiv.org/abs/2602.05903)
|
| 24 |
+
HuggingFace: [https://huggingface.co/papers/2602.05903](https://huggingface.co/papers/2602.05903)
|
| 25 |
+
|
| 26 |
+
All corresponding code and links to further resources are available at [https://github.com/szegedai/world-model-verification](https://github.com/szegedai/world-model-verification)
|
| 27 |
+
|
| 28 |
+
## Citation
|
| 29 |
+
|
| 30 |
+
If you use our code, models, or datasets, please cite the following:
|
| 31 |
+
```
|
| 32 |
+
@inproceedings{
|
| 33 |
+
balogh2026verification,
|
| 34 |
+
title={Verification of the Implicit World Model in a Generative Model via Adversarial Sequences},
|
| 35 |
+
author={Andr{\'a}s Balogh and M{\'a}rk Jelasity},
|
| 36 |
+
booktitle={The Fourteenth International Conference on Learning Representations},
|
| 37 |
+
year={2026},
|
| 38 |
+
url={https://openreview.net/forum?id=BLOIB8CwBI}
|
| 39 |
+
}
|
| 40 |
+
```
|