-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathUniAD-Tiny.json
10367 lines (10367 loc) · 538 KB
/
UniAD-Tiny.json
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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_checkpoint": {
"records": [
{
"route_id": "RouteScenario_4937_rep0",
"scenario_name": "SignalizedJunctionRightTurn_1",
"weather_id": "0",
"save_name": "RouteScenario_4937_rep0_Town12_SignalizedJunctionRightTurn_1_0_08_20_00_02_00",
"status": "Failed - TickRuntime",
"num_infractions": 2,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 178.89% of the surrounding traffic's one",
"Average speed is 179.45% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 15.41,
"score_penalty": 1.0,
"score_composed": 15.41
},
"meta": {
"route_length": 65.304,
"duration_game": 200.05,
"duration_system": 6797.262
},
"town_name": "Town12"
},
{
"route_id": "RouteScenario_4683_rep0",
"scenario_name": "SignalizedJunctionLeftTurn_1",
"weather_id": "6",
"save_name": "RouteScenario_4683_rep0_Town12_SignalizedJunctionLeftTurn_1_6_08_19_22_14_17",
"status": "Failed - TickRuntime",
"num_infractions": 3,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 165.14% of the surrounding traffic's one",
"Average speed is 431.17% of the surrounding traffic's one",
"Average speed is 182.22% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 18.36,
"score_penalty": 1.0,
"score_composed": 18.36
},
"meta": {
"route_length": 76.874,
"duration_game": 200.05,
"duration_system": 6408.449
},
"town_name": "Town12"
},
{
"route_id": "RouteScenario_4669_rep0",
"scenario_name": "SignalizedJunctionLeftTurn_1",
"weather_id": "18",
"save_name": "RouteScenario_4669_rep0_Town12_SignalizedJunctionLeftTurn_1_18_08_19_20_21_04",
"status": "Failed - TickRuntime",
"num_infractions": 7,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 132.77% of the surrounding traffic's one",
"Average speed is 240.44% of the surrounding traffic's one",
"Average speed is 350.47% of the surrounding traffic's one",
"Average speed is 176.2% of the surrounding traffic's one",
"Average speed is 143.16% of the surrounding traffic's one",
"Average speed is 215.0% of the surrounding traffic's one",
"Average speed is 178.34% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 36.7,
"score_penalty": 1.0,
"score_composed": 36.7
},
"meta": {
"route_length": 77.641,
"duration_game": 200.05,
"duration_system": 5381.231
},
"town_name": "Town12"
},
{
"route_id": "RouteScenario_4468_rep0",
"scenario_name": "SignalizedJunctionLeftTurn_1",
"weather_id": "25",
"save_name": "RouteScenario_4468_rep0_Town12_SignalizedJunctionLeftTurn_1_25_08_19_19_54_18",
"status": "Completed",
"num_infractions": 22,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [
"Agent collided against object with type=vehicle.lincoln.mkz_2020 and id=45059 at (x=3629.063, y=5079.303, z=367.857)",
"Agent collided against object with type=vehicle.dodge.charger_2020 and id=45076 at (x=3594.293, y=5068.379, z=367.941)"
],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 138.96% of the surrounding traffic's one",
"Average speed is 160.17% of the surrounding traffic's one",
"Average speed is 208.37% of the surrounding traffic's one",
"Average speed is 129.62% of the surrounding traffic's one",
"Average speed is 53.88% of the surrounding traffic's one",
"Average speed is 107.89% of the surrounding traffic's one",
"Average speed is 61.33% of the surrounding traffic's one",
"Average speed is 216.31% of the surrounding traffic's one",
"Average speed is 132.76% of the surrounding traffic's one",
"Average speed is 266.07% of the surrounding traffic's one",
"Average speed is 456.25% of the surrounding traffic's one",
"Average speed is 1226.82% of the surrounding traffic's one",
"Average speed is 370.9% of the surrounding traffic's one",
"Average speed is 400.06% of the surrounding traffic's one",
"Average speed is 233.21% of the surrounding traffic's one",
"Average speed is 167.25% of the surrounding traffic's one",
"Average speed is 137.0% of the surrounding traffic's one",
"Average speed is 115.71% of the surrounding traffic's one",
"Average speed is 62.04% of the surrounding traffic's one",
"Average speed is 62.04% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 100,
"score_penalty": 0.36,
"score_composed": 36.0
},
"meta": {
"route_length": 77.591,
"duration_game": 20.8,
"duration_system": 429.595
},
"town_name": "Town12"
},
{
"route_id": "RouteScenario_4183_rep0",
"scenario_name": "SignalizedJunctionLeftTurn_1",
"weather_id": "0",
"save_name": "RouteScenario_4183_rep0_Town12_SignalizedJunctionLeftTurn_1_0_08_19_18_38_12",
"status": "Failed - TickRuntime",
"num_infractions": 2,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 170.72% of the surrounding traffic's one",
"Average speed is 375.58% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 14.18,
"score_penalty": 1.0,
"score_composed": 14.18
},
"meta": {
"route_length": 71.35,
"duration_game": 200.05,
"duration_system": 4507.098
},
"town_name": "Town12"
},
{
"route_id": "RouteScenario_3936_rep0",
"scenario_name": "SignalizedJunctionLeftTurn_1",
"weather_id": "13",
"save_name": "RouteScenario_3936_rep0_Town12_SignalizedJunctionLeftTurn_1_13_08_19_17_17_59",
"status": "Failed - TickRuntime",
"num_infractions": 2,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 12.31% of the surrounding traffic's one",
"Average speed is 695.28% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 14.81,
"score_penalty": 1.0,
"score_composed": 14.81
},
"meta": {
"route_length": 81.837,
"duration_game": 200.05,
"duration_system": 4755.413
},
"town_name": "Town12"
},
{
"route_id": "RouteScenario_3905_rep0",
"scenario_name": "VanillaNonSignalizedTurnEncounterStopsign_1",
"weather_id": "0",
"save_name": "RouteScenario_3905_rep0_Town13_VanillaNonSignalizedTurnEncounterStopsign_1_0_08_19_17_11_48",
"status": "Completed",
"num_infractions": 19,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [
"Agent ran a stop with id=29625 at (x=-4086.303, y=4554.104, z=171.199)"
],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 79.68% of the surrounding traffic's one",
"Average speed is 128.21% of the surrounding traffic's one",
"Average speed is 133.56% of the surrounding traffic's one",
"Average speed is 140.08% of the surrounding traffic's one",
"Average speed is 138.0% of the surrounding traffic's one",
"Average speed is 154.3% of the surrounding traffic's one",
"Average speed is 160.68% of the surrounding traffic's one",
"Average speed is 175.92% of the surrounding traffic's one",
"Average speed is 163.43% of the surrounding traffic's one",
"Average speed is 158.88% of the surrounding traffic's one",
"Average speed is 108.09% of the surrounding traffic's one",
"Average speed is 105.68% of the surrounding traffic's one",
"Average speed is 109.06% of the surrounding traffic's one",
"Average speed is 90.94% of the surrounding traffic's one",
"Average speed is 121.72% of the surrounding traffic's one",
"Average speed is 110.88% of the surrounding traffic's one",
"Average speed is 98.54% of the surrounding traffic's one",
"Average speed is 98.54% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 100,
"score_penalty": 0.8,
"score_composed": 80.0
},
"meta": {
"route_length": 64.527,
"duration_game": 14.6,
"duration_system": 288.335
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3904_rep0",
"scenario_name": "VanillaNonSignalizedTurnEncounterStopsign_1",
"weather_id": "25",
"save_name": "RouteScenario_3904_rep0_Town13_VanillaNonSignalizedTurnEncounterStopsign_1_25_08_19_16_23_21",
"status": "Failed - Agent got blocked",
"num_infractions": 19,
"infractions": {
"collisions_layout": [
"Agent collided against object with type=static.building and id=0 at (x=2628.37, y=5508.417, z=159.16)",
"Agent collided against object with type=static.building and id=0 at (x=2628.177, y=5503.413, z=159.193)"
],
"collisions_pedestrian": [],
"collisions_vehicle": [
"Agent collided against object with type=vehicle.lincoln.mkz_2020 and id=28584 at (x=2635.647, y=5516.205, z=158.952)"
],
"red_light": [],
"stop_infraction": [
"Agent ran a stop with id=24232 at (x=2626.253, y=5532.751, z=158.623)"
],
"outside_route_lanes": [
"Agent went outside its route lanes for about 15.859 meters (37.87% of the completed route)"
],
"min_speed_infractions": [
"Average speed is 90.73% of the surrounding traffic's one",
"Average speed is 103.72% of the surrounding traffic's one",
"Average speed is 117.2% of the surrounding traffic's one",
"Average speed is 123.23% of the surrounding traffic's one",
"Average speed is 148.41% of the surrounding traffic's one",
"Average speed is 138.34% of the surrounding traffic's one",
"Average speed is 129.88% of the surrounding traffic's one",
"Average speed is 208.97% of the surrounding traffic's one",
"Average speed is 93.72% of the surrounding traffic's one",
"Average speed is 174.27% of the surrounding traffic's one",
"Average speed is 236.35% of the surrounding traffic's one",
"Average speed is 3.67% of the surrounding traffic's one",
"Average speed is 1.67% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=2628.223, y=5503.279, z=159.202)"
],
"route_timeout": []
},
"scores": {
"score_route": 71.13,
"score_penalty": 0.126009,
"score_composed": 8.963
},
"meta": {
"route_length": 58.883,
"duration_game": 134.6,
"duration_system": 2826.803
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3890_rep0",
"scenario_name": "VanillaNonSignalizedTurn_1",
"weather_id": "11",
"save_name": "RouteScenario_3890_rep0_Town13_VanillaNonSignalizedTurn_1_11_08_19_15_31_21",
"status": "Failed - Agent got blocked",
"num_infractions": 11,
"infractions": {
"collisions_layout": [
"Agent collided against object with type=traffic.stop and id=19165 at (x=-2382.604, y=-85.77, z=171.309)"
],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [
"Agent went outside its route lanes for about 4.564 meters (14.81% of the completed route)"
],
"min_speed_infractions": [
"Average speed is 65.79% of the surrounding traffic's one",
"Average speed is 68.82% of the surrounding traffic's one",
"Average speed is 111.59% of the surrounding traffic's one",
"Average speed is 83.61% of the surrounding traffic's one",
"Average speed is 83.9% of the surrounding traffic's one",
"Average speed is 141.93% of the surrounding traffic's one",
"Average speed is 130.07% of the surrounding traffic's one",
"Average speed is 120.21% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=-2384.685, y=-85.945, z=171.332)"
],
"route_timeout": []
},
"scores": {
"score_route": 47.87,
"score_penalty": 0.553714,
"score_composed": 26.506304
},
"meta": {
"route_length": 64.354,
"duration_game": 133.1,
"duration_system": 3040.359
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3876_rep0",
"scenario_name": "VanillaSignalizedTurnEncounterRedLight_1",
"weather_id": "23",
"save_name": "RouteScenario_3876_rep0_Town13_VanillaSignalizedTurnEncounterRedLight_1_23_08_19_14_56_56",
"status": "Failed - Agent got blocked",
"num_infractions": 1,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=2511.682, y=1915.57, z=169.633)"
],
"route_timeout": []
},
"scores": {
"score_route": 0.0,
"score_penalty": 1.0,
"score_composed": 0.0
},
"meta": {
"route_length": 54.88,
"duration_game": 60.05,
"duration_system": 1977.261
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3869_rep0",
"scenario_name": "VanillaSignalizedTurnEncounterRedLight_1",
"weather_id": "8",
"save_name": "RouteScenario_3869_rep0_Town13_VanillaSignalizedTurnEncounterRedLight_1_8_08_19_14_06_02",
"status": "Failed - Agent got blocked",
"num_infractions": 1,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=2652.035, y=2305.122, z=175.183)"
],
"route_timeout": []
},
"scores": {
"score_route": 0.0,
"score_penalty": 1.0,
"score_composed": 0.0
},
"meta": {
"route_length": 60.763,
"duration_game": 60.05,
"duration_system": 2974.532
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3865_rep0",
"scenario_name": "VanillaSignalizedTurnEncounterRedLight_1",
"weather_id": "12",
"save_name": "RouteScenario_3865_rep0_Town13_VanillaSignalizedTurnEncounterRedLight_1_12_08_19_13_47_30",
"status": "Completed",
"num_infractions": 19,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [
"Agent ran a red light 6269 at (x=-3245.442, y=4722.859, z=176.347)"
],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 86.75% of the surrounding traffic's one",
"Average speed is 56.17% of the surrounding traffic's one",
"Average speed is 81.57% of the surrounding traffic's one",
"Average speed is 59.4% of the surrounding traffic's one",
"Average speed is 213.66% of the surrounding traffic's one",
"Average speed is 465.65% of the surrounding traffic's one",
"Average speed is 606.12% of the surrounding traffic's one",
"Average speed is 510.91% of the surrounding traffic's one",
"Average speed is 386.52% of the surrounding traffic's one",
"Average speed is 360.21% of the surrounding traffic's one",
"Average speed is 207.21% of the surrounding traffic's one",
"Average speed is 127.84% of the surrounding traffic's one",
"Average speed is 114.79% of the surrounding traffic's one",
"Average speed is 95.21% of the surrounding traffic's one",
"Average speed is 77.79% of the surrounding traffic's one",
"Average speed is 103.1% of the surrounding traffic's one",
"Average speed is 78.87% of the surrounding traffic's one",
"Average speed is 78.87% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 100,
"score_penalty": 0.7,
"score_composed": 70.0
},
"meta": {
"route_length": 64.688,
"duration_game": 19.2,
"duration_system": 1043.099
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3813_rep0",
"scenario_name": "HighwayCutIn_1",
"weather_id": "12",
"save_name": "RouteScenario_3813_rep0_Town13_HighwayCutIn_1_12_08_19_12_57_52",
"status": "Failed - Agent got blocked",
"num_infractions": 12,
"infractions": {
"collisions_layout": [
"Agent collided against object with type=static.terrain and id=0 at (x=-3692.198, y=-2847.702, z=161.892)"
],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 129.19% of the surrounding traffic's one",
"Average speed is 135.38% of the surrounding traffic's one",
"Average speed is 148.74% of the surrounding traffic's one",
"Average speed is 124.29% of the surrounding traffic's one",
"Average speed is 130.64% of the surrounding traffic's one",
"Average speed is 141.15% of the surrounding traffic's one",
"Average speed is 136.1% of the surrounding traffic's one",
"Average speed is 172.14% of the surrounding traffic's one",
"Average speed is 188.65% of the surrounding traffic's one",
"Average speed is 234.93% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=-3691.892, y=-2847.671, z=161.888)"
],
"route_timeout": []
},
"scores": {
"score_route": 60.77,
"score_penalty": 0.65,
"score_composed": 39.5005
},
"meta": {
"route_length": 140.53,
"duration_game": 79.4,
"duration_system": 2909.517
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3785_rep0",
"scenario_name": "MergerIntoSlowTraffic_1",
"weather_id": "10",
"save_name": "RouteScenario_3785_rep0_Town13_MergerIntoSlowTraffic_1_10_08_19_00_12_38",
"status": "Completed",
"num_infractions": 22,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [
"Agent collided against object with type=vehicle.chevrolet.impala and id=52064 at (x=2945.575, y=6063.979, z=156.354)"
],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [
"Agent went outside its route lanes for about 44.621 meters (20.12% of the completed route)"
],
"min_speed_infractions": [
"Average speed is 96.69% of the surrounding traffic's one",
"Average speed is 119.85% of the surrounding traffic's one",
"Average speed is 194.4% of the surrounding traffic's one",
"Average speed is 291.61% of the surrounding traffic's one",
"Average speed is 328.44% of the surrounding traffic's one",
"Average speed is 333.35% of the surrounding traffic's one",
"Average speed is 296.16% of the surrounding traffic's one",
"Average speed is 394.37% of the surrounding traffic's one",
"Average speed is 343.3% of the surrounding traffic's one",
"Average speed is 332.42% of the surrounding traffic's one",
"Average speed is 281.04% of the surrounding traffic's one",
"Average speed is 172.65% of the surrounding traffic's one",
"Average speed is 135.21% of the surrounding traffic's one",
"Average speed is 58.84% of the surrounding traffic's one",
"Average speed is 47.79% of the surrounding traffic's one",
"Average speed is 73.63% of the surrounding traffic's one",
"Average speed is 9866.34% of the surrounding traffic's one",
"Average speed is 12132857.37% of the surrounding traffic's one",
"Average speed is 24680355.02% of the surrounding traffic's one",
"Average speed is 24680355.02% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 100,
"score_penalty": 0.479264,
"score_composed": 47.92636
},
"meta": {
"route_length": 222.734,
"duration_game": 57.9,
"duration_system": 1353.004
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3749_rep0",
"scenario_name": "EnterActorFlow_1",
"weather_id": "0",
"save_name": "RouteScenario_3749_rep0_Town13_EnterActorFlow_1_0_08_18_23_08_11",
"status": "Failed - TickRuntime",
"num_infractions": 3,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 131.36% of the surrounding traffic's one",
"Average speed is 366.41% of the surrounding traffic's one",
"Average speed is 231.45% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 18.72,
"score_penalty": 1.0,
"score_composed": 18.72
},
"meta": {
"route_length": 80.789,
"duration_game": 200.05,
"duration_system": 3790.812
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3737_rep0",
"scenario_name": "VehicleTurningRoutePedestrian_1",
"weather_id": "14",
"save_name": "RouteScenario_3737_rep0_Town13_VehicleTurningRoutePedestrian_1_14_08_18_22_36_50",
"status": "Failed - Agent got blocked",
"num_infractions": 4,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 110.98% of the surrounding traffic's one",
"Average speed is 82.73% of the surrounding traffic's one",
"Average speed is 62.08% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=3247.208, y=1925.369, z=176.205)"
],
"route_timeout": []
},
"scores": {
"score_route": 17.83,
"score_penalty": 1.0,
"score_composed": 17.83
},
"meta": {
"route_length": 73.558,
"duration_game": 65.7,
"duration_system": 1797.912
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3731_rep0",
"scenario_name": "VehicleTurningRoutePedestrian_1",
"weather_id": "8",
"save_name": "RouteScenario_3731_rep0_Town13_VehicleTurningRoutePedestrian_1_8_08_18_22_05_58",
"status": "Failed - Agent got blocked",
"num_infractions": 4,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 86.66% of the surrounding traffic's one",
"Average speed is 73.4% of the surrounding traffic's one",
"Average speed is 121.99% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=3811.085, y=1975.547, z=170.761)"
],
"route_timeout": []
},
"scores": {
"score_route": 15.3,
"score_penalty": 1.0,
"score_composed": 15.3
},
"meta": {
"route_length": 79.252,
"duration_game": 65.5,
"duration_system": 1761.63
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3717_rep0",
"scenario_name": "VehicleTurningRoute_1",
"weather_id": "20",
"save_name": "RouteScenario_3717_rep0_Town13_VehicleTurningRoute_1_20_08_18_21_37_36",
"status": "Failed - Agent got blocked",
"num_infractions": 3,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 112.43% of the surrounding traffic's one",
"Average speed is 68.11% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=3482.669, y=4051.253, z=173.777)"
],
"route_timeout": []
},
"scores": {
"score_route": 13.7,
"score_penalty": 1.0,
"score_composed": 13.7
},
"meta": {
"route_length": 74.111,
"duration_game": 64.65,
"duration_system": 1613.929
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3712_rep0",
"scenario_name": "VehicleTurningRoute_1",
"weather_id": "15",
"save_name": "RouteScenario_3712_rep0_Town13_VehicleTurningRoute_1_15_08_18_21_27_55",
"status": "Completed",
"num_infractions": 24,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [
"Agent collided against object with type=vehicle.diamondback.century and id=28356 at (x=2639.025, y=5215.272, z=163.472)"
],
"red_light": [],
"stop_infraction": [
"Agent ran a stop with id=23986 at (x=2627.847, y=5237.402, z=162.779)"
],
"outside_route_lanes": [
"Agent went outside its route lanes for about 12.002 meters (15.27% of the completed route)"
],
"min_speed_infractions": [
"Average speed is 103.84% of the surrounding traffic's one",
"Average speed is 106.08% of the surrounding traffic's one",
"Average speed is 91.67% of the surrounding traffic's one",
"Average speed is 31.66% of the surrounding traffic's one",
"Average speed is 335.07% of the surrounding traffic's one",
"Average speed is 291.73% of the surrounding traffic's one",
"Average speed is 301.01% of the surrounding traffic's one",
"Average speed is 217.06% of the surrounding traffic's one",
"Average speed is 186.43% of the surrounding traffic's one",
"Average speed is 187.61% of the surrounding traffic's one",
"Average speed is 165.97% of the surrounding traffic's one",
"Average speed is 99.05% of the surrounding traffic's one",
"Average speed is 82.69% of the surrounding traffic's one",
"Average speed is 125.63% of the surrounding traffic's one",
"Average speed is 105.83% of the surrounding traffic's one",
"Average speed is 91.16% of the surrounding traffic's one",
"Average speed is 149.87% of the surrounding traffic's one",
"Average speed is 124.76% of the surrounding traffic's one",
"Average speed is 98.05% of the surrounding traffic's one",
"Average speed is 89.8% of the surrounding traffic's one",
"Average speed is 89.8% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 100,
"score_penalty": 0.406696,
"score_composed": 40.669592
},
"meta": {
"route_length": 78.59,
"duration_game": 23.55,
"duration_system": 506.574
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3708_rep0",
"scenario_name": "VehicleTurningRoute_1",
"weather_id": "11",
"save_name": "RouteScenario_3708_rep0_Town13_VehicleTurningRoute_1_11_08_18_20_51_42",
"status": "Failed - Agent got blocked",
"num_infractions": 5,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [],
"red_light": [],
"stop_infraction": [],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 66.39% of the surrounding traffic's one",
"Average speed is 63.57% of the surrounding traffic's one",
"Average speed is 55.19% of the surrounding traffic's one",
"Average speed is 16.91% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=3149.609, y=5134.802, z=177.888)"
],
"route_timeout": []
},
"scores": {
"score_route": 24.28,
"score_penalty": 1.0,
"score_composed": 24.28
},
"meta": {
"route_length": 66.439,
"duration_game": 84.8,
"duration_system": 2096.77
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3697_rep0",
"scenario_name": "OppositeVehicleTakingPriority_1",
"weather_id": "0",
"save_name": "RouteScenario_3697_rep0_Town13_OppositeVehicleTakingPriority_1_0_08_18_20_29_47",
"status": "Failed - Agent got blocked",
"num_infractions": 15,
"infractions": {
"collisions_layout": [
"Agent collided against object with type=traffic.speed_limit.30 and id=18222 at (x=-4150.424, y=3333.885, z=185.662)"
],
"collisions_pedestrian": [],
"collisions_vehicle": [
"Agent collided against object with type=vehicle.ford.ambulance and id=18915 at (x=-4157.474, y=3334.363, z=185.664)"
],
"red_light": [],
"stop_infraction": [
"Agent ran a stop with id=14747 at (x=-4159.169, y=3341.383, z=185.741)"
],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 89.49% of the surrounding traffic's one",
"Average speed is 104.18% of the surrounding traffic's one",
"Average speed is 340.53% of the surrounding traffic's one",
"Average speed is 95.74% of the surrounding traffic's one",
"Average speed is 72.48% of the surrounding traffic's one",
"Average speed is 77.62% of the surrounding traffic's one",
"Average speed is 110.82% of the surrounding traffic's one",
"Average speed is 128.99% of the surrounding traffic's one",
"Average speed is 146.4% of the surrounding traffic's one",
"Average speed is 388.09% of the surrounding traffic's one",
"Average speed is 59.69% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [
"Agent got blocked at (x=-4149.99, y=3333.095, z=185.656)"
],
"route_timeout": []
},
"scores": {
"score_route": 59.37,
"score_penalty": 0.312,
"score_composed": 18.52344
},
"meta": {
"route_length": 76.297,
"duration_game": 73.3,
"duration_system": 1233.472
},
"town_name": "Town13"
},
{
"route_id": "RouteScenario_3676_rep0",
"scenario_name": "NonSignalizedJunctionRightTurn_1",
"weather_id": "5",
"save_name": "RouteScenario_3676_rep0_Town13_NonSignalizedJunctionRightTurn_1_5_08_18_20_23_33",
"status": "Completed",
"num_infractions": 21,
"infractions": {
"collisions_layout": [],
"collisions_pedestrian": [],
"collisions_vehicle": [
"Agent collided against object with type=vehicle.mercedes.coupe_2020 and id=14214 at (x=3203.185, y=3140.691, z=182.536)"
],
"red_light": [],
"stop_infraction": [
"Agent ran a stop with id=9731 at (x=3206.411, y=3139.538, z=182.478)"
],
"outside_route_lanes": [],
"min_speed_infractions": [
"Average speed is 79.82% of the surrounding traffic's one",
"Average speed is 676.82% of the surrounding traffic's one",
"Average speed is 143.36% of the surrounding traffic's one",
"Average speed is 96.94% of the surrounding traffic's one",
"Average speed is 128.63% of the surrounding traffic's one",
"Average speed is 122.74% of the surrounding traffic's one",
"Average speed is 165.26% of the surrounding traffic's one",
"Average speed is 157.29% of the surrounding traffic's one",
"Average speed is 160.68% of the surrounding traffic's one",
"Average speed is 306.56% of the surrounding traffic's one",
"Average speed is 909.27% of the surrounding traffic's one",
"Average speed is 345.42% of the surrounding traffic's one",
"Average speed is 363.6% of the surrounding traffic's one",
"Average speed is 441.9% of the surrounding traffic's one",
"Average speed is 222.82% of the surrounding traffic's one",
"Average speed is 145.26% of the surrounding traffic's one",
"Average speed is 135.77% of the surrounding traffic's one",
"Average speed is 145.54% of the surrounding traffic's one",
"Average speed is 145.54% of the surrounding traffic's one"
],
"yield_emergency_vehicle_infractions": [],
"scenario_timeouts": [],
"route_dev": [],
"vehicle_blocked": [],
"route_timeout": []
},
"scores": {
"score_route": 100,
"score_penalty": 0.48,
"score_composed": 48.0
},
"meta": {
"route_length": 71.938,
"duration_game": 18.65,
"duration_system": 298.347
},
"town_name": "Town13"
},