File size: 24,962 Bytes
5a18705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
{
    "name": "root",
    "gauges": {
        "Agent.Policy.Entropy.mean": {
            "value": 1.5642309188842773,
            "min": 1.4602915048599243,
            "max": 1.5749421119689941,
            "count": 200
        },
        "Agent.Policy.Entropy.sum": {
            "value": 11220.228515625,
            "min": 1719.125732421875,
            "max": 27614.328125,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterDrop.mean": {
            "value": 1.3333333333333333,
            "min": 0.0,
            "max": 25.333333333333332,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterDrop.sum": {
            "value": 4.0,
            "min": 0.0,
            "max": 76.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterPickup.mean": {
            "value": 1.3333333333333333,
            "min": 0.0,
            "max": 25.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterPickup.sum": {
            "value": 4.0,
            "min": 0.0,
            "max": 75.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTreesReward.mean": {
            "value": 136.66666666666666,
            "min": 0.0,
            "max": 1007.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTreesReward.sum": {
            "value": 410.0,
            "min": 0.0,
            "max": 5275.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTrees.mean": {
            "value": 136.66666666666666,
            "min": 0.0,
            "max": 1007.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTrees.sum": {
            "value": 410.0,
            "min": 0.0,
            "max": 5275.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTreesReward.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 341.6666666666667,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTreesReward.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 1025.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTrees.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 68.33333333333333,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTrees.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 205.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FireOut.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 1.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FireOut.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 6.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FiretooClosetoCity.mean": {
            "value": 1.0,
            "min": 0.0,
            "max": 1.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FiretooClosetoCity.sum": {
            "value": 3.0,
            "min": 0.0,
            "max": 9.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.CrashCount.mean": {
            "value": 1.0,
            "min": 0.0,
            "max": 1.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.CrashCount.sum": {
            "value": 3.0,
            "min": 0.0,
            "max": 39.0,
            "count": 200
        },
        "Agent.Environment.LessonNumber.difficulty.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.Environment.LessonNumber.difficulty.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.Environment.LessonNumber.task.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.Environment.LessonNumber.task.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.Environment.EpisodeLength.mean": {
            "value": 2384.0,
            "min": 247.0,
            "max": 2999.0,
            "count": 200
        },
        "Agent.Environment.EpisodeLength.sum": {
            "value": 7152.0,
            "min": 1098.0,
            "max": 17583.0,
            "count": 200
        },
        "Agent.Step.mean": {
            "value": 1798680.0,
            "min": 8826.0,
            "max": 1798680.0,
            "count": 200
        },
        "Agent.Step.sum": {
            "value": 1798680.0,
            "min": 8826.0,
            "max": 1798680.0,
            "count": 200
        },
        "Agent.Policy.ExtrinsicValueEstimate.mean": {
            "value": -13.21752643585205,
            "min": -20.88935089111328,
            "max": 35.84452438354492,
            "count": 200
        },
        "Agent.Policy.ExtrinsicValueEstimate.sum": {
            "value": -66.08763122558594,
            "min": -535.6047973632812,
            "max": 250.91168212890625,
            "count": 200
        },
        "Agent.Environment.CumulativeReward.mean": {
            "value": -498.2,
            "min": -556.0,
            "max": 819.6666666666666,
            "count": 200
        },
        "Agent.Environment.CumulativeReward.sum": {
            "value": -2491.0,
            "min": -2984.0,
            "max": 2547.0,
            "count": 200
        },
        "Agent.Policy.ExtrinsicReward.mean": {
            "value": -498.2,
            "min": -556.0,
            "max": 819.6666666666666,
            "count": 200
        },
        "Agent.Policy.ExtrinsicReward.sum": {
            "value": -2491.0,
            "min": -2984.0,
            "max": 2547.0,
            "count": 200
        },
        "Agent.Losses.PolicyLoss.mean": {
            "value": 0.04601342155642453,
            "min": 0.035231375863332415,
            "max": 0.05687605439064403,
            "count": 191
        },
        "Agent.Losses.PolicyLoss.sum": {
            "value": 0.04601342155642453,
            "min": 0.03573135534922282,
            "max": 0.10925860392442835,
            "count": 191
        },
        "Agent.Losses.ValueLoss.mean": {
            "value": 795.2897256215414,
            "min": 5.216583142961775,
            "max": 2463.0257173195864,
            "count": 191
        },
        "Agent.Losses.ValueLoss.sum": {
            "value": 795.2897256215414,
            "min": 5.216583142961775,
            "max": 3538.71683846268,
            "count": 191
        },
        "Agent.Policy.LearningRate.mean": {
            "value": 1.5490994836666563e-06,
            "min": 1.5490994836666563e-06,
            "max": 0.00029916450027850003,
            "count": 191
        },
        "Agent.Policy.LearningRate.sum": {
            "value": 1.5490994836666563e-06,
            "min": 1.5490994836666563e-06,
            "max": 0.0005960020013326668,
            "count": 191
        },
        "Agent.Policy.Epsilon.mean": {
            "value": 0.10051633333333336,
            "min": 0.10051633333333336,
            "max": 0.19972150000000002,
            "count": 191
        },
        "Agent.Policy.Epsilon.sum": {
            "value": 0.10051633333333336,
            "min": 0.10051633333333336,
            "max": 0.3986673333333334,
            "count": 191
        },
        "Agent.Policy.Beta.mean": {
            "value": 3.576503333333316e-05,
            "min": 3.576503333333316e-05,
            "max": 0.00498610285,
            "count": 191
        },
        "Agent.Policy.Beta.sum": {
            "value": 3.576503333333316e-05,
            "min": 3.576503333333316e-05,
            "max": 0.009933499933333333,
            "count": 191
        },
        "Agent.IsTraining.mean": {
            "value": 1.0,
            "min": 1.0,
            "max": 1.0,
            "count": 200
        },
        "Agent.IsTraining.sum": {
            "value": 1.0,
            "min": 1.0,
            "max": 1.0,
            "count": 200
        }
    },
    "metadata": {
        "timer_format_version": "0.1.0",
        "start_time_seconds": "1716266419",
        "python_version": "3.9.18 (main, Sep 11 2023, 14:09:26) [MSC v.1916 64 bit (AMD64)]",
        "command_line_arguments": "C:\\Users\\pdsie\\anaconda3\\envs\\mlagents20\\Scripts\\mlagents-learn c:/users/pdsie/documents/hivex/src/hivex/training/baseline/ml_agents/configs/mlagents/tmp/train/AerialWildfireSuppression_difficulty_1_task_4_run_id_0_train.yaml --run-id=AerialWildfireSuppression/train/AerialWildfireSuppression_difficulty_1_task_4_run_id_0_train --base-port 5008",
        "mlagents_version": "0.30.0",
        "mlagents_envs_version": "0.30.0",
        "communication_protocol_version": "1.5.0",
        "pytorch_version": "1.7.1+cu110",
        "numpy_version": "1.21.2",
        "end_time_seconds": "1716272309"
    },
    "total": 5890.277402799999,
    "count": 1,
    "self": 0.2637042999995174,
    "children": {
        "run_training.setup": {
            "total": 0.056305200000000055,
            "count": 1,
            "self": 0.056305200000000055
        },
        "TrainerController.start_learning": {
            "total": 5889.9573933,
            "count": 1,
            "self": 13.280039600128475,
            "children": {
                "TrainerController._reset_env": {
                    "total": 4.457057600000001,
                    "count": 1,
                    "self": 4.457057600000001
                },
                "TrainerController.advance": {
                    "total": 5872.120583499871,
                    "count": 600362,
                    "self": 12.772160099847497,
                    "children": {
                        "env_step": {
                            "total": 5859.348423400023,
                            "count": 600362,
                            "self": 2791.2686286999497,
                            "children": {
                                "SubprocessEnvManager._take_step": {
                                    "total": 3059.573327899985,
                                    "count": 600362,
                                    "self": 21.80413920039973,
                                    "children": {
                                        "TorchPolicy.evaluate": {
                                            "total": 3037.7691886995854,
                                            "count": 600362,
                                            "self": 3037.7691886995854
                                        }
                                    }
                                },
                                "workers": {
                                    "total": 8.506466800088852,
                                    "count": 600362,
                                    "self": 0.0,
                                    "children": {
                                        "worker_root": {
                                            "total": 5873.173196599799,
                                            "count": 600362,
                                            "is_parallel": true,
                                            "self": 3648.108321299654,
                                            "children": {
                                                "steps_from_proto": {
                                                    "total": 0.006238900000000047,
                                                    "count": 1,
                                                    "is_parallel": true,
                                                    "self": 0.00010889999999985633,
                                                    "children": {
                                                        "_process_maybe_compressed_observation": {
                                                            "total": 0.006050600000000017,
                                                            "count": 2,
                                                            "is_parallel": true,
                                                            "self": 4.209999999993386e-05,
                                                            "children": {
                                                                "_observation_to_np_array": {
                                                                    "total": 0.006008500000000083,
                                                                    "count": 3,
                                                                    "is_parallel": true,
                                                                    "self": 2.6000000000081513e-05,
                                                                    "children": {
                                                                        "process_pixels": {
                                                                            "total": 0.005982500000000002,
                                                                            "count": 3,
                                                                            "is_parallel": true,
                                                                            "self": 0.0001433999999993496,
                                                                            "children": {
                                                                                "image_decompress": {
                                                                                    "total": 0.005839100000000652,
                                                                                    "count": 3,
                                                                                    "is_parallel": true,
                                                                                    "self": 0.005839100000000652
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        },
                                                        "_process_rank_one_or_two_observation": {
                                                            "total": 7.940000000017378e-05,
                                                            "count": 2,
                                                            "is_parallel": true,
                                                            "self": 7.940000000017378e-05
                                                        }
                                                    }
                                                },
                                                "UnityEnvironment.step": {
                                                    "total": 2225.0586364001447,
                                                    "count": 600362,
                                                    "is_parallel": true,
                                                    "self": 34.82619129967952,
                                                    "children": {
                                                        "UnityEnvironment._generate_step_input": {
                                                            "total": 33.21177060002008,
                                                            "count": 600362,
                                                            "is_parallel": true,
                                                            "self": 33.21177060002008
                                                        },
                                                        "communicator.exchange": {
                                                            "total": 1869.6948334001936,
                                                            "count": 600362,
                                                            "is_parallel": true,
                                                            "self": 1869.6948334001936
                                                        },
                                                        "steps_from_proto": {
                                                            "total": 287.3258411002515,
                                                            "count": 600362,
                                                            "is_parallel": true,
                                                            "self": 60.73199470033924,
                                                            "children": {
                                                                "_process_maybe_compressed_observation": {
                                                                    "total": 195.20991720032515,
                                                                    "count": 1200724,
                                                                    "is_parallel": true,
                                                                    "self": 17.252321600549095,
                                                                    "children": {
                                                                        "_observation_to_np_array": {
                                                                            "total": 177.95759559977606,
                                                                            "count": 1802358,
                                                                            "is_parallel": true,
                                                                            "self": 14.208087399394458,
                                                                            "children": {
                                                                                "process_pixels": {
                                                                                    "total": 163.7495082003816,
                                                                                    "count": 1802358,
                                                                                    "is_parallel": true,
                                                                                    "self": 57.02537890013495,
                                                                                    "children": {
                                                                                        "image_decompress": {
                                                                                            "total": 106.72412930024664,
                                                                                            "count": 1802358,
                                                                                            "is_parallel": true,
                                                                                            "self": 106.72412930024664
                                                                                        }
                                                                                    }
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                },
                                                                "_process_rank_one_or_two_observation": {
                                                                    "total": 31.38392919958713,
                                                                    "count": 1200724,
                                                                    "is_parallel": true,
                                                                    "self": 31.38392919958713
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "trainer_threads": {
                    "total": 3.260000084992498e-05,
                    "count": 1,
                    "self": 3.260000084992498e-05,
                    "children": {
                        "thread_root": {
                            "total": 0.0,
                            "count": 0,
                            "is_parallel": true,
                            "self": 0.0,
                            "children": {
                                "trainer_advance": {
                                    "total": 5881.630362699763,
                                    "count": 314299,
                                    "is_parallel": true,
                                    "self": 14.678181900014351,
                                    "children": {
                                        "process_trajectory": {
                                            "total": 4970.643400099747,
                                            "count": 314299,
                                            "is_parallel": true,
                                            "self": 4970.341653299747,
                                            "children": {
                                                "RLTrainer._checkpoint": {
                                                    "total": 0.30174680000027365,
                                                    "count": 3,
                                                    "is_parallel": true,
                                                    "self": 0.30174680000027365
                                                }
                                            }
                                        },
                                        "_update_policy": {
                                            "total": 896.3087807000021,
                                            "count": 242,
                                            "is_parallel": true,
                                            "self": 180.22542610000903,
                                            "children": {
                                                "TorchPPOOptimizer.update": {
                                                    "total": 716.0833545999931,
                                                    "count": 20694,
                                                    "is_parallel": true,
                                                    "self": 716.0833545999931
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "TrainerController._save_models": {
                    "total": 0.09968000000026223,
                    "count": 1,
                    "self": 0.005400400000326044,
                    "children": {
                        "RLTrainer._checkpoint": {
                            "total": 0.09427959999993618,
                            "count": 1,
                            "self": 0.09427959999993618
                        }
                    }
                }
            }
        }
    }
}