Upload folder using huggingface_hub
Browse files- README.md +56 -3
- config.json +32 -0
- pytorch_model.bin +3 -0
README.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
license: mit
|
4 |
+
library_name: pytorch
|
5 |
+
---
|
6 |
+
|
7 |
+
|
8 |
+
|
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
|
21 |
+
- **Language(s) (NLP):** en
|
22 |
+
- **License:** mit
|
23 |
+
|
24 |
+
|
25 |
+
# Training Details
|
26 |
+
|
27 |
+
## Data
|
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 2017-2020 and validated on data from 2021. 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_datapipes.training.pvnet` datapipe [3].
|
37 |
+
|
38 |
+
|
39 |
+
## Results
|
40 |
+
|
41 |
+
The training logs for the current model can be found [here on wandb](https://wandb.ai/openclimatefix/pvnet_summation/runs/).
|
42 |
+
|
43 |
+
The training logs for all model runs of PVNet_summation can be found [here](https://wandb.ai/openclimatefix/pvnet_summation).
|
44 |
+
|
45 |
+
Some experimental notes can be found at in [the google doc](https://docs.google.com/document/d/1fbkfkBzp16WbnCg7RDuRDvgzInA6XQu3xh4NCjV-WDA/edit?usp=sharing)
|
46 |
+
|
47 |
+
|
48 |
+
### Hardware
|
49 |
+
|
50 |
+
Trained on a single NVIDIA Tesla T4
|
51 |
+
|
52 |
+
### Software
|
53 |
+
|
54 |
+
- [1] https://github.com/openclimatefix/PVNet_summation
|
55 |
+
- [2] https://github.com/openclimatefix/PVNet
|
56 |
+
- [3] https://github.com/openclimatefix/ocf_datapipes
|
config.json
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_target_": "pvnet_summation.models.flat_model.FlatModel",
|
3 |
+
"output_quantiles": [
|
4 |
+
0.02,
|
5 |
+
0.1,
|
6 |
+
0.25,
|
7 |
+
0.5,
|
8 |
+
0.75,
|
9 |
+
0.9,
|
10 |
+
0.98
|
11 |
+
],
|
12 |
+
"model_name": "openclimatefix/pvnet_uk_region_day_ahead",
|
13 |
+
"model_version": "d87565731692a6003e43caac4feaed0f69e79272",
|
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 |
+
"predict_difference_from_sum": false,
|
23 |
+
"optimizer": {
|
24 |
+
"_target_": "pvnet.optimizers.AdamWReduceLROnPlateau",
|
25 |
+
"lr": 0.0001,
|
26 |
+
"weight_decay": 0.25,
|
27 |
+
"amsgrad": true,
|
28 |
+
"patience": 10,
|
29 |
+
"factor": 0.1,
|
30 |
+
"threshold": 0.0
|
31 |
+
}
|
32 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:17561f716f5e460abb12078493c58db16abf1297a353d236ceaf5450565b8312
|
3 |
+
size 176615346
|