yzt15806542928 commited on
Commit
cc22da3
·
verified ·
1 Parent(s): b4417e9

新增config.json文件

Browse files
Files changed (1) hide show
  1. config.json +48 -0
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "FourCastNet",
3
+ "model_type": "fourcastnet",
4
+ "architectures": [
5
+ "FourCastNet"
6
+ ],
7
+ "framework": "PyTorch",
8
+ "domain": "atmosphere",
9
+ "task": "global-weather-forecasting",
10
+ "implementation": {
11
+ "entry_point": "model/fourcastnet.py",
12
+ "scope": "repository AFNO implementation"
13
+ },
14
+ "architecture": {
15
+ "family": "adaptive Fourier neural operator",
16
+ "model_grid_shape": [
17
+ 720,
18
+ 1440
19
+ ],
20
+ "patch_size": [
21
+ 8,
22
+ 8
23
+ ],
24
+ "input_channels": 19,
25
+ "output_channels": 19,
26
+ "embedding_size": 768,
27
+ "depth": 12,
28
+ "mlp_ratio": 4.0,
29
+ "afno_channel_blocks": 8,
30
+ "sparsity_threshold": 0.01,
31
+ "hard_thresholding_fraction": 1.0
32
+ },
33
+ "data": {
34
+ "dataset": "ERA5",
35
+ "nominal_spatial_resolution_degrees": 0.25,
36
+ "time_step_hours": 6,
37
+ "pressure_levels_hpa": [
38
+ 50,
39
+ 500,
40
+ 850,
41
+ 1000
42
+ ]
43
+ },
44
+ "configuration_sources": [
45
+ "model/fourcastnet.py",
46
+ "conf/config.yaml"
47
+ ]
48
+ }