Upload folder using huggingface_hub
Browse files- README.md +10 -11
- config.json +3 -12
- pytorch_model.bin +2 -2
README.md
CHANGED
@@ -9,12 +9,12 @@ license: mit
|
|
9 |
|
10 |
|
11 |
|
12 |
-
#
|
13 |
|
14 |
## Model Description
|
15 |
|
16 |
<!-- Provide a longer summary of what this model is/does. -->
|
17 |
-
This model class
|
18 |
|
19 |
- **Developed by:** openclimatefix
|
20 |
- **Model type:** Fusion model
|
@@ -28,21 +28,21 @@ This model class sums the output of the PVNet model's GSP level predictions to m
|
|
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
|
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 |
-
|
39 |
|
40 |
|
41 |
## Results
|
42 |
|
43 |
-
The training logs for the current model can be found
|
|
|
44 |
|
45 |
-
|
|
|
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,6 +53,5 @@ Trained on a single NVIDIA Tesla T4
|
|
53 |
|
54 |
### Software
|
55 |
|
56 |
-
- [1] https://github.com/openclimatefix/
|
57 |
-
- [2] https://github.com/openclimatefix/
|
58 |
-
- [3] https://github.com/openclimatefix/ocf-data-sampler
|
|
|
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 |
|
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/kknmvrpq](https://wandb.ai/None/runs/kknmvrpq)
|
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 |
|
54 |
### Software
|
55 |
|
56 |
+
- [1] https://github.com/openclimatefix/PVNet
|
57 |
+
- [2] https://github.com/openclimatefix/ocf-data-sampler
|
|
config.json
CHANGED
@@ -1,16 +1,8 @@
|
|
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",
|
13 |
-
"model_version": "
|
14 |
"output_network": {
|
15 |
"_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
|
16 |
"_partial_": true,
|
@@ -19,8 +11,7 @@
|
|
19 |
"res_block_layers": 2,
|
20 |
"dropout_frac": 0.0
|
21 |
},
|
22 |
-
"
|
23 |
-
"predict_difference_from_sum": true,
|
24 |
"optimizer": {
|
25 |
"_target_": "pvnet.optimizers.AdamWReduceLROnPlateau",
|
26 |
"lr": 0.0001,
|
|
|
1 |
{
|
2 |
"_target_": "pvnet_summation.models.flat_model.FlatModel",
|
3 |
+
"output_quantiles": null,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
"model_name": "openclimatefix/pvnet_uk_region",
|
5 |
+
"model_version": "f3135c47eb0f21320dbd8c590bdd03dfafc39bca",
|
6 |
"output_network": {
|
7 |
"_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
|
8 |
"_partial_": true,
|
|
|
11 |
"res_block_layers": 2,
|
12 |
"dropout_frac": 0.0
|
13 |
},
|
14 |
+
"predict_difference_from_sum": true,
|
|
|
15 |
"optimizer": {
|
16 |
"_target_": "pvnet.optimizers.AdamWReduceLROnPlateau",
|
17 |
"lr": 0.0001,
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c27012b38e81a8711e5362f2f2f1813907e171251957353753c388f8a8e4affb
|
3 |
+
size 81298030
|