ylecun/mnist
Viewer • Updated • 70k • 150k • 249
TRM trained with PGD adversarial training at ε=0.20/255.
| ε (L∞) | Verified | vs IBP ε=0.15 |
|---|---|---|
| 0.06 | 45% | -16% |
| 0.08 | 60% | -18% |
| 0.10 | 58% | -17% |
Finding: Higher ε doesn't improve PGD on MNIST. IBP remains dominant.
import torch
from veriphi.models import TinyRecursiveMLP
model = TinyRecursiveMLP(x_dim=784, y_dim=512, z_dim=512, hidden=1024,
num_classes=10, H_cycles=2, L_cycles=2)
model.load_state_dict(torch.load("trm-mnist-adv-eps020.pt"))
model.eval()
@article{deshmukh2026veriphi,
title={Veriphi: Attack-Guided Neural Network Verification with Dataset-Dependent Training Methods},
author={Deshmukh, Pratik and Savin, Vasili and Arya, Kartik},
journal={arXiv preprint arXiv:2606.18454},
year={2026}
}
Paper: arXiv:2606.18454 | Code: GitHub