From 9b11801cb4412c197b8c68e8b46b1c75cdbdf258 Mon Sep 17 00:00:00 2001 From: Fernando Cossio <39391180+fcossio@users.noreply.github.com> Date: Thu, 16 May 2024 22:50:34 +0200 Subject: [PATCH] Credit earlier work with the same idea. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hi, this earlier work has the same name and idea behind this layer. It could be useful for readers to keep both links here if they want to see the effects of introducing this layer on a very different domain. 😄 --- timm/layers/patch_dropout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timm/layers/patch_dropout.py b/timm/layers/patch_dropout.py index 32dd1519..4428fe04 100644 --- a/timm/layers/patch_dropout.py +++ b/timm/layers/patch_dropout.py @@ -6,7 +6,7 @@ import torch.nn as nn class PatchDropout(nn.Module): """ - https://arxiv.org/abs/2212.00794 + https://arxiv.org/abs/2212.00794 and https://arxiv.org/pdf/2208.07220 """ return_indices: torch.jit.Final[bool]