Upload folder using huggingface_hub
Browse files- README.md +1 -1
- config.json +6 -6
- data_config.yaml +10 -16
- 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/mkzvfrfl](https://wandb.ai/openclimatefix/pvnet2.1/runs/mkzvfrfl)
|
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
@@ -10,14 +10,14 @@
|
|
10 |
0.98
|
11 |
],
|
12 |
"nwp_encoders_dict": {
|
13 |
-
"
|
14 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
15 |
"_partial_": true,
|
16 |
-
"in_channels":
|
17 |
"out_features": 256,
|
18 |
-
"number_of_conv3d_layers":
|
19 |
"conv3d_channels": 32,
|
20 |
-
"image_size_pixels":
|
21 |
}
|
22 |
},
|
23 |
"sat_encoder": null,
|
@@ -40,10 +40,10 @@
|
|
40 |
"sat_history_minutes": 90,
|
41 |
"pv_history_minutes": 180,
|
42 |
"nwp_history_minutes": {
|
43 |
-
"
|
44 |
},
|
45 |
"nwp_forecast_minutes": {
|
46 |
-
"
|
47 |
},
|
48 |
"optimizer": {
|
49 |
"_target_": "pvnet.optimizers.EmbAdamWReduceLROnPlateau",
|
|
|
10 |
0.98
|
11 |
],
|
12 |
"nwp_encoders_dict": {
|
13 |
+
"ukv": {
|
14 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
15 |
"_partial_": true,
|
16 |
+
"in_channels": 11,
|
17 |
"out_features": 256,
|
18 |
+
"number_of_conv3d_layers": 6,
|
19 |
"conv3d_channels": 32,
|
20 |
+
"image_size_pixels": 24
|
21 |
}
|
22 |
},
|
23 |
"sat_encoder": null,
|
|
|
40 |
"sat_history_minutes": 90,
|
41 |
"pv_history_minutes": 180,
|
42 |
"nwp_history_minutes": {
|
43 |
+
"ukv": 120
|
44 |
},
|
45 |
"nwp_forecast_minutes": {
|
46 |
+
"ukv": 480
|
47 |
},
|
48 |
"optimizer": {
|
49 |
"_target_": "pvnet.optimizers.EmbAdamWReduceLROnPlateau",
|
data_config.yaml
CHANGED
@@ -12,33 +12,27 @@ input_data:
|
|
12 |
history_minutes: 120
|
13 |
time_resolution_minutes: 30
|
14 |
nwp:
|
15 |
-
|
16 |
dropout_fraction: 1.0
|
17 |
dropout_timedeltas_minutes:
|
18 |
-
- -
|
19 |
forecast_minutes: 480.0
|
20 |
history_minutes: 120
|
21 |
max_staleness_minutes: null
|
22 |
-
nwp_accum_channels:
|
23 |
-
- dswrf
|
24 |
-
- dlwrf
|
25 |
-
- sr
|
26 |
-
- duvrs
|
27 |
nwp_channels:
|
28 |
-
-
|
29 |
- dswrf
|
30 |
- dlwrf
|
31 |
- hcc
|
32 |
- mcc
|
33 |
- lcc
|
34 |
-
- tcc
|
35 |
- sde
|
36 |
-
-
|
37 |
-
-
|
38 |
-
-
|
39 |
-
-
|
40 |
-
nwp_image_size_pixels_height:
|
41 |
-
nwp_image_size_pixels_width:
|
42 |
-
nwp_provider:
|
43 |
nwp_zarr_path: PLACEHOLDER.zarr
|
44 |
time_resolution_minutes: 60
|
|
|
12 |
history_minutes: 120
|
13 |
time_resolution_minutes: 30
|
14 |
nwp:
|
15 |
+
ukv:
|
16 |
dropout_fraction: 1.0
|
17 |
dropout_timedeltas_minutes:
|
18 |
+
- -180
|
19 |
forecast_minutes: 480.0
|
20 |
history_minutes: 120
|
21 |
max_staleness_minutes: null
|
|
|
|
|
|
|
|
|
|
|
22 |
nwp_channels:
|
23 |
+
- t
|
24 |
- dswrf
|
25 |
- dlwrf
|
26 |
- hcc
|
27 |
- mcc
|
28 |
- lcc
|
|
|
29 |
- sde
|
30 |
+
- r
|
31 |
+
- vis
|
32 |
+
- si10
|
33 |
+
- prate
|
34 |
+
nwp_image_size_pixels_height: 24
|
35 |
+
nwp_image_size_pixels_width: 24
|
36 |
+
nwp_provider: ukv
|
37 |
nwp_zarr_path: PLACEHOLDER.zarr
|
38 |
time_resolution_minutes: 60
|
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:35deab92351a09183919fb04133a4a844568dbf7e98243f789262292f01c0be3
|
3 |
+
size 27761334
|