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
A type representing a temporal graph as a sequence of snapshots, in this case a snapshot is a [`GNNGraph`](@ref).
5
+
6
+
It stores the feature array associated to the graph itself as a [`DataStore`](@ref) object, and it uses the [`DataStore`](@ref) objects of each snapshot for the node and edge features.
7
+
The features can be passed at construction time or added later.
8
+
9
+
# Arguments
10
+
- snapshot: a vector of snapshots, each snapshot must have the same number of nodes.
11
+
12
+
# Examples
13
+
```julia
14
+
julia> using GraphNeuralNetworks
15
+
16
+
julia> snapshots = [rand_graph(10,20) for i in 1:5];
0 commit comments