Skip to content

Commit 75fed44

Browse files
Solving recomendations
1 parent 7c8dfeb commit 75fed44

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

GraphNeuralNetworks/src/layers/temporalconv.jl

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ EvolveGCNO(args...; kws...) = GNNRecurrence(EvolveGCNOCell(args...; kws...))
758758

759759

760760
"""
761-
TGCNCell(in => out; act = relu, kws...)
761+
TGCNCell(in => out, act = relu, kws...)
762762
763763
Recurrent graph convolutional cell from the paper
764764
[T-GCN: A Temporal Graph Convolutional
@@ -860,17 +860,13 @@ function Base.show(io::IO, cell::TGCNCell)
860860
end
861861

862862
"""
863-
TGCN(args...; act = relu, kws...)
863+
TGCN(args...; kws...)
864864
865865
Construct a recurrent layer corresponding to the [`TGCNCell`](@ref) cell.
866866
867867
The arguments are passed to the [`TGCNCell`](@ref) constructor.
868868
See [`GNNRecurrence`](@ref) for more details.
869869
870-
# Additional Parameters
871-
872-
- `act`: Activation function for the GCNConv layers. Default `relu`.
873-
874870
# Examples
875871
876872
```jldoctest
@@ -902,6 +898,6 @@ julia> size(y) # (d_out, timesteps, num_nodes)
902898
(3, 5, 5)
903899
```
904900
"""
905-
TGCN(args...; act = relu, kws...) =
906-
GNNRecurrence(TGCNCell(args...; act, kws...))
901+
TGCN(args...; kws...) =
902+
GNNRecurrence(TGCNCell(args...; kws...))
907903

0 commit comments

Comments
 (0)