Upload folder using huggingface_hub
Browse files- README.md +1 -1
- config.json +41 -35
- pytorch_model.bin +2 -2
README.md
CHANGED
@@ -39,7 +39,7 @@ Data is prepared with the `ocf_datapipes.training.pvnet` datapipe [2].
|
|
39 |
## Results
|
40 |
|
41 |
The training logs for the current model can be found here:
|
42 |
-
- [https://wandb.ai/openclimatefix/pvnet2.1/runs/
|
43 |
|
44 |
|
45 |
The training logs for all model runs of PVNet2 can be found [here](https://wandb.ai/openclimatefix/pvnet2.1).
|
|
|
39 |
## Results
|
40 |
|
41 |
The training logs for the current model can be found here:
|
42 |
+
- [https://wandb.ai/openclimatefix/pvnet2.1/runs/kqaknmuc](https://wandb.ai/openclimatefix/pvnet2.1/runs/kqaknmuc)
|
43 |
|
44 |
|
45 |
The training logs for all model runs of PVNet2 can be found [here](https://wandb.ai/openclimatefix/pvnet2.1).
|
config.json
CHANGED
@@ -12,33 +12,11 @@
|
|
12 |
0.9,
|
13 |
0.98
|
14 |
],
|
15 |
-
"output_network": {
|
16 |
-
"_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
|
17 |
-
"_partial_": true,
|
18 |
-
"fc_hidden_features": 128,
|
19 |
-
"n_res_blocks": 6,
|
20 |
-
"res_block_layers": 2,
|
21 |
-
"dropout_frac": 0.0
|
22 |
-
},
|
23 |
-
"embedding_dim": 16,
|
24 |
-
"include_sun": true,
|
25 |
-
"include_gsp_yield_history": false,
|
26 |
-
"forecast_minutes": 480,
|
27 |
-
"history_minutes": 120,
|
28 |
-
"optimizer": {
|
29 |
-
"_target_": "pvnet.optimizers.EmbAdamWReduceLROnPlateau",
|
30 |
-
"lr": 0.0001,
|
31 |
-
"weight_decay": 0.25,
|
32 |
-
"amsgrad": true,
|
33 |
-
"patience": 5,
|
34 |
-
"factor": 0.1,
|
35 |
-
"threshold": 0.002
|
36 |
-
},
|
37 |
"nwp_encoders_dict": {
|
38 |
"ukv": {
|
39 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
40 |
"_partial_": true,
|
41 |
-
"in_channels":
|
42 |
"out_features": 256,
|
43 |
"number_of_conv3d_layers": 6,
|
44 |
"conv3d_channels": 32,
|
@@ -47,13 +25,43 @@
|
|
47 |
"ecmwf": {
|
48 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
49 |
"_partial_": true,
|
50 |
-
"in_channels":
|
51 |
"out_features": 256,
|
52 |
"number_of_conv3d_layers": 4,
|
53 |
"conv3d_channels": 32,
|
54 |
"image_size_pixels": 12
|
55 |
}
|
56 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
"nwp_history_minutes": {
|
58 |
"ukv": 120,
|
59 |
"ecmwf": 120
|
@@ -62,18 +70,16 @@
|
|
62 |
"ukv": 480,
|
63 |
"ecmwf": 480
|
64 |
},
|
65 |
-
"
|
66 |
-
|
67 |
-
"
|
68 |
-
"
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"image_size_pixels": 24
|
74 |
},
|
75 |
-
"
|
76 |
-
"sat_history_minutes": 90
|
77 |
}
|
78 |
]
|
79 |
}
|
|
|
12 |
0.9,
|
13 |
0.98
|
14 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
"nwp_encoders_dict": {
|
16 |
"ukv": {
|
17 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
18 |
"_partial_": true,
|
19 |
+
"in_channels": 11,
|
20 |
"out_features": 256,
|
21 |
"number_of_conv3d_layers": 6,
|
22 |
"conv3d_channels": 32,
|
|
|
25 |
"ecmwf": {
|
26 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
27 |
"_partial_": true,
|
28 |
+
"in_channels": 12,
|
29 |
"out_features": 256,
|
30 |
"number_of_conv3d_layers": 4,
|
31 |
"conv3d_channels": 32,
|
32 |
"image_size_pixels": 12
|
33 |
}
|
34 |
},
|
35 |
+
"sat_encoder": {
|
36 |
+
"_target_": "pvnet.models.multimodal.encoders.encoders3d.ResConv3DNet2",
|
37 |
+
"_partial_": true,
|
38 |
+
"in_channels": 11,
|
39 |
+
"out_features": 256,
|
40 |
+
"image_size_pixels": 24,
|
41 |
+
"hidden_channels": 32,
|
42 |
+
"n_res_blocks": 3,
|
43 |
+
"res_block_layers": 3,
|
44 |
+
"batch_norm": true,
|
45 |
+
"dropout_frac": 0.0
|
46 |
+
},
|
47 |
+
"add_image_embedding_channel": false,
|
48 |
+
"pv_encoder": null,
|
49 |
+
"output_network": {
|
50 |
+
"_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
|
51 |
+
"_partial_": true,
|
52 |
+
"fc_hidden_features": 128,
|
53 |
+
"n_res_blocks": 6,
|
54 |
+
"res_block_layers": 2,
|
55 |
+
"dropout_frac": 0.0
|
56 |
+
},
|
57 |
+
"embedding_dim": 16,
|
58 |
+
"include_sun": true,
|
59 |
+
"include_gsp_yield_history": false,
|
60 |
+
"forecast_minutes": 480,
|
61 |
+
"history_minutes": 120,
|
62 |
+
"min_sat_delay_minutes": 60,
|
63 |
+
"sat_history_minutes": 90,
|
64 |
+
"pv_history_minutes": 180,
|
65 |
"nwp_history_minutes": {
|
66 |
"ukv": 120,
|
67 |
"ecmwf": 120
|
|
|
70 |
"ukv": 480,
|
71 |
"ecmwf": 480
|
72 |
},
|
73 |
+
"optimizer": {
|
74 |
+
"_target_": "pvnet.optimizers.EmbAdamWReduceLROnPlateau",
|
75 |
+
"lr": 0.0001,
|
76 |
+
"weight_decay": 0.25,
|
77 |
+
"amsgrad": true,
|
78 |
+
"patience": 5,
|
79 |
+
"factor": 0.1,
|
80 |
+
"threshold": 0.002
|
|
|
81 |
},
|
82 |
+
"adapt_batches": true
|
|
|
83 |
}
|
84 |
]
|
85 |
}
|
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:13be12c61da96a71ec3acb2cf5fd8ee4cdcd717748b0ec5d6e9fde1a9b2ce42b
|
3 |
+
size 34551350
|