File size: 24,951 Bytes
2b3281d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.3565901517868042,
            "min": 1.3297520875930786,
            "max": 1.6199915409088135,
            "count": 200
        },
        "Agent.Policy.Entropy.sum": {
            "value": 11643.61328125,
            "min": 11493.5810546875,
            "max": 15235.478515625,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterDrop.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterDrop.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterPickup.mean": {
            "value": 1.0,
            "min": 0.9375,
            "max": 1.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterPickup.sum": {
            "value": 54.0,
            "min": 30.0,
            "max": 69.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTreesReward.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTreesReward.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTrees.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTrees.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTreesReward.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTreesReward.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTrees.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTrees.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FireOut.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FireOut.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FiretooClosetoCity.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.FiretooClosetoCity.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.CrashCount.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.018518518518518517,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.CrashCount.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 1.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": 157.77777777777777,
            "min": 128.52173913043478,
            "max": 291.1,
            "count": 200
        },
        "Agent.Environment.EpisodeLength.sum": {
            "value": 8520.0,
            "min": 8070.0,
            "max": 9633.0,
            "count": 200
        },
        "Agent.Step.mean": {
            "value": 1799779.0,
            "min": 8993.0,
            "max": 1799779.0,
            "count": 200
        },
        "Agent.Step.sum": {
            "value": 1799779.0,
            "min": 8993.0,
            "max": 1799779.0,
            "count": 200
        },
        "Agent.Policy.ExtrinsicValueEstimate.mean": {
            "value": 45.35012435913086,
            "min": 3.493455648422241,
            "max": 51.33945083618164,
            "count": 200
        },
        "Agent.Policy.ExtrinsicValueEstimate.sum": {
            "value": 2539.60693359375,
            "min": 150.21859741210938,
            "max": 3383.456787109375,
            "count": 200
        },
        "Agent.Environment.CumulativeReward.mean": {
            "value": 94.77738380432129,
            "min": 90.67634754796183,
            "max": 95.6782631252123,
            "count": 200
        },
        "Agent.Environment.CumulativeReward.sum": {
            "value": 5307.533493041992,
            "min": 2810.9667739868164,
            "max": 6601.800155639648,
            "count": 200
        },
        "Agent.Policy.ExtrinsicReward.mean": {
            "value": 94.77738380432129,
            "min": 90.67634754796183,
            "max": 95.6782631252123,
            "count": 200
        },
        "Agent.Policy.ExtrinsicReward.sum": {
            "value": 5307.533493041992,
            "min": 2810.9667739868164,
            "max": 6601.800155639648,
            "count": 200
        },
        "Agent.Losses.PolicyLoss.mean": {
            "value": 0.04391247805809447,
            "min": 0.039878853034996796,
            "max": 0.0627893324077983,
            "count": 200
        },
        "Agent.Losses.PolicyLoss.sum": {
            "value": 0.08782495611618894,
            "min": 0.039878853034996796,
            "max": 0.1563264143198966,
            "count": 200
        },
        "Agent.Losses.ValueLoss.mean": {
            "value": 7.813252180814743,
            "min": 6.007080863503849,
            "max": 358.21015894646735,
            "count": 200
        },
        "Agent.Losses.ValueLoss.sum": {
            "value": 15.626504361629486,
            "min": 12.014161727007698,
            "max": 725.4474772472008,
            "count": 200
        },
        "Agent.Policy.LearningRate.mean": {
            "value": 4.858498380833348e-07,
            "min": 4.858498380833348e-07,
            "max": 0.00029888250037250004,
            "count": 200
        },
        "Agent.Policy.LearningRate.sum": {
            "value": 9.716996761666697e-07,
            "min": 9.716996761666697e-07,
            "max": 0.0008889290036903333,
            "count": 200
        },
        "Agent.Policy.Epsilon.mean": {
            "value": 0.10016191666666668,
            "min": 0.10016191666666668,
            "max": 0.1996275,
            "count": 200
        },
        "Agent.Policy.Epsilon.sum": {
            "value": 0.20032383333333337,
            "min": 0.19822983333333327,
            "max": 0.5963096666666667,
            "count": 200
        },
        "Agent.Policy.Beta.mean": {
            "value": 1.8079641666666694e-05,
            "min": 1.8079641666666694e-05,
            "max": 0.00498141225,
            "count": 200
        },
        "Agent.Policy.Beta.sum": {
            "value": 3.615928333333339e-05,
            "min": 3.615928333333339e-05,
            "max": 0.014815852366666667,
            "count": 200
        },
        "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": "1717772142",
        "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_5_task_5_run_id_2_train.yaml --run-id=AerialWildfireSuppression/train/AerialWildfireSuppression_difficulty_5_task_5_run_id_2_train --base-port 5009",
        "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.0",
        "end_time_seconds": "1717776653"
    },
    "total": 4510.9405201,
    "count": 1,
    "self": 0.7204799999999523,
    "children": {
        "run_training.setup": {
            "total": 0.04699360000000008,
            "count": 1,
            "self": 0.04699360000000008
        },
        "TrainerController.start_learning": {
            "total": 4510.1730465,
            "count": 1,
            "self": 7.0057772002246566,
            "children": {
                "TrainerController._reset_env": {
                    "total": 2.0023656,
                    "count": 1,
                    "self": 2.0023656
                },
                "TrainerController.advance": {
                    "total": 4501.089004799776,
                    "count": 600018,
                    "self": 6.524432199835246,
                    "children": {
                        "env_step": {
                            "total": 4494.564572599941,
                            "count": 600018,
                            "self": 2509.9018344001493,
                            "children": {
                                "SubprocessEnvManager._take_step": {
                                    "total": 1979.9647155998073,
                                    "count": 600018,
                                    "self": 15.045830099907562,
                                    "children": {
                                        "TorchPolicy.evaluate": {
                                            "total": 1964.9188854998997,
                                            "count": 600018,
                                            "self": 1964.9188854998997
                                        }
                                    }
                                },
                                "workers": {
                                    "total": 4.698022599984568,
                                    "count": 600018,
                                    "self": 0.0,
                                    "children": {
                                        "worker_root": {
                                            "total": 4500.659055799904,
                                            "count": 600018,
                                            "is_parallel": true,
                                            "self": 2359.7497061998265,
                                            "children": {
                                                "steps_from_proto": {
                                                    "total": 0.006225900000000006,
                                                    "count": 1,
                                                    "is_parallel": true,
                                                    "self": 0.00010759999999998549,
                                                    "children": {
                                                        "_process_maybe_compressed_observation": {
                                                            "total": 0.006029099999999898,
                                                            "count": 2,
                                                            "is_parallel": true,
                                                            "self": 4.17999999997587e-05,
                                                            "children": {
                                                                "_observation_to_np_array": {
                                                                    "total": 0.00598730000000014,
                                                                    "count": 3,
                                                                    "is_parallel": true,
                                                                    "self": 2.6599999999987745e-05,
                                                                    "children": {
                                                                        "process_pixels": {
                                                                            "total": 0.005960700000000152,
                                                                            "count": 3,
                                                                            "is_parallel": true,
                                                                            "self": 0.0001854000000003353,
                                                                            "children": {
                                                                                "image_decompress": {
                                                                                    "total": 0.005775299999999817,
                                                                                    "count": 3,
                                                                                    "is_parallel": true,
                                                                                    "self": 0.005775299999999817
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        },
                                                        "_process_rank_one_or_two_observation": {
                                                            "total": 8.920000000012251e-05,
                                                            "count": 2,
                                                            "is_parallel": true,
                                                            "self": 8.920000000012251e-05
                                                        }
                                                    }
                                                },
                                                "UnityEnvironment.step": {
                                                    "total": 2140.9031237000777,
                                                    "count": 600018,
                                                    "is_parallel": true,
                                                    "self": 24.4988205000368,
                                                    "children": {
                                                        "UnityEnvironment._generate_step_input": {
                                                            "total": 27.964464999915798,
                                                            "count": 600018,
                                                            "is_parallel": true,
                                                            "self": 27.964464999915798
                                                        },
                                                        "communicator.exchange": {
                                                            "total": 1897.7805339000765,
                                                            "count": 600018,
                                                            "is_parallel": true,
                                                            "self": 1897.7805339000765
                                                        },
                                                        "steps_from_proto": {
                                                            "total": 190.6593043000487,
                                                            "count": 600018,
                                                            "is_parallel": true,
                                                            "self": 40.00590169996045,
                                                            "children": {
                                                                "_process_maybe_compressed_observation": {
                                                                    "total": 131.3629487002284,
                                                                    "count": 1200036,
                                                                    "is_parallel": true,
                                                                    "self": 11.629791799926437,
                                                                    "children": {
                                                                        "_observation_to_np_array": {
                                                                            "total": 119.73315690030196,
                                                                            "count": 1811286,
                                                                            "is_parallel": true,
                                                                            "self": 10.274563400029052,
                                                                            "children": {
                                                                                "process_pixels": {
                                                                                    "total": 109.45859350027291,
                                                                                    "count": 1811286,
                                                                                    "is_parallel": true,
                                                                                    "self": 39.15861710049259,
                                                                                    "children": {
                                                                                        "image_decompress": {
                                                                                            "total": 70.29997639978032,
                                                                                            "count": 1811286,
                                                                                            "is_parallel": true,
                                                                                            "self": 70.29997639978032
                                                                                        }
                                                                                    }
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                },
                                                                "_process_rank_one_or_two_observation": {
                                                                    "total": 19.29045389985984,
                                                                    "count": 1200036,
                                                                    "is_parallel": true,
                                                                    "self": 19.29045389985984
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "trainer_threads": {
                    "total": 3.409999953873921e-05,
                    "count": 1,
                    "self": 3.409999953873921e-05,
                    "children": {
                        "thread_root": {
                            "total": 0.0,
                            "count": 0,
                            "is_parallel": true,
                            "self": 0.0,
                            "children": {
                                "trainer_advance": {
                                    "total": 4505.501140400084,
                                    "count": 243978,
                                    "is_parallel": true,
                                    "self": 7.074881400115373,
                                    "children": {
                                        "process_trajectory": {
                                            "total": 3825.4980303999637,
                                            "count": 243978,
                                            "is_parallel": true,
                                            "self": 3825.2490417999634,
                                            "children": {
                                                "RLTrainer._checkpoint": {
                                                    "total": 0.24898860000007517,
                                                    "count": 3,
                                                    "is_parallel": true,
                                                    "self": 0.24898860000007517
                                                }
                                            }
                                        },
                                        "_update_policy": {
                                            "total": 672.9282286000048,
                                            "count": 413,
                                            "is_parallel": true,
                                            "self": 149.60778480002568,
                                            "children": {
                                                "TorchPPOOptimizer.update": {
                                                    "total": 523.3204437999791,
                                                    "count": 20496,
                                                    "is_parallel": true,
                                                    "self": 523.3204437999791
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "TrainerController._save_models": {
                    "total": 0.07586479999918083,
                    "count": 1,
                    "self": 0.013716599998588208,
                    "children": {
                        "RLTrainer._checkpoint": {
                            "total": 0.062148200000592624,
                            "count": 1,
                            "self": 0.062148200000592624
                        }
                    }
                }
            }
        }
    }
}