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
The WindMillEnergy dataset contains a collection hourly energy output of windmills from a European country for more than 2 years.
64
+
65
+
`WindMillEnergy` is a graph with nodes representing windmills. The edge weights represent the strength of the relationship between the windmills. The number of nodes is fixed and depends on the size of the dataset, 11 for `small`, 26 for `medium`, and 319 for `large`.
66
+
67
+
The node features and targets are the number of hourly energy output of the windmills. They are represented as an array of arrays of size `(1, num_nodes, num_timesteps_in)`. In both cases, two consecutive arrays are shifted by one-time step.
68
+
69
+
# Keyword Arguments
70
+
71
+
- `size::String`: The size of the dataset, can be `small`, `medium`, or `large`.
72
+
- `normalize::Bool`: Whether to normalize the data using Z-score normalization. Default is `true`.
73
+
- `num_timesteps_in::Int`: The number of time steps, in this case, the number of hours, for the input features. Default is `8`.
74
+
- `num_timesteps_out::Int`: The number of time steps, in this case, the number of hours, for the target values. Default is `8`.
75
+
- `dir::String`: The directory to save the dataset. Default is `nothing`.
0 commit comments