peterdudfield
commited on
Commit
cfcc5b5
• 1
Parent(s):
471280c
Add model
Browse files- README.md +49 -0
- config.json +1 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- nowcasting
|
5 |
+
- forecasting
|
6 |
+
- timeseries
|
7 |
+
- remote-sensing
|
8 |
+
---
|
9 |
+
|
10 |
+
# Nowcasting CNN
|
11 |
+
|
12 |
+
## Model description
|
13 |
+
|
14 |
+
3d conv model, that takes in different data streams
|
15 |
+
|
16 |
+
architecture is roughly
|
17 |
+
1. satellite image time series goes into many 3d convolution layers.
|
18 |
+
2. nwp time series goes into many 3d convolution layers.
|
19 |
+
3. Final convolutional layer goes to full connected layer. This is joined by
|
20 |
+
other data inputs like
|
21 |
+
- pv yield
|
22 |
+
- time variables
|
23 |
+
Then there ~4 fully connected layers which end up forecasting the
|
24 |
+
pv yield / gsp into the future
|
25 |
+
|
26 |
+
## Intended uses & limitations
|
27 |
+
|
28 |
+
Forecasting short term PV power for different regions and nationally in the UK
|
29 |
+
|
30 |
+
## How to use
|
31 |
+
|
32 |
+
[More information needed]
|
33 |
+
|
34 |
+
## Limitations and bias
|
35 |
+
|
36 |
+
[More information needed]
|
37 |
+
|
38 |
+
## Training data
|
39 |
+
|
40 |
+
Training data is EUMETSAT RSS imagery over the UK, on-the-ground PV data, and NWP predictions.
|
41 |
+
|
42 |
+
## Training procedure
|
43 |
+
|
44 |
+
[More information needed]
|
45 |
+
|
46 |
+
## Evaluation results
|
47 |
+
|
48 |
+
[More information needed]
|
49 |
+
|
config.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"include_pv_or_gsp_yield_history": true, "include_nwp": true, "forecast_minutes": 120, "history_minutes": 30, "number_of_conv3d_layers": 6, "conv3d_channels": 32, "image_size_pixels": 24, "nwp_image_size_pixels": 64, "number_sat_channels": 11, "number_nwp_channels": 1, "fc1_output_features": 128, "fc2_output_features": 128, "fc3_output_features": 64, "output_variable": "gsp_yield", "embedding_dem": 8, "include_pv_yield_history": true, "include_future_satellite": false, "live_satellite_images": true, "gsp_forecast_minutes": 480, "gsp_history_minutes": 120, "include_sun": true}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:02aed3680db164d9ece24b158d5facaf34fc03687bb36d3ed19362acf1a86cb3
|
3 |
+
size 181497514
|