├── LICENSE ├── README.md ├── contributors.md ├── defense ├── README.md ├── at │ ├── README.md │ ├── com_acc.py │ ├── configs │ │ ├── configs_fast_2px_evaluate.yml │ │ └── configs_fast_4px_evaluate.yml │ ├── dataset.py │ ├── lib │ │ ├── __init__.py │ │ ├── utils.py │ │ └── validation.py │ └── main_fast.py ├── at_defense.sh ├── check_output.py ├── diffpure │ ├── configs │ │ ├── celeba.yml │ │ ├── cifar10.yml │ │ └── imagenet.yml │ ├── dataset.py │ ├── ddpm │ │ ├── LICENSE_UNET_DDPM │ │ └── unet_ddpm.py │ ├── diffpure.py │ ├── guided_diffusion │ │ ├── LICENSE_GUIDED_DIFFUSION │ │ ├── __init__.py │ │ ├── dist_util.py │ │ ├── fp16_util.py │ │ ├── gaussian_diffusion.py │ │ ├── image_datasets.py │ │ ├── logger.py │ │ ├── losses.py │ │ ├── nn.py │ │ ├── resample.py │ │ ├── respace.py │ │ ├── script_util.py │ │ ├── train_util.py │ │ └── unet.py │ ├── runners │ │ ├── diffpure_ddpm.py │ │ ├── diffpure_guided.py │ │ ├── diffpure_ldsde.py │ │ ├── diffpure_ode.py │ │ └── diffpure_sde.py │ ├── score_sde │ │ ├── LICENSE_SCORE_SDE │ │ ├── losses.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── ddpm.py │ │ │ ├── ema.py │ │ │ ├── layers.py │ │ │ ├── layerspp.py │ │ │ ├── ncsnpp.py │ │ │ ├── ncsnv2.py │ │ │ ├── normalization.py │ │ │ ├── up_or_down_sampling.py │ │ │ └── utils.py │ │ ├── op │ │ │ ├── __init__.py │ │ │ ├── fused_act.py │ │ │ ├── fused_bias_act.cpp │ │ │ ├── fused_bias_act_kernel.cu │ │ │ ├── upfirdn2d.cpp │ │ │ ├── upfirdn2d.py │ │ │ └── upfirdn2d_kernel.cu │ │ ├── sampling.py │ │ └── sde_lib.py │ └── utils.py ├── diffpure_defense.sh ├── hgd │ ├── LICENSE.txt │ ├── README.md │ ├── dataset.py │ ├── defense.py │ ├── inception.py │ ├── inceptionresnet.py │ ├── inceptionresnetv2.py │ ├── inres.py │ ├── metadata.json │ ├── res152_wide.py │ ├── resnet.py │ ├── resnext.py │ ├── resnext101.py │ ├── resnext_features │ │ ├── __init__.py │ │ ├── resnext101_32x4d_features.py │ │ └── resnext101_64x4d_features.py │ └── v3.py ├── hgd_defense.sh ├── nrp │ ├── modules │ │ ├── module_util.py │ │ └── predict.py │ ├── networks.py │ ├── purify.py │ └── utils.py ├── nrp_defense.sh ├── rs │ ├── architectures.py │ ├── archs │ │ └── cifar_resnet.py │ ├── core.py │ ├── datasets.py │ └── predict.py └── rs_defense.sh ├── figs └── overview.png ├── main.py ├── requirements.txt └── transferattack ├── __init__.py ├── advanced_objective ├── aa.py ├── ata.py ├── bfa.py ├── cfm.py ├── danaa.py ├── fft.py ├── fia.py ├── fmaa.py ├── fuzziness_tuned.py ├── ila.py ├── ilpd.py ├── ir.py ├── logit.py ├── logit_margin.py ├── naa.py ├── p2fa.py ├── potrip.py ├── rpa.py ├── taig.py ├── tap.py ├── trap.py └── yaila │ ├── yaila.py │ └── yaila_utils.py ├── attack.py ├── ensemble ├── adaea.py ├── cwa.py ├── ens.py ├── lgv.py ├── mba.py ├── sasd_ws.py ├── smer.py └── svre.py ├── generation ├── ada.py ├── cdtp.py ├── diffattack.py ├── ge_advgan.py ├── ltp.py ├── m3d.py └── ttp.py ├── gradient ├── aifgtm.py ├── anda.py ├── dta.py ├── emifgsm.py ├── fgsm.py ├── fgsra.py ├── foolmix.py ├── gaa.py ├── gifgsm.py ├── gnp.py ├── gra.py ├── iefgsm.py ├── ifgsm.py ├── ifgssm.py ├── mef.py ├── mifgsm.py ├── mifgsm_with_tricks.py ├── mig.py ├── mumodig.py ├── nifgsm.py ├── pcifgsm.py ├── pgn.py ├── pifgsm.py ├── rap.py ├── smifgrm.py ├── vaifgsm.py ├── vmifgsm.py └── vnifgsm.py ├── input_transformation ├── admix.py ├── aitl.py ├── atta.py ├── bsr.py ├── decowa.py ├── dem.py ├── dim.py ├── idaa.py ├── l2t.py ├── lpm.py ├── maskblock.py ├── odi │ ├── obj │ │ ├── 11.jpg │ │ ├── 13.jpg │ │ ├── 1ball.mtl │ │ ├── 1ball.obj │ │ ├── 2ball.mtl │ │ ├── 2ball.obj │ │ ├── 3ball.mtl │ │ ├── 3ball.obj │ │ ├── 4ball.mtl │ │ ├── 4ball.obj │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── Book_texture_RYOKAN.JPG │ │ ├── Untitled.png │ │ ├── book.mtl │ │ ├── book.obj │ │ ├── clock.mtl │ │ ├── clock.obj │ │ ├── cup.mtl │ │ ├── cup.obj │ │ ├── kwi.jpg │ │ ├── pack.obj │ │ ├── pack1.mtl │ │ ├── pillow.mtl │ │ ├── pillow.obj │ │ ├── t_shirt_lowpoly.mtl │ │ └── t_shirt_lowpoly.obj │ └── odi.py ├── ops.py ├── pam.py ├── sia.py ├── sim.py ├── ssm.py ├── ssm_with_tricks.py ├── stm.py ├── su.py ├── tim.py └── usmm.py ├── model_related ├── ags.py ├── ana.py ├── ata_vit.py ├── ata_vit_utils │ ├── Transformer_Explainability │ │ ├── baselines │ │ │ └── ViT │ │ │ │ ├── ViT_LRP.py │ │ │ │ ├── ViT_explanation_generator.py │ │ │ │ ├── helpers.py │ │ │ │ ├── layer_helpers.py │ │ │ │ └── weight_init.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ └── layers_ours.py │ │ └── samples │ │ │ └── CLS2IDX.py │ └── __init__.py ├── att.py ├── awt.py ├── bpa.py ├── dhf.py ├── dhf_networks │ ├── inc_res_v2.py │ ├── inception.py │ ├── resnet.py │ └── utils.py ├── dra.py ├── dsm.py ├── faug.py ├── fpr.py ├── ghost.py ├── ghost_networks │ ├── __init__.py │ ├── inc_res_v2.py │ ├── inc_v3.py │ └── resnet.py ├── iaa.py ├── linbp.py ├── ll2s.py ├── llta_networks │ ├── llta.py │ └── models │ │ ├── __init__.py │ │ ├── decaydensenet.py │ │ ├── decayrelu.py │ │ ├── decayresnet.py │ │ └── utils.py ├── ma.py ├── metassa.py ├── mta.py ├── mup.py ├── pna_patchout.py ├── sapr.py ├── setr.py ├── setr_networks │ ├── __init__.py │ ├── deit.py │ ├── deit_ensemble.py │ ├── swin_transformer.py │ ├── t2t_vit.py │ ├── t2t_vit_dense.py │ ├── t2t_vit_ghost.py │ ├── t2t_vit_se.py │ ├── tnt.py │ ├── token_performer.py │ ├── token_transformer.py │ ├── transformer_block.py │ └── vit.py ├── sgm.py ├── tgr.py └── vdc.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/README.md -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/contributors.md -------------------------------------------------------------------------------- /defense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/README.md -------------------------------------------------------------------------------- /defense/at/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/README.md -------------------------------------------------------------------------------- /defense/at/com_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/com_acc.py -------------------------------------------------------------------------------- /defense/at/configs/configs_fast_2px_evaluate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/configs/configs_fast_2px_evaluate.yml -------------------------------------------------------------------------------- /defense/at/configs/configs_fast_4px_evaluate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/configs/configs_fast_4px_evaluate.yml -------------------------------------------------------------------------------- /defense/at/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/dataset.py -------------------------------------------------------------------------------- /defense/at/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defense/at/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/lib/utils.py -------------------------------------------------------------------------------- /defense/at/lib/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/lib/validation.py -------------------------------------------------------------------------------- /defense/at/main_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at/main_fast.py -------------------------------------------------------------------------------- /defense/at_defense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/at_defense.sh -------------------------------------------------------------------------------- /defense/check_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/check_output.py -------------------------------------------------------------------------------- /defense/diffpure/configs/celeba.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/configs/celeba.yml -------------------------------------------------------------------------------- /defense/diffpure/configs/cifar10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/configs/cifar10.yml -------------------------------------------------------------------------------- /defense/diffpure/configs/imagenet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/configs/imagenet.yml -------------------------------------------------------------------------------- /defense/diffpure/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/dataset.py -------------------------------------------------------------------------------- /defense/diffpure/ddpm/LICENSE_UNET_DDPM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/ddpm/LICENSE_UNET_DDPM -------------------------------------------------------------------------------- /defense/diffpure/ddpm/unet_ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/ddpm/unet_ddpm.py -------------------------------------------------------------------------------- /defense/diffpure/diffpure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/diffpure.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/LICENSE_GUIDED_DIFFUSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/LICENSE_GUIDED_DIFFUSION -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/__init__.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/dist_util.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/fp16_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/fp16_util.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/gaussian_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/gaussian_diffusion.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/image_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/image_datasets.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/logger.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/losses.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/nn.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/resample.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/respace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/respace.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/script_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/script_util.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/train_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/train_util.py -------------------------------------------------------------------------------- /defense/diffpure/guided_diffusion/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/guided_diffusion/unet.py -------------------------------------------------------------------------------- /defense/diffpure/runners/diffpure_ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/runners/diffpure_ddpm.py -------------------------------------------------------------------------------- /defense/diffpure/runners/diffpure_guided.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/runners/diffpure_guided.py -------------------------------------------------------------------------------- /defense/diffpure/runners/diffpure_ldsde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/runners/diffpure_ldsde.py -------------------------------------------------------------------------------- /defense/diffpure/runners/diffpure_ode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/runners/diffpure_ode.py -------------------------------------------------------------------------------- /defense/diffpure/runners/diffpure_sde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/runners/diffpure_sde.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/LICENSE_SCORE_SDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/LICENSE_SCORE_SDE -------------------------------------------------------------------------------- /defense/diffpure/score_sde/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/losses.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/__init__.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/ddpm.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/ema.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/layers.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/layerspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/layerspp.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/ncsnpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/ncsnpp.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/ncsnv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/ncsnv2.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/normalization.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/up_or_down_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/up_or_down_sampling.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/models/utils.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/op/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/op/__init__.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/op/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/op/fused_act.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/op/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/op/fused_bias_act.cpp -------------------------------------------------------------------------------- /defense/diffpure/score_sde/op/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/op/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /defense/diffpure/score_sde/op/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/op/upfirdn2d.cpp -------------------------------------------------------------------------------- /defense/diffpure/score_sde/op/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/op/upfirdn2d.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/op/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/op/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /defense/diffpure/score_sde/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/sampling.py -------------------------------------------------------------------------------- /defense/diffpure/score_sde/sde_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/score_sde/sde_lib.py -------------------------------------------------------------------------------- /defense/diffpure/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure/utils.py -------------------------------------------------------------------------------- /defense/diffpure_defense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/diffpure_defense.sh -------------------------------------------------------------------------------- /defense/hgd/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/LICENSE.txt -------------------------------------------------------------------------------- /defense/hgd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/README.md -------------------------------------------------------------------------------- /defense/hgd/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/dataset.py -------------------------------------------------------------------------------- /defense/hgd/defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/defense.py -------------------------------------------------------------------------------- /defense/hgd/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/inception.py -------------------------------------------------------------------------------- /defense/hgd/inceptionresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/inceptionresnet.py -------------------------------------------------------------------------------- /defense/hgd/inceptionresnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/inceptionresnetv2.py -------------------------------------------------------------------------------- /defense/hgd/inres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/inres.py -------------------------------------------------------------------------------- /defense/hgd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/metadata.json -------------------------------------------------------------------------------- /defense/hgd/res152_wide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/res152_wide.py -------------------------------------------------------------------------------- /defense/hgd/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/resnet.py -------------------------------------------------------------------------------- /defense/hgd/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/resnext.py -------------------------------------------------------------------------------- /defense/hgd/resnext101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/resnext101.py -------------------------------------------------------------------------------- /defense/hgd/resnext_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/resnext_features/__init__.py -------------------------------------------------------------------------------- /defense/hgd/resnext_features/resnext101_32x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/resnext_features/resnext101_32x4d_features.py -------------------------------------------------------------------------------- /defense/hgd/resnext_features/resnext101_64x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/resnext_features/resnext101_64x4d_features.py -------------------------------------------------------------------------------- /defense/hgd/v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd/v3.py -------------------------------------------------------------------------------- /defense/hgd_defense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/hgd_defense.sh -------------------------------------------------------------------------------- /defense/nrp/modules/module_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/nrp/modules/module_util.py -------------------------------------------------------------------------------- /defense/nrp/modules/predict.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defense/nrp/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/nrp/networks.py -------------------------------------------------------------------------------- /defense/nrp/purify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/nrp/purify.py -------------------------------------------------------------------------------- /defense/nrp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/nrp/utils.py -------------------------------------------------------------------------------- /defense/nrp_defense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/nrp_defense.sh -------------------------------------------------------------------------------- /defense/rs/architectures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/rs/architectures.py -------------------------------------------------------------------------------- /defense/rs/archs/cifar_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/rs/archs/cifar_resnet.py -------------------------------------------------------------------------------- /defense/rs/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/rs/core.py -------------------------------------------------------------------------------- /defense/rs/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/rs/datasets.py -------------------------------------------------------------------------------- /defense/rs/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/rs/predict.py -------------------------------------------------------------------------------- /defense/rs_defense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/defense/rs_defense.sh -------------------------------------------------------------------------------- /figs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/figs/overview.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/requirements.txt -------------------------------------------------------------------------------- /transferattack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/__init__.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/aa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/aa.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/ata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/ata.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/bfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/bfa.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/cfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/cfm.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/danaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/danaa.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/fft.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/fia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/fia.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/fmaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/fmaa.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/fuzziness_tuned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/fuzziness_tuned.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/ila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/ila.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/ilpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/ilpd.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/ir.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/logit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/logit.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/logit_margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/logit_margin.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/naa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/naa.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/p2fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/p2fa.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/potrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/potrip.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/rpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/rpa.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/taig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/taig.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/tap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/tap.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/trap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/trap.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/yaila/yaila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/yaila/yaila.py -------------------------------------------------------------------------------- /transferattack/advanced_objective/yaila/yaila_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/advanced_objective/yaila/yaila_utils.py -------------------------------------------------------------------------------- /transferattack/attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/attack.py -------------------------------------------------------------------------------- /transferattack/ensemble/adaea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/adaea.py -------------------------------------------------------------------------------- /transferattack/ensemble/cwa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/cwa.py -------------------------------------------------------------------------------- /transferattack/ensemble/ens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/ens.py -------------------------------------------------------------------------------- /transferattack/ensemble/lgv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/lgv.py -------------------------------------------------------------------------------- /transferattack/ensemble/mba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/mba.py -------------------------------------------------------------------------------- /transferattack/ensemble/sasd_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/sasd_ws.py -------------------------------------------------------------------------------- /transferattack/ensemble/smer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/smer.py -------------------------------------------------------------------------------- /transferattack/ensemble/svre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/ensemble/svre.py -------------------------------------------------------------------------------- /transferattack/generation/ada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/generation/ada.py -------------------------------------------------------------------------------- /transferattack/generation/cdtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/generation/cdtp.py -------------------------------------------------------------------------------- /transferattack/generation/diffattack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/generation/diffattack.py -------------------------------------------------------------------------------- /transferattack/generation/ge_advgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/generation/ge_advgan.py -------------------------------------------------------------------------------- /transferattack/generation/ltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/generation/ltp.py -------------------------------------------------------------------------------- /transferattack/generation/m3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/generation/m3d.py -------------------------------------------------------------------------------- /transferattack/generation/ttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/generation/ttp.py -------------------------------------------------------------------------------- /transferattack/gradient/aifgtm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/aifgtm.py -------------------------------------------------------------------------------- /transferattack/gradient/anda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/anda.py -------------------------------------------------------------------------------- /transferattack/gradient/dta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/dta.py -------------------------------------------------------------------------------- /transferattack/gradient/emifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/emifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/fgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/fgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/fgsra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/fgsra.py -------------------------------------------------------------------------------- /transferattack/gradient/foolmix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/foolmix.py -------------------------------------------------------------------------------- /transferattack/gradient/gaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/gaa.py -------------------------------------------------------------------------------- /transferattack/gradient/gifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/gifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/gnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/gnp.py -------------------------------------------------------------------------------- /transferattack/gradient/gra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/gra.py -------------------------------------------------------------------------------- /transferattack/gradient/iefgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/iefgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/ifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/ifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/ifgssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/ifgssm.py -------------------------------------------------------------------------------- /transferattack/gradient/mef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/mef.py -------------------------------------------------------------------------------- /transferattack/gradient/mifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/mifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/mifgsm_with_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/mifgsm_with_tricks.py -------------------------------------------------------------------------------- /transferattack/gradient/mig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/mig.py -------------------------------------------------------------------------------- /transferattack/gradient/mumodig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/mumodig.py -------------------------------------------------------------------------------- /transferattack/gradient/nifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/nifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/pcifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/pcifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/pgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/pgn.py -------------------------------------------------------------------------------- /transferattack/gradient/pifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/pifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/rap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/rap.py -------------------------------------------------------------------------------- /transferattack/gradient/smifgrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/smifgrm.py -------------------------------------------------------------------------------- /transferattack/gradient/vaifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/vaifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/vmifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/vmifgsm.py -------------------------------------------------------------------------------- /transferattack/gradient/vnifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/gradient/vnifgsm.py -------------------------------------------------------------------------------- /transferattack/input_transformation/admix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/admix.py -------------------------------------------------------------------------------- /transferattack/input_transformation/aitl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/aitl.py -------------------------------------------------------------------------------- /transferattack/input_transformation/atta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/atta.py -------------------------------------------------------------------------------- /transferattack/input_transformation/bsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/bsr.py -------------------------------------------------------------------------------- /transferattack/input_transformation/decowa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/decowa.py -------------------------------------------------------------------------------- /transferattack/input_transformation/dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/dem.py -------------------------------------------------------------------------------- /transferattack/input_transformation/dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/dim.py -------------------------------------------------------------------------------- /transferattack/input_transformation/idaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/idaa.py -------------------------------------------------------------------------------- /transferattack/input_transformation/l2t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/l2t.py -------------------------------------------------------------------------------- /transferattack/input_transformation/lpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/lpm.py -------------------------------------------------------------------------------- /transferattack/input_transformation/maskblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/maskblock.py -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/11.jpg -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/13.jpg -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/1ball.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/1ball.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/1ball.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/1ball.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/2ball.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/2ball.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/2ball.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/2ball.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/3ball.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/3ball.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/3ball.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/3ball.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/4ball.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/4ball.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/4ball.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/4ball.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/6.jpg -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/7.jpg -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/Book_texture_RYOKAN.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/Book_texture_RYOKAN.JPG -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/Untitled.png -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/book.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/book.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/book.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/book.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/clock.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/clock.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/clock.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/clock.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/cup.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/cup.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/cup.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/cup.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/kwi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/kwi.jpg -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/pack.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/pack.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/pack1.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/pack1.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/pillow.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/pillow.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/pillow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/pillow.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/t_shirt_lowpoly.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/t_shirt_lowpoly.mtl -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/obj/t_shirt_lowpoly.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/obj/t_shirt_lowpoly.obj -------------------------------------------------------------------------------- /transferattack/input_transformation/odi/odi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/odi/odi.py -------------------------------------------------------------------------------- /transferattack/input_transformation/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/ops.py -------------------------------------------------------------------------------- /transferattack/input_transformation/pam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/pam.py -------------------------------------------------------------------------------- /transferattack/input_transformation/sia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/sia.py -------------------------------------------------------------------------------- /transferattack/input_transformation/sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/sim.py -------------------------------------------------------------------------------- /transferattack/input_transformation/ssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/ssm.py -------------------------------------------------------------------------------- /transferattack/input_transformation/ssm_with_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/ssm_with_tricks.py -------------------------------------------------------------------------------- /transferattack/input_transformation/stm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/stm.py -------------------------------------------------------------------------------- /transferattack/input_transformation/su.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/su.py -------------------------------------------------------------------------------- /transferattack/input_transformation/tim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/tim.py -------------------------------------------------------------------------------- /transferattack/input_transformation/usmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/input_transformation/usmm.py -------------------------------------------------------------------------------- /transferattack/model_related/ags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ags.py -------------------------------------------------------------------------------- /transferattack/model_related/ana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ana.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/ViT_LRP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/ViT_LRP.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/ViT_explanation_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/ViT_explanation_generator.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/helpers.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/layer_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/layer_helpers.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit_utils/Transformer_Explainability/baselines/ViT/weight_init.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/modules/layers_ours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit_utils/Transformer_Explainability/modules/layers_ours.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/Transformer_Explainability/samples/CLS2IDX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ata_vit_utils/Transformer_Explainability/samples/CLS2IDX.py -------------------------------------------------------------------------------- /transferattack/model_related/ata_vit_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transferattack/model_related/att.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/att.py -------------------------------------------------------------------------------- /transferattack/model_related/awt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/awt.py -------------------------------------------------------------------------------- /transferattack/model_related/bpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/bpa.py -------------------------------------------------------------------------------- /transferattack/model_related/dhf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/dhf.py -------------------------------------------------------------------------------- /transferattack/model_related/dhf_networks/inc_res_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/dhf_networks/inc_res_v2.py -------------------------------------------------------------------------------- /transferattack/model_related/dhf_networks/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/dhf_networks/inception.py -------------------------------------------------------------------------------- /transferattack/model_related/dhf_networks/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/dhf_networks/resnet.py -------------------------------------------------------------------------------- /transferattack/model_related/dhf_networks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/dhf_networks/utils.py -------------------------------------------------------------------------------- /transferattack/model_related/dra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/dra.py -------------------------------------------------------------------------------- /transferattack/model_related/dsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/dsm.py -------------------------------------------------------------------------------- /transferattack/model_related/faug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/faug.py -------------------------------------------------------------------------------- /transferattack/model_related/fpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/fpr.py -------------------------------------------------------------------------------- /transferattack/model_related/ghost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ghost.py -------------------------------------------------------------------------------- /transferattack/model_related/ghost_networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transferattack/model_related/ghost_networks/inc_res_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ghost_networks/inc_res_v2.py -------------------------------------------------------------------------------- /transferattack/model_related/ghost_networks/inc_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ghost_networks/inc_v3.py -------------------------------------------------------------------------------- /transferattack/model_related/ghost_networks/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ghost_networks/resnet.py -------------------------------------------------------------------------------- /transferattack/model_related/iaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/iaa.py -------------------------------------------------------------------------------- /transferattack/model_related/linbp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/linbp.py -------------------------------------------------------------------------------- /transferattack/model_related/ll2s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ll2s.py -------------------------------------------------------------------------------- /transferattack/model_related/llta_networks/llta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/llta_networks/llta.py -------------------------------------------------------------------------------- /transferattack/model_related/llta_networks/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/llta_networks/models/__init__.py -------------------------------------------------------------------------------- /transferattack/model_related/llta_networks/models/decaydensenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/llta_networks/models/decaydensenet.py -------------------------------------------------------------------------------- /transferattack/model_related/llta_networks/models/decayrelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/llta_networks/models/decayrelu.py -------------------------------------------------------------------------------- /transferattack/model_related/llta_networks/models/decayresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/llta_networks/models/decayresnet.py -------------------------------------------------------------------------------- /transferattack/model_related/llta_networks/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/llta_networks/models/utils.py -------------------------------------------------------------------------------- /transferattack/model_related/ma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/ma.py -------------------------------------------------------------------------------- /transferattack/model_related/metassa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/metassa.py -------------------------------------------------------------------------------- /transferattack/model_related/mta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/mta.py -------------------------------------------------------------------------------- /transferattack/model_related/mup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/mup.py -------------------------------------------------------------------------------- /transferattack/model_related/pna_patchout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/pna_patchout.py -------------------------------------------------------------------------------- /transferattack/model_related/sapr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/sapr.py -------------------------------------------------------------------------------- /transferattack/model_related/setr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/__init__.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/deit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/deit.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/deit_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/deit_ensemble.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/swin_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/swin_transformer.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/t2t_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/t2t_vit.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/t2t_vit_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/t2t_vit_dense.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/t2t_vit_ghost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/t2t_vit_ghost.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/t2t_vit_se.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/t2t_vit_se.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/tnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/tnt.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/token_performer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/token_performer.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/token_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/token_transformer.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/transformer_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/transformer_block.py -------------------------------------------------------------------------------- /transferattack/model_related/setr_networks/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/setr_networks/vit.py -------------------------------------------------------------------------------- /transferattack/model_related/sgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/sgm.py -------------------------------------------------------------------------------- /transferattack/model_related/tgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/tgr.py -------------------------------------------------------------------------------- /transferattack/model_related/vdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/model_related/vdc.py -------------------------------------------------------------------------------- /transferattack/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trustworthy-AI-Group/TransferAttack/HEAD/transferattack/utils.py --------------------------------------------------------------------------------