File size: 25,141 Bytes
522cadd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.515066385269165,
            "min": 1.4754258394241333,
            "max": 1.635340929031372,
            "count": 200
        },
        "Agent.Policy.Entropy.sum": {
            "value": 13253.80078125,
            "min": 7855.46728515625,
            "max": 19027.56640625,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterDrop.mean": {
            "value": 0.9696969696969697,
            "min": 0.8563218390804598,
            "max": 0.9950980392156863,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterDrop.sum": {
            "value": 224.0,
            "min": 23.0,
            "max": 279.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterPickup.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 0.003787878787878788,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.WaterPickup.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 1.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTreesReward.mean": {
            "value": 188.91341991341992,
            "min": 139.70833333333334,
            "max": 204.46825396825398,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTreesReward.sum": {
            "value": 43639.0,
            "min": 3353.0,
            "max": 55121.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTrees.mean": {
            "value": 188.91341991341992,
            "min": 139.70833333333334,
            "max": 204.46825396825398,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.PreparingTrees.sum": {
            "value": 43639.0,
            "min": 3353.0,
            "max": 55121.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTreesReward.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 16.18421052631579,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTreesReward.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 1900.0,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTrees.mean": {
            "value": 0.0,
            "min": 0.0,
            "max": 3.236842105263158,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.ExtinguishingTrees.sum": {
            "value": 0.0,
            "min": 0.0,
            "max": 380.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.030303030303030304,
            "min": 0.004901960784313725,
            "max": 0.14367816091954022,
            "count": 200
        },
        "Agent.AerialWildfireSuppression.CrashCount.sum": {
            "value": 7.0,
            "min": 1.0,
            "max": 30.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": 36.883116883116884,
            "min": 30.729166666666668,
            "max": 377.0,
            "count": 200
        },
        "Agent.Environment.EpisodeLength.sum": {
            "value": 8520.0,
            "min": 5016.0,
            "max": 12540.0,
            "count": 200
        },
        "Agent.Step.mean": {
            "value": 1799990.0,
            "min": 8962.0,
            "max": 1799990.0,
            "count": 200
        },
        "Agent.Step.sum": {
            "value": 1799990.0,
            "min": 8962.0,
            "max": 1799990.0,
            "count": 200
        },
        "Agent.Policy.ExtrinsicValueEstimate.mean": {
            "value": 99.16282653808594,
            "min": 12.052778244018555,
            "max": 129.1637725830078,
            "count": 200
        },
        "Agent.Policy.ExtrinsicValueEstimate.sum": {
            "value": 23104.939453125,
            "min": 1551.585693359375,
            "max": 33678.0703125,
            "count": 200
        },
        "Agent.Environment.CumulativeReward.mean": {
            "value": 186.7167381974249,
            "min": 133.91666666666666,
            "max": 204.40437158469945,
            "count": 200
        },
        "Agent.Environment.CumulativeReward.sum": {
            "value": 43505.0,
            "min": 3214.0,
            "max": 54360.0,
            "count": 200
        },
        "Agent.Policy.ExtrinsicReward.mean": {
            "value": 186.7167381974249,
            "min": 133.91666666666666,
            "max": 204.40437158469945,
            "count": 200
        },
        "Agent.Policy.ExtrinsicReward.sum": {
            "value": 43505.0,
            "min": 3214.0,
            "max": 54360.0,
            "count": 200
        },
        "Agent.Losses.PolicyLoss.mean": {
            "value": 0.049945010299173496,
            "min": 0.03846339621910981,
            "max": 0.0589652678463608,
            "count": 200
        },
        "Agent.Losses.PolicyLoss.sum": {
            "value": 0.09989002059834699,
            "min": 0.04358645516685119,
            "max": 0.15659683509147726,
            "count": 200
        },
        "Agent.Losses.ValueLoss.mean": {
            "value": 1756.4204648335774,
            "min": 688.3189801302823,
            "max": 5695.5595393461335,
            "count": 200
        },
        "Agent.Losses.ValueLoss.sum": {
            "value": 3512.840929667155,
            "min": 688.3189801302823,
            "max": 11391.119078692267,
            "count": 200
        },
        "Agent.Policy.LearningRate.mean": {
            "value": 6.950997683333234e-07,
            "min": 6.950997683333234e-07,
            "max": 0.00029894325035224997,
            "count": 200
        },
        "Agent.Policy.LearningRate.sum": {
            "value": 1.3901995366666468e-06,
            "min": 1.3901995366666468e-06,
            "max": 0.0008707235097588332,
            "count": 200
        },
        "Agent.Policy.Epsilon.mean": {
            "value": 0.10023166666666668,
            "min": 0.10023166666666668,
            "max": 0.19964775,
            "count": 200
        },
        "Agent.Policy.Epsilon.sum": {
            "value": 0.20046333333333335,
            "min": 0.12728033333333333,
            "max": 0.5902411666666667,
            "count": 200
        },
        "Agent.Policy.Beta.mean": {
            "value": 2.15601666666665e-05,
            "min": 2.15601666666665e-05,
            "max": 0.0049824227249999995,
            "count": 200
        },
        "Agent.Policy.Beta.sum": {
            "value": 4.3120333333333e-05,
            "min": 4.3120333333333e-05,
            "max": 0.014513034216666667,
            "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": "1717648045",
        "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_2_task_6_run_id_2_train.yaml --run-id=AerialWildfireSuppression/train/AerialWildfireSuppression_difficulty_2_task_6_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": "1717654218"
    },
    "total": 6172.7519791,
    "count": 1,
    "self": 2.430161400000543,
    "children": {
        "run_training.setup": {
            "total": 0.050711199999999956,
            "count": 1,
            "self": 0.050711199999999956
        },
        "TrainerController.start_learning": {
            "total": 6170.2711065,
            "count": 1,
            "self": 7.164711799857287,
            "children": {
                "TrainerController._reset_env": {
                    "total": 1.9987620000000001,
                    "count": 1,
                    "self": 1.9987620000000001
                },
                "TrainerController.advance": {
                    "total": 6161.023362800142,
                    "count": 600004,
                    "self": 6.5214730000261625,
                    "children": {
                        "env_step": {
                            "total": 6154.501889800116,
                            "count": 600004,
                            "self": 4178.169892199916,
                            "children": {
                                "SubprocessEnvManager._take_step": {
                                    "total": 1971.6028997002102,
                                    "count": 600004,
                                    "self": 15.135454200225922,
                                    "children": {
                                        "TorchPolicy.evaluate": {
                                            "total": 1956.4674454999843,
                                            "count": 600004,
                                            "self": 1956.4674454999843
                                        }
                                    }
                                },
                                "workers": {
                                    "total": 4.729097899990553,
                                    "count": 600004,
                                    "self": 0.0,
                                    "children": {
                                        "worker_root": {
                                            "total": 6161.106193099602,
                                            "count": 600004,
                                            "is_parallel": true,
                                            "self": 2338.199951399406,
                                            "children": {
                                                "steps_from_proto": {
                                                    "total": 0.0062019000000002045,
                                                    "count": 1,
                                                    "is_parallel": true,
                                                    "self": 0.00011179999999999524,
                                                    "children": {
                                                        "_process_maybe_compressed_observation": {
                                                            "total": 0.006005299999999991,
                                                            "count": 2,
                                                            "is_parallel": true,
                                                            "self": 3.970000000008689e-05,
                                                            "children": {
                                                                "_observation_to_np_array": {
                                                                    "total": 0.005965599999999904,
                                                                    "count": 3,
                                                                    "is_parallel": true,
                                                                    "self": 2.7899999999858593e-05,
                                                                    "children": {
                                                                        "process_pixels": {
                                                                            "total": 0.005937700000000046,
                                                                            "count": 3,
                                                                            "is_parallel": true,
                                                                            "self": 0.00017509999999987258,
                                                                            "children": {
                                                                                "image_decompress": {
                                                                                    "total": 0.005762600000000173,
                                                                                    "count": 3,
                                                                                    "is_parallel": true,
                                                                                    "self": 0.005762600000000173
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        },
                                                        "_process_rank_one_or_two_observation": {
                                                            "total": 8.480000000021803e-05,
                                                            "count": 2,
                                                            "is_parallel": true,
                                                            "self": 8.480000000021803e-05
                                                        }
                                                    }
                                                },
                                                "UnityEnvironment.step": {
                                                    "total": 3822.900039800196,
                                                    "count": 600004,
                                                    "is_parallel": true,
                                                    "self": 25.524830600527366,
                                                    "children": {
                                                        "UnityEnvironment._generate_step_input": {
                                                            "total": 26.97729939976717,
                                                            "count": 600004,
                                                            "is_parallel": true,
                                                            "self": 26.97729939976717
                                                        },
                                                        "communicator.exchange": {
                                                            "total": 3579.421788099977,
                                                            "count": 600004,
                                                            "is_parallel": true,
                                                            "self": 3579.421788099977
                                                        },
                                                        "steps_from_proto": {
                                                            "total": 190.9761216999239,
                                                            "count": 600004,
                                                            "is_parallel": true,
                                                            "self": 39.71066100004364,
                                                            "children": {
                                                                "_process_maybe_compressed_observation": {
                                                                    "total": 131.68015210004373,
                                                                    "count": 1200008,
                                                                    "is_parallel": true,
                                                                    "self": 11.744432299628471,
                                                                    "children": {
                                                                        "_observation_to_np_array": {
                                                                            "total": 119.93571980041526,
                                                                            "count": 1842648,
                                                                            "is_parallel": true,
                                                                            "self": 10.50656890023457,
                                                                            "children": {
                                                                                "process_pixels": {
                                                                                    "total": 109.42915090018069,
                                                                                    "count": 1842648,
                                                                                    "is_parallel": true,
                                                                                    "self": 39.29494169975749,
                                                                                    "children": {
                                                                                        "image_decompress": {
                                                                                            "total": 70.1342092004232,
                                                                                            "count": 1842648,
                                                                                            "is_parallel": true,
                                                                                            "self": 70.1342092004232
                                                                                        }
                                                                                    }
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                },
                                                                "_process_rank_one_or_two_observation": {
                                                                    "total": 19.585308599836548,
                                                                    "count": 1200008,
                                                                    "is_parallel": true,
                                                                    "self": 19.585308599836548
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "trainer_threads": {
                    "total": 2.700000004551839e-05,
                    "count": 1,
                    "self": 2.700000004551839e-05,
                    "children": {
                        "thread_root": {
                            "total": 0.0,
                            "count": 0,
                            "is_parallel": true,
                            "self": 0.0,
                            "children": {
                                "trainer_advance": {
                                    "total": 6163.980335799836,
                                    "count": 356524,
                                    "is_parallel": true,
                                    "self": 10.634956599815268,
                                    "children": {
                                        "process_trajectory": {
                                            "total": 5483.651380400026,
                                            "count": 356524,
                                            "is_parallel": true,
                                            "self": 5483.408796200026,
                                            "children": {
                                                "RLTrainer._checkpoint": {
                                                    "total": 0.24258420000001024,
                                                    "count": 3,
                                                    "is_parallel": true,
                                                    "self": 0.24258420000001024
                                                }
                                            }
                                        },
                                        "_update_policy": {
                                            "total": 669.6939987999953,
                                            "count": 419,
                                            "is_parallel": true,
                                            "self": 150.5224308999625,
                                            "children": {
                                                "TorchPPOOptimizer.update": {
                                                    "total": 519.1715679000328,
                                                    "count": 20649,
                                                    "is_parallel": true,
                                                    "self": 519.1715679000328
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "TrainerController._save_models": {
                    "total": 0.08424290000039036,
                    "count": 1,
                    "self": 0.020600500000000466,
                    "children": {
                        "RLTrainer._checkpoint": {
                            "total": 0.0636424000003899,
                            "count": 1,
                            "self": 0.0636424000003899
                        }
                    }
                }
            }
        }
    }
}