From 3ddb206b8e95eaf538fb628bb684f9be2fae3a49 Mon Sep 17 00:00:00 2001 From: Shangbo Wu Date: Sat, 25 Jan 2025 23:11:33 +0800 Subject: [PATCH] Fix url not rendered --- torchattack/mig.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/torchattack/mig.py b/torchattack/mig.py index f8e1b73..18ac9f3 100644 --- a/torchattack/mig.py +++ b/torchattack/mig.py @@ -11,8 +11,7 @@ class MIG(Attack): """The MIG (Momentum Integrated Gradients) attack. From the paper: [Transferable Adversarial Attack for Both Vision Transformers and - Convolutional Networks via Momentum Integrated Gradients] - (https://openaccess.thecvf.com/content/ICCV2023/html/Ma_Transferable_Adversarial_Attack_for_Both_Vision_Transformers_and_Convolutional_Networks_ICCV_2023_paper.html). + Convolutional Networks via Momentum Integrated Gradients](https://openaccess.thecvf.com/content/ICCV2023/html/Ma_Transferable_Adversarial_Attack_for_Both_Vision_Transformers_and_Convolutional_Networks_ICCV_2023_paper.html). Args: model: The model to attack.