File size: 3,937 Bytes
31462fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | {
"continuous_features": [
"temperature",
"humidity",
"pressure",
"pressure_trend",
"wind_speed",
"altitude",
"cloud_cover",
"visibility",
"solar_radiation",
"dew_point",
"heat_index",
"wind_chill",
"storm_index",
"rain_potential",
"instability_index"
],
"categorical_features": [
"wind_direction",
"month",
"air_mass",
"climate_zone",
"terrain_type"
],
"cat_cardinalities": [
8,
12,
6,
6,
5
],
"means": {
"temperature": 15.711910247802734,
"humidity": 73.68315887451172,
"pressure": 953.83740234375,
"pressure_trend": -0.0021683243103325367,
"wind_speed": 12.290905952453613,
"altitude": 561.1331787109375,
"cloud_cover": 75.88937377929688,
"visibility": 9.542573928833008,
"solar_radiation": 342.4497375488281,
"dew_point": 10.450345993041992,
"heat_index": 24.373546600341797,
"wind_chill": 14.176212310791016,
"storm_index": 7.1922607421875,
"rain_potential": 68.46627807617188,
"instability_index": 9.872715950012207
},
"stds": {
"temperature": 17.988454818725586,
"humidity": 14.650811195373535,
"pressure": 48.49877166748047,
"pressure_trend": 3.3718252182006836,
"wind_speed": 7.582037448883057,
"altitude": 524.8400268554688,
"cloud_cover": 25.562358856201172,
"visibility": 7.803797721862793,
"solar_radiation": 179.88714599609375,
"dew_point": 18.99576187133789,
"heat_index": 36.05759048461914,
"wind_chill": 20.287734985351562,
"storm_index": 3.5440399646759033,
"rain_potential": 34.90696716308594,
"instability_index": 7.713136196136475
},
"wind_dir_map": {
"n": 0,
"ne": 1,
"e": 2,
"se": 3,
"s": 4,
"sw": 5,
"w": 6,
"nw": 7,
"north": 0,
"northeast": 1,
"east": 2,
"southeast": 3,
"south": 4,
"southwest": 5,
"west": 6,
"northwest": 7
},
"air_mass_map": {
"polar": 0,
"arctic": 1,
"continental": 2,
"maritime": 3,
"tropical": 4,
"equatorial": 5
},
"climate_zone_map": {
"polar": 0,
"subarctic": 1,
"temperate": 2,
"mediterranean": 3,
"subtropical": 4,
"tropical": 5
},
"terrain_map": {
"flat": 0,
"coastal": 1,
"valley": 2,
"hills": 3,
"mountain": 4
},
"label2id": {
"clear": 0,
"partly_cloudy": 1,
"cloudy": 2,
"overcast": 3,
"mist": 4,
"fog": 5,
"dense_fog": 6,
"light_rain": 7,
"rain": 8,
"heavy_rain": 9,
"torrential_rain": 10,
"thunderstorm": 11,
"severe_thunderstorm": 12,
"snow": 13,
"heavy_snow": 14,
"blizzard": 15,
"freezing_rain": 16,
"ice_storm": 17,
"soft_hail": 18,
"sleet": 19,
"cold_front": 20,
"heat_wave": 21,
"cold_wave": 22,
"windstorm": 23,
"dust_storm": 24
},
"id2label": {
"0": "clear",
"1": "partly_cloudy",
"2": "cloudy",
"3": "overcast",
"4": "mist",
"5": "fog",
"6": "dense_fog",
"7": "light_rain",
"8": "rain",
"9": "heavy_rain",
"10": "torrential_rain",
"11": "thunderstorm",
"12": "severe_thunderstorm",
"13": "snow",
"14": "heavy_snow",
"15": "blizzard",
"16": "freezing_rain",
"17": "ice_storm",
"18": "soft_hail",
"19": "sleet",
"20": "cold_front",
"21": "heat_wave",
"22": "cold_wave",
"23": "windstorm",
"24": "dust_storm"
},
"phenomena": [
"clear",
"partly_cloudy",
"cloudy",
"overcast",
"mist",
"fog",
"dense_fog",
"light_rain",
"rain",
"heavy_rain",
"torrential_rain",
"thunderstorm",
"severe_thunderstorm",
"snow",
"heavy_snow",
"blizzard",
"freezing_rain",
"ice_storm",
"soft_hail",
"sleet",
"cold_front",
"heat_wave",
"cold_wave",
"windstorm",
"dust_storm"
],
"num_classes": 25
} |