Sukhil-Patel
commited on
Upload folder using huggingface_hub
Browse files- README.md +1 -1
- config.json +14 -1
- data_config.yaml +20 -2
- pytorch_model.bin +2 -2
README.md
CHANGED
@@ -40,7 +40,7 @@ Data is prepared with the `ocf_datapipes.training.windnet` datapipe [2].
|
|
40 |
## Results
|
41 |
|
42 |
The training logs for the current model can be found here:
|
43 |
-
- [https://wandb.ai/openclimatefix/wind_mo_global/runs/
|
44 |
|
45 |
|
46 |
|
|
|
40 |
## Results
|
41 |
|
42 |
The training logs for the current model can be found here:
|
43 |
+
- [https://wandb.ai/openclimatefix/wind_mo_global/runs/21t9xqfn](https://wandb.ai/openclimatefix/wind_mo_global/runs/21t9xqfn)
|
44 |
|
45 |
|
46 |
|
config.json
CHANGED
@@ -17,6 +17,15 @@
|
|
17 |
"hidden_channels": 256,
|
18 |
"image_size_pixels": 42
|
19 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
"mo_global": {
|
21 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.ResConv3DNet2",
|
22 |
"_partial_": true,
|
@@ -51,14 +60,17 @@
|
|
51 |
"history_minutes": 60,
|
52 |
"nwp_history_minutes": {
|
53 |
"ecmwf": 60,
|
|
|
54 |
"mo_global": 60
|
55 |
},
|
56 |
"nwp_forecast_minutes": {
|
57 |
"ecmwf": 2880,
|
|
|
58 |
"mo_global": 1860
|
59 |
},
|
60 |
"nwp_interval_minutes": {
|
61 |
"ecmwf": 60,
|
|
|
62 |
"mo_global": 60
|
63 |
},
|
64 |
"wind_history_minutes": 60,
|
@@ -72,5 +84,6 @@
|
|
72 |
"patience": 5,
|
73 |
"factor": 0.1,
|
74 |
"threshold": 0.002
|
75 |
-
}
|
|
|
76 |
}
|
|
|
17 |
"hidden_channels": 256,
|
18 |
"image_size_pixels": 42
|
19 |
},
|
20 |
+
"gfs": {
|
21 |
+
"_target_": "pvnet.models.multimodal.encoders.encoders3d.ResConv3DNet2",
|
22 |
+
"_partial_": true,
|
23 |
+
"in_channels": 6,
|
24 |
+
"out_features": 256,
|
25 |
+
"n_res_blocks": 3,
|
26 |
+
"hidden_channels": 256,
|
27 |
+
"image_size_pixels": 10
|
28 |
+
},
|
29 |
"mo_global": {
|
30 |
"_target_": "pvnet.models.multimodal.encoders.encoders3d.ResConv3DNet2",
|
31 |
"_partial_": true,
|
|
|
60 |
"history_minutes": 60,
|
61 |
"nwp_history_minutes": {
|
62 |
"ecmwf": 60,
|
63 |
+
"gfs": 0,
|
64 |
"mo_global": 60
|
65 |
},
|
66 |
"nwp_forecast_minutes": {
|
67 |
"ecmwf": 2880,
|
68 |
+
"gfs": 2220,
|
69 |
"mo_global": 1860
|
70 |
},
|
71 |
"nwp_interval_minutes": {
|
72 |
"ecmwf": 60,
|
73 |
+
"gfs": 180,
|
74 |
"mo_global": 60
|
75 |
},
|
76 |
"wind_history_minutes": 60,
|
|
|
84 |
"patience": 5,
|
85 |
"factor": 0.1,
|
86 |
"threshold": 0.002
|
87 |
+
},
|
88 |
+
"adapt_batches": true
|
89 |
}
|
data_config.yaml
CHANGED
@@ -22,11 +22,29 @@ input_data:
|
|
22 |
- v100
|
23 |
- u200
|
24 |
- v200
|
25 |
-
nwp_image_size_pixels_height:
|
26 |
-
nwp_image_size_pixels_width:
|
27 |
nwp_provider: ecmwf
|
28 |
nwp_zarr_path: PLACEHOLDER.zarr
|
29 |
time_resolution_minutes: 60
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
mo_global:
|
31 |
dropout_fraction: 1.0
|
32 |
dropout_timedeltas_minutes:
|
|
|
22 |
- v100
|
23 |
- u200
|
24 |
- v200
|
25 |
+
nwp_image_size_pixels_height: 42
|
26 |
+
nwp_image_size_pixels_width: 42
|
27 |
nwp_provider: ecmwf
|
28 |
nwp_zarr_path: PLACEHOLDER.zarr
|
29 |
time_resolution_minutes: 60
|
30 |
+
gfs:
|
31 |
+
dropout_fraction: 1.0
|
32 |
+
dropout_timedeltas_minutes:
|
33 |
+
- -300
|
34 |
+
forecast_minutes: 2160.0
|
35 |
+
history_minutes: 0
|
36 |
+
nwp_channels:
|
37 |
+
- t
|
38 |
+
- prate
|
39 |
+
- u10
|
40 |
+
- v10
|
41 |
+
- u100
|
42 |
+
- v100
|
43 |
+
nwp_image_size_pixels_height: 10
|
44 |
+
nwp_image_size_pixels_width: 10
|
45 |
+
nwp_provider: gfs
|
46 |
+
nwp_zarr_path: PLACEHOLDER.zarr
|
47 |
+
time_resolution_minutes: 180
|
48 |
mo_global:
|
49 |
dropout_fraction: 1.0
|
50 |
dropout_timedeltas_minutes:
|
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:06081decbb9a54acc2b0e5e4fceb12b2bc578f5a6956a279ee2b58906cbea3f8
|
3 |
+
size 237767722
|