You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update documentation for convolutions on TemporalSnapshotsGNNGraphs (#379)
* Update table add GINConv
* Add example in the docs
* Fix spaces and name
Co-authored-by: Carlo Lucibello <[email protected]>
* Fix other spaces
---------
Co-authored-by: Carlo Lucibello <[email protected]>
-*Edge Features*: supports feature vectors on edges.
15
15
-*Heterograph*: supports heterogeneous graphs (see [`GNNHeteroGraph`](@ref)).
16
+
-*TemporalSnapshotsGNNGraphs*: supports temporal graphs (see [`TemporalSnapshotsGNNGraph`](@ref)) by applying the convolution layers to each snapshot independently.
Copy file name to clipboardExpand all lines: docs/src/temporalgraph.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,3 +121,23 @@ julia> tg.ndata # vector of Datastore for node features
121
121
julia> typeof(tg.ndata.x) # vector containing the x feature of each snapshot
122
122
Vector{Matrix{Float64}}
123
123
```
124
+
125
+
## Graph convolutions on TemporalSnapshotsGNNGraph
126
+
127
+
A graph convolutional layer can be applied to each snapshot independently, in the next example we apply a `GINConv` layer to each snapshot of a `TemporalSnapshotsGNNGraph`. The list of compatible graph convolution layers can be found [here](api/conv.md).
0 commit comments