From 818e3dbc8e34f0df0c45f9fdd1320a60eb8d16cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Ayuso=20Mu=C3=B1oz?= Date: Thu, 29 Jun 2023 12:15:34 +0200 Subject: [PATCH] Delete line break. --- autoencoder.py | 1 - 1 file changed, 1 deletion(-) diff --git a/autoencoder.py b/autoencoder.py index 17dcd72..8ae2963 100644 --- a/autoencoder.py +++ b/autoencoder.py @@ -14,7 +14,6 @@ class GCNEncoder(torch.nn.Module): in_channels: Size of the input embeddings. out_channels: Size of the output embeddings. """ - def __init__(self, in_channels, out_channels): super(GCNEncoder, self).__init__() self.conv1 = SAGEConv(in_channels, 2 * out_channels) # cached only for transductive learning -- 2.24.1