From 032e6169b35c4926aa99611ed2efa9dc090f56e1 Mon Sep 17 00:00:00 2001 From: Rishabh <59335537+rbSparky@users.noreply.github.com> Date: Mon, 19 Aug 2024 15:56:37 +0530 Subject: [PATCH] Update conv_tests.jl: Fix tests --- GNNLux/test/layers/conv_tests.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/GNNLux/test/layers/conv_tests.jl b/GNNLux/test/layers/conv_tests.jl index f24730777..bef265040 100644 --- a/GNNLux/test/layers/conv_tests.jl +++ b/GNNLux/test/layers/conv_tests.jl @@ -4,7 +4,7 @@ in_dims = 3 out_dims = 5 x = randn(rng, Float32, in_dims, 10) - """ + @testset "GCNConv" begin l = GCNConv(in_dims => out_dims, relu) test_lux_layer(rng, l, g, x, outputsize=(out_dims,)) @@ -93,9 +93,7 @@ l = GINConv(nn, 0.5) test_lux_layer(rng, l, g, x, sizey=(out_dims,g.num_nodes), container=true) end - """ - @testset "MEGNetConv" begin l = MEGNetConv(in_dims => out_dims)