Views
No views yet
model_manifest.json records each model's experiment metadata, reported
accuracies, byte size, and SHA-256 digest.1from papers.rethinking_evaluation_paradigms.model_hub import (
2 list_models,
3 load_model,
4)
5
6models = list_models(
7 repo_id="kkaulen/ctrain_pareto_fronts",
8 dataset="cifar10",
9 architecture="cnn7",
10 method="sabr",
11 epsilon=2 / 255,
12)
13model = load_model(
14 repo_id="kkaulen/ctrain_pareto_fronts",
15 config_hash=models[0]["config_hash"],
16 device="cuda",
17)
18logits = model(images)1pip install CTRAIN
2ctrain-install-git-deps
3pip install huggingface-hubcheckpoints/<dataset>/<architecture>/<epsilon>/<method>/<config_hash>.pt1@inproceedings{KauEtAl26,
2 title = {Rethinking Evaluation Paradigms in IBP-based Certified Training},
3 author = {Kaulen, Konstantin and Shavit, Hadar and Hoos, Holger H},
4 booktitle = {Proceedings of the 43rd International Conference on Machine
5 Learning (ICML 2026)},
6 year = {2026}
7}