@@ -105,8 +105,6 @@ function ChebConv(ch::Pair{Int,Int}, k::Int, σ=identity;
105
105
ChebConv (W, b, k, σ)
106
106
end
107
107
108
- @deprecate ChebConv (fg, args... ; kwargs... ) WithGraph (fg, ChebConv (args... ; kwargs... ))
109
-
110
108
@functor ChebConv
111
109
112
110
Flux. trainable (l:: ChebConv ) = (l. weight, l. bias)
@@ -197,8 +195,6 @@ function GraphConv(ch::Pair{Int,Int}, σ=identity, aggr=+;
197
195
GraphConv (W1, W2, b, σ, aggr)
198
196
end
199
197
200
- @deprecate GraphConv (fg, args... ; kwargs... ) WithGraph (fg, GraphConv (args... ; kwargs... ))
201
-
202
198
@functor GraphConv
203
199
204
200
Flux. trainable (l:: GraphConv ) = (l. weight1, l. weight2, l. bias)
@@ -287,8 +283,6 @@ function GATConv(ch::Pair{Int,Int}, σ=identity; heads::Int=1, concat::Bool=true
287
283
GATConv (W, b, a, σ, negative_slope, ch, heads, concat)
288
284
end
289
285
290
- @deprecate GATConv (fg, args... ; kwargs... ) WithGraph (fg, GATConv (args... ; kwargs... ))
291
-
292
286
@functor GATConv
293
287
294
288
Flux. trainable (l:: GATConv ) = (l. weight, l. bias, l. a)
@@ -530,8 +524,6 @@ function GatedGraphConv(out_ch::Int, num_layers::Int; aggr=+, init=glorot_unifor
530
524
GatedGraphConv (w, gru, out_ch, num_layers, aggr)
531
525
end
532
526
533
- @deprecate GatedGraphConv (fg, args... ; kwargs... ) WithGraph (fg, GatedGraphConv (args... ; kwargs... ))
534
-
535
527
@functor GatedGraphConv
536
528
537
529
Flux. trainable (l:: GatedGraphConv ) = (l. weight, l. gru)
605
597
606
598
EdgeConv (nn; aggr= max) = EdgeConv (nn, aggr)
607
599
608
- @deprecate EdgeConv (fg, args... ; kwargs... ) WithGraph (fg, EdgeConv (args... ; kwargs... ))
609
-
610
600
@functor EdgeConv
611
601
612
602
Flux. trainable (l:: EdgeConv ) = (l. nn,)
663
653
664
654
GINConv (nn, eps= 0f0 ) = GINConv (nn, eps)
665
655
666
- @deprecate GINConv (fg, args... ; kwargs... ) WithGraph (fg, GINConv (args... ; kwargs... ))
667
-
668
656
@functor GINConv
669
657
670
658
Flux. trainable (g:: GINConv ) = (g. nn,)
@@ -720,8 +708,6 @@ struct CGConv{A<:AbstractMatrix,B} <: MessagePassing
720
708
bs:: B
721
709
end
722
710
723
- @deprecate CGConv (fg, args... ; kwargs... ) WithGraph (fg, CGConv (args... ; kwargs... ))
724
-
725
711
@functor CGConv
726
712
727
713
Flux. trainable (l:: CGConv ) = (l. Wf, l. Ws, l. bf, l. bs)
0 commit comments