Upload 3 files
Browse filesrefactor model from 96ac8c67fa8663844ddcfa82aece51ef94f34453 for new PVNet library
- config.json +25 -18
config.json
CHANGED
@@ -9,32 +9,38 @@
|
|
9 |
0.9,
|
10 |
0.98
|
11 |
],
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
},
|
16 |
-
|
17 |
-
"
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
20 |
},
|
21 |
-
|
22 |
-
"include_nwp": true,
|
23 |
"add_image_embedding_channel": true,
|
24 |
-
|
25 |
-
"nwp_image_size_pixels": 24,
|
26 |
-
"number_sat_channels": 11,
|
27 |
-
"number_nwp_channels": 2,
|
28 |
"output_network": {
|
29 |
"_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
|
30 |
-
"_partial_": true
|
31 |
-
},
|
32 |
-
"output_network_kwargs": {
|
33 |
"fc_hidden_features": 128,
|
34 |
"n_res_blocks": 6,
|
35 |
"res_block_layers": 2,
|
36 |
"dropout_frac": 0.0
|
37 |
},
|
|
|
38 |
"embedding_dim": 16,
|
39 |
"include_sun": true,
|
40 |
"include_gsp_yield_history": false,
|
@@ -43,6 +49,8 @@
|
|
43 |
"sat_history_minutes": 90,
|
44 |
"nwp_history_minutes": 120,
|
45 |
"nwp_forecast_minutes": 480,
|
|
|
|
|
46 |
"optimizer": {
|
47 |
"_target_": "pvnet.optimizers.AdamWReduceLROnPlateau",
|
48 |
"lr": 0.0001,
|
@@ -51,6 +59,5 @@
|
|
51 |
"patience": 5,
|
52 |
"factor": 0.1,
|
53 |
"threshold": 0.002
|
54 |
-
}
|
55 |
-
"min_sat_delay_minutes": 60
|
56 |
}
|
|
|
9 |
0.9,
|
10 |
0.98
|
11 |
],
|
12 |
+
|
13 |
+
"nwp_encoder": {
|
14 |
+
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
15 |
+
"_partial_": true,
|
16 |
+
"in_channels": 2,
|
17 |
+
"out_features": 256,
|
18 |
+
"number_of_conv3d_layers": 6,
|
19 |
+
"conv3d_channels": 32,
|
20 |
+
"image_size_pixels": 24
|
21 |
},
|
22 |
+
|
23 |
+
"sat_encoder": {
|
24 |
+
"_target_": "pvnet.models.multimodal.encoders.encoders3d.DefaultPVNet",
|
25 |
+
"_partial_": true,
|
26 |
+
"in_channels": 11,
|
27 |
+
"out_features": 256,
|
28 |
+
"number_of_conv3d_layers": 6,
|
29 |
+
"conv3d_channels": 32,
|
30 |
+
"image_size_pixels": 24
|
31 |
},
|
32 |
+
|
|
|
33 |
"add_image_embedding_channel": true,
|
34 |
+
|
|
|
|
|
|
|
35 |
"output_network": {
|
36 |
"_target_": "pvnet.models.multimodal.linear_networks.networks.ResFCNet2",
|
37 |
+
"_partial_": true,
|
|
|
|
|
38 |
"fc_hidden_features": 128,
|
39 |
"n_res_blocks": 6,
|
40 |
"res_block_layers": 2,
|
41 |
"dropout_frac": 0.0
|
42 |
},
|
43 |
+
|
44 |
"embedding_dim": 16,
|
45 |
"include_sun": true,
|
46 |
"include_gsp_yield_history": false,
|
|
|
49 |
"sat_history_minutes": 90,
|
50 |
"nwp_history_minutes": 120,
|
51 |
"nwp_forecast_minutes": 480,
|
52 |
+
"min_sat_delay_minutes": 60,
|
53 |
+
|
54 |
"optimizer": {
|
55 |
"_target_": "pvnet.optimizers.AdamWReduceLROnPlateau",
|
56 |
"lr": 0.0001,
|
|
|
59 |
"patience": 5,
|
60 |
"factor": 0.1,
|
61 |
"threshold": 0.002
|
62 |
+
}
|
|
|
63 |
}
|