Papers › Robust Weight Signatures: Gaining Robustness as Easy as Patching Weights?

Robust Weight Signatures: Gaining Robustness as Easy as Patching Weights?

24 Feb 2023arXiv:2302.12480archive 2025-07-28

Ruisi Cai, Zhenyu Zhang, Zhangyang Wang

Given a robust model trained to be resilient to one or multiple types of distribution shifts (e.g., natural image corruptions), how is that "robustness" encoded in the model weights, and how easily can it be disentangled and/or "zero-shot" transferred to some other models? This paper empirically suggests a surprisingly simple answer: linearly - by straightforward model weight arithmetic! We start by drawing several key observations: (1)assuming that we train the same model architecture on both a clean dataset and its corrupted version, resultant weights mostly differ in shallow layers; (2)the weight difference after projection, which we call "Robust Weight Signature" (RWS), appears to be discriminative and indicative of different corruption types; (3)for the same corruption type, the RWSs obtained by one model architecture are highly consistent and transferable across different datasets. We propose a minimalistic model robustness "patching" framework that carries a model trained on clean data together with its pre-extracted RWSs. In this way, injecting certain robustness to the model is reduced to directly adding the corresponding RWS to its weight. We verify our proposed framework to be remarkably (1)lightweight. since RWSs concentrate on the shallowest few layers and we further show they can be painlessly quantized, storing an RWS is up to 13 x more compact than storing the full weight copy; (2)in-situ adjustable. RWSs can be appended as needed and later taken off to restore the intact clean model. We further demonstrate one can linearly re-scale the RWS to control the patched robustness strength; (3)composable. Multiple RWSs can be added simultaneously to patch more comprehensive robustness at once; and (4)transferable. Even when the clean model backbone is continually adapted or updated, RWSs remain as effective patches due to their outstanding cross-dataset transferability.

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="2302.12480")

Code

Syntology Ran 4 of 19 code samples harvested from 1 repository linked to this paper; 15 have no recorded run. Of those that ran: 1 ran · violated contract; 3 ran · our draft was wrong.

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

VITA-Group/Robust_Weight_Signatures officialmentioned on GitHubpytorchMIT 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

19 samples harvested; 4 ran; 0 honoured the contract we drafted; 15 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.

1ran · violated contract
3ran · our draft was wrong
15unverified

Licence: 0 of the 19 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 VITA-Group/Robust_Weight_Signatures. “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.

check_bn VITA-Group/Robust_Weight_Signatures/tools.py official repository ran · violated contract MIT (permissive) · 6e59364a7cf6008f · report
conv1x1 VITA-Group/Robust_Weight_Signatures/models/resnet.py official repository ran · our draft was wrong MIT (permissive) · d9def42110729a85 · report
conv3x3 VITA-Group/Robust_Weight_Signatures/models/resnet.py official repository ran · our draft was wrong MIT (permissive) · 160bb14bd76201b4 · report
make_layers VITA-Group/Robust_Weight_Signatures/models/vgg.py official repository ran · our draft was wrong MIT (permissive) · eba3f5bcc6a06d36 · report
affine_quant VITA-Group/Robust_Weight_Signatures/quantize_utils/quant_utils.py official repository unverified MIT (permissive) · 87ed711467d719d3 · report
attack_pgd VITA-Group/Robust_Weight_Signatures/trainer/engine_pgd.py official repository unverified MIT (permissive) · 28cadfa8650befa7 · report
cifar100_dataloaders VITA-Group/Robust_Weight_Signatures/datasets/cifar.py official repository unverified MIT (permissive) · 2401e51688b0f4c4 · report
cifar10_dataloaders VITA-Group/Robust_Weight_Signatures/datasets/cifar.py official repository unverified MIT (permissive) · 2d5dd53192074c7a · report
cifar10c_dataloaders VITA-Group/Robust_Weight_Signatures/datasets/cifar_c.py official repository unverified MIT (permissive) · 6a51cdac8ae07f36 · report
clamp VITA-Group/Robust_Weight_Signatures/trainer/engine_pgd.py official repository unverified MIT (permissive) · 8a93e041134b597a · report
get_dirs VITA-Group/Robust_Weight_Signatures/tools.py official repository unverified MIT (permissive) · 3aea45f74b2c92f2 · report
get_projection VITA-Group/Robust_Weight_Signatures/tools.py official repository unverified MIT (permissive) · 5c47b10f35d34594 · report
linear_quant VITA-Group/Robust_Weight_Signatures/quantize_utils/func.py official repository unverified MIT (permissive) · 9970e7f2fc273427 · report
resnet18 VITA-Group/Robust_Weight_Signatures/models/resnet.py official repository unverified MIT (permissive) · 31501fc7e813d642 · report
signer VITA-Group/Robust_Weight_Signatures/quantize_utils/quant_utils.py official repository unverified MIT (permissive) · 8357390e4d4ad484 · report
tinyimagenet_c_testloaders VITA-Group/Robust_Weight_Signatures/datasets/tiny_imagenet.py official repository unverified MIT (permissive) · 5f6874a404cdccdc · report
tinyimagenet_c_trainloaders VITA-Group/Robust_Weight_Signatures/datasets/tiny_imagenet.py official repository unverified MIT (permissive) · 9b92236376542dbd · report
tinyimagenet_dataloaders VITA-Group/Robust_Weight_Signatures/datasets/tiny_imagenet.py official repository unverified MIT (permissive) · 36e9a7bb8e92f93c · report
train_epoch_adv VITA-Group/Robust_Weight_Signatures/trainer/engine_pgd.py official repository unverified MIT (permissive) · 22d38cfde2b164df · report

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