From 1b76cc6ce26dea851ceec25ddd96c207bf4cff14 Mon Sep 17 00:00:00 2001 From: czzhangheng Date: Thu, 27 Mar 2025 20:08:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96GWN=EF=BC=8C=20ddgcrn?= =?UTF-8?q?=E7=9A=84=E4=BB=A3=E7=A0=81=EF=BC=8C=E4=BD=BF=E5=85=B6=E6=9B=B4?= =?UTF-8?q?=E7=AE=80=E6=B4=81=E6=98=93=E8=AF=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- model/DDGCRN/DDGCRN.py | 1 + 1 file changed, 1 insertion(+) diff --git a/model/DDGCRN/DDGCRN.py b/model/DDGCRN/DDGCRN.py index cdf1cc9..368b3dc 100644 --- a/model/DDGCRN/DDGCRN.py +++ b/model/DDGCRN/DDGCRN.py @@ -116,3 +116,4 @@ class DGCN(nn.Module): D_inv = torch.diag_embed(torch.sum(graph, -1) ** (-0.5)) return torch.matmul(torch.matmul(D_inv, graph), D_inv) if normalize else torch.matmul( torch.matmul(D_inv, graph + I), D_inv) + \ No newline at end of file