james-ocf commited on
Commit
de60f79
·
verified ·
1 Parent(s): 7057e8c

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +11 -10
  2. config.json +3 -2
  3. pytorch_model.bin +2 -2
README.md CHANGED
@@ -9,12 +9,12 @@ license: mit
9
 
10
 
11
 
12
- # PVNet2
13
 
14
  ## Model Description
15
 
16
  <!-- Provide a longer summary of what this model is/does. -->
17
- This model class uses satellite data, numerical weather predictions, and recent Grid Service Point( GSP) PV power output to forecast the near-term (~8 hours) PV power output at all GSPs. More information can be found in the model repo [1] and experimental notes in [this google doc](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing).
18
 
19
  - **Developed by:** openclimatefix
20
  - **Model type:** Fusion model
@@ -28,21 +28,21 @@ This model class uses satellite data, numerical weather predictions, and recent
28
 
29
  <!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
30
 
31
- The model is trained on data from 2019-2022 and validated on data from 2022-2023. See experimental notes in the [the google doc](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing) for more details.
 
 
32
 
33
 
34
  ### Preprocessing
35
 
36
- Data is prepared with the `ocf_data_sampler/torch_datasets/datasets/pvnet_uk` Dataset [2].
37
 
38
 
39
  ## Results
40
 
41
- The training logs for the current model can be found here:
42
- - [https://wandb.ai/None/runs/1w638yac](https://wandb.ai/None/runs/1w638yac)
43
 
44
-
45
- The training logs for all model runs of PVNet2 can be found [here](https://wandb.ai/openclimatefix/pvnet2.1).
46
 
47
  Some experimental notes can be found at in [the google doc](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing)
48
 
@@ -53,5 +53,6 @@ Trained on a single NVIDIA Tesla T4
53
 
54
  ### Software
55
 
56
- - [1] https://github.com/openclimatefix/PVNet
57
- - [2] https://github.com/openclimatefix/ocf-data-sampler
 
 
9
 
10
 
11
 
12
+ # PVNet_summation
13
 
14
  ## Model Description
15
 
16
  <!-- Provide a longer summary of what this model is/does. -->
17
+ This model class sums the output of the PVNet model's GSP level predictions to make a national forecast of UK PV output. More information can be found in the model repo [1], the PVNet model repo [2], and experimental notes in [this google doc](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing).
18
 
19
  - **Developed by:** openclimatefix
20
  - **Model type:** Fusion model
 
28
 
29
  <!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
30
 
31
+ The model is trained on the output predictions of our PVNet model which gives GSP (i.e. UK regional) level predictions
32
+ of solar power across Great Britain. This model is trained to take those predictions and use them to estimate
33
+ the national total with uncertainty estimates.
34
 
35
 
36
  ### Preprocessing
37
 
38
+ The input data is prepared with the `ocf_data_sampler` [3].
39
 
40
 
41
  ## Results
42
 
43
+ The training logs for the current model can be found [here on wandb](https://wandb.ai/openclimatefix/pvnet_summation/runs/).
 
44
 
45
+ The training logs for all model runs of PVNet_summation can be found [here](https://wandb.ai/openclimatefix/pvnet_summation).
 
46
 
47
  Some experimental notes can be found at in [the google doc](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing)
48
 
 
53
 
54
  ### Software
55
 
56
+ - [1] https://github.com/openclimatefix/PVNet_summation
57
+ - [2] https://github.com/openclimatefix/PVNet
58
+ - [3] https://github.com/openclimatefix/ocf-data-sampler
config.json CHANGED
@@ -10,15 +10,16 @@
10
  0.98
11
  ],
12
  "model_name": "openclimatefix/pvnet_uk_region",
13
- "model_version": "d81a9cf8adca49739ea6a3d031e36510f44744a1",
14
  "output_network": {
15
  "_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
16
  "_partial_": true,
17
  "fc_hidden_features": 128,
18
  "n_res_blocks": 2,
19
  "res_block_layers": 2,
20
- "dropout_frac": 0.0
21
  },
 
22
  "predict_difference_from_sum": true,
23
  "optimizer": {
24
  "_target_": "pvnet.optimizers.AdamWReduceLROnPlateau",
 
10
  0.98
11
  ],
12
  "model_name": "openclimatefix/pvnet_uk_region",
13
+ "model_version": "963d0cc47d6c9df9a08b9e05f8fd064a637346ba",
14
  "output_network": {
15
  "_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
16
  "_partial_": true,
17
  "fc_hidden_features": 128,
18
  "n_res_blocks": 2,
19
  "res_block_layers": 2,
20
+ "dropout_frac": 0.1
21
  },
22
+ "relative_scale_pvnet_outputs": false,
23
  "predict_difference_from_sum": true,
24
  "optimizer": {
25
  "_target_": "pvnet.optimizers.AdamWReduceLROnPlateau",
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f9b42586aeff8186593fd3a5258b634480cb58605517030adb907f69838ca136
3
- size 95552878
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c021dc0190e51f464d3bee3c880694fe0d7642bad03d1a82d35ab415327be0e
3
+ size 100831838