From 5eee351dcdfd7e3ba7c37dc219ec0c0b878ebaca Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Wed, 6 Jan 2021 20:58:41 -0800 Subject: [PATCH] nn.SiLU() citation correction (#1713) --- utils/activations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/activations.py b/utils/activations.py index 954d2e1989c5..aa3ddf071d28 100644 --- a/utils/activations.py +++ b/utils/activations.py @@ -5,7 +5,7 @@ import torch.nn.functional as F -# SiLU https://arxiv.org/pdf/1905.02244.pdf ---------------------------------------------------------------------------- +# SiLU https://arxiv.org/pdf/1606.08415.pdf ---------------------------------------------------------------------------- class SiLU(nn.Module): # export-friendly version of nn.SiLU() @staticmethod def forward(x):