-
Notifications
You must be signed in to change notification settings - Fork 0
/
slurm-5451225.out
1946 lines (1946 loc) · 93.8 KB
/
slurm-5451225.out
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
--------------------------
Iteration 0. Team 1610612739 Game 21500499, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 0 running time: 36 seconds
--------------------------
Iteration 1. Team 1610612739 Game 21500499, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 1 running time: 24 seconds
--------------------------
Iteration 2. Team 1610612739 Game 21500499, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 2 running time: 22 seconds
--------------------------
Iteration 3. Team 1610612739 Game 21500499, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0025159280134661715
Checking significant subtrajectories...
Iteration 3 running time: 107 seconds
--------------------------
Iteration 4. Team 1610612739 Game 21500499, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0035180275741885196
Checking significant subtrajectories...
Iteration 4 running time: 86 seconds
--------------------------
Iteration 5. Team 1610612739 Game 21500499, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004559496404315076
Checking significant subtrajectories...
Iteration 5 running time: 68 seconds
--------------------------
Iteration 6. Team 1610612739 Game 21500511, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 6 running time: 15 seconds
--------------------------
Iteration 7. Team 1610612739 Game 21500511, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 7 running time: 13 seconds
--------------------------
Iteration 8. Team 1610612739 Game 21500511, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 8 running time: 11 seconds
--------------------------
Iteration 9. Team 1610612739 Game 21500511, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.008409166350176587
Checking significant subtrajectories...
Iteration 9 running time: 40 seconds
--------------------------
Iteration 10. Team 1610612739 Game 21500511, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.009057248054079753
Checking significant subtrajectories...
Iteration 10 running time: 35 seconds
--------------------------
Iteration 11. Team 1610612739 Game 21500511, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.016292759803467137
Checking significant subtrajectories...
Iteration 11 running time: 29 seconds
--------------------------
Iteration 12. Team 1610612739 Game 21500527, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 120
Final # of plays (distinct tids) in dataset: 24
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 12 running time: 32 seconds
--------------------------
Iteration 13. Team 1610612739 Game 21500527, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 120
Final # of plays (distinct tids) in dataset: 24
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 13 running time: 25 seconds
--------------------------
Iteration 14. Team 1610612739 Game 21500527, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 120
Final # of plays (distinct tids) in dataset: 24
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 14 running time: 22 seconds
--------------------------
Iteration 15. Team 1610612739 Game 21500527, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 120
Final # of plays (distinct tids) in dataset: 24
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0017675730505716972
Checking significant subtrajectories...
Iteration 15 running time: 123 seconds
--------------------------
Iteration 16. Team 1610612739 Game 21500527, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 120
Final # of plays (distinct tids) in dataset: 24
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.00421833145968388
Checking significant subtrajectories...
Iteration 16 running time: 93 seconds
--------------------------
Iteration 17. Team 1610612739 Game 21500527, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 120
Final # of plays (distinct tids) in dataset: 24
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004505890256417307
Checking significant subtrajectories...
Iteration 17 running time: 75 seconds
--------------------------
Iteration 18. Team 1610612739 Game 21500543, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 125
Final # of plays (distinct tids) in dataset: 25
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 18 running time: 35 seconds
--------------------------
Iteration 19. Team 1610612739 Game 21500543, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 125
Final # of plays (distinct tids) in dataset: 25
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 19 running time: 30 seconds
--------------------------
Iteration 20. Team 1610612739 Game 21500543, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 125
Final # of plays (distinct tids) in dataset: 25
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 20 running time: 27 seconds
--------------------------
Iteration 21. Team 1610612739 Game 21500543, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 125
Final # of plays (distinct tids) in dataset: 25
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0023338745900077884
Checking significant subtrajectories...
Iteration 21 running time: 137 seconds
--------------------------
Iteration 22. Team 1610612739 Game 21500543, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 125
Final # of plays (distinct tids) in dataset: 25
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004194382811836969
Checking significant subtrajectories...
Iteration 22 running time: 110 seconds
--------------------------
Iteration 23. Team 1610612739 Game 21500543, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 125
Final # of plays (distinct tids) in dataset: 25
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004473259630848261
Checking significant subtrajectories...
Iteration 23 running time: 90 seconds
--------------------------
Iteration 24. Team 1610612739 Game 21500559, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 100
Final # of plays (distinct tids) in dataset: 20
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 24 running time: 27 seconds
--------------------------
Iteration 25. Team 1610612739 Game 21500559, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 100
Final # of plays (distinct tids) in dataset: 20
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 25 running time: 19 seconds
--------------------------
Iteration 26. Team 1610612739 Game 21500559, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 100
Final # of plays (distinct tids) in dataset: 20
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 26 running time: 18 seconds
--------------------------
Iteration 27. Team 1610612739 Game 21500559, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 100
Final # of plays (distinct tids) in dataset: 20
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004725117525054829
Checking significant subtrajectories...
Some significant subtrajectories were found.
Iteration 27 running time: 91 seconds
--------------------------
Iteration 28. Team 1610612739 Game 21500559, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 100
Final # of plays (distinct tids) in dataset: 20
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.005138932025441363
Checking significant subtrajectories...
Iteration 28 running time: 62 seconds
--------------------------
Iteration 29. Team 1610612739 Game 21500559, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 100
Final # of plays (distinct tids) in dataset: 20
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.007585384334486876
Checking significant subtrajectories...
Iteration 29 running time: 51 seconds
--------------------------
Iteration 30. Team 1610612739 Game 21500575, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 30 running time: 22 seconds
--------------------------
Iteration 31. Team 1610612739 Game 21500575, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 31 running time: 21 seconds
--------------------------
Iteration 32. Team 1610612739 Game 21500575, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 32 running time: 16 seconds
--------------------------
Iteration 33. Team 1610612739 Game 21500575, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0033743741364147075
Checking significant subtrajectories...
Iteration 33 running time: 76 seconds
--------------------------
Iteration 34. Team 1610612739 Game 21500575, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.00509165685717673
Checking significant subtrajectories...
Iteration 34 running time: 65 seconds
--------------------------
Iteration 35. Team 1610612739 Game 21500575, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.007665065387459271
Checking significant subtrajectories...
Iteration 35 running time: 46 seconds
--------------------------
Iteration 36. Team 1610612739 Game 21500601, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 36 running time: 15 seconds
--------------------------
Iteration 37. Team 1610612739 Game 21500601, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 37 running time: 15 seconds
--------------------------
Iteration 38. Team 1610612739 Game 21500601, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 38 running time: 11 seconds
--------------------------
Iteration 39. Team 1610612739 Game 21500601, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.008409166350176587
Checking significant subtrajectories...
Iteration 39 running time: 38 seconds
--------------------------
Iteration 40. Team 1610612739 Game 21500601, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.009057248054079753
Checking significant subtrajectories...
Iteration 40 running time: 32 seconds
--------------------------
Iteration 41. Team 1610612739 Game 21500601, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 70
Final # of plays (distinct tids) in dataset: 14
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.009057248054079753
Checking significant subtrajectories...
Iteration 41 running time: 27 seconds
--------------------------
Iteration 42. Team 1610612739 Game 21500622, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 55
Final # of plays (distinct tids) in dataset: 11
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 42 running time: 12 seconds
--------------------------
Iteration 43. Team 1610612739 Game 21500622, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 55
Final # of plays (distinct tids) in dataset: 11
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 43 running time: 10 seconds
--------------------------
Iteration 44. Team 1610612739 Game 21500622, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 55
Final # of plays (distinct tids) in dataset: 11
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 44 running time: 10 seconds
--------------------------
Iteration 45. Team 1610612739 Game 21500622, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 55
Final # of plays (distinct tids) in dataset: 11
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.010848708442398668
Checking significant subtrajectories...
Iteration 45 running time: 26 seconds
--------------------------
Iteration 46. Team 1610612739 Game 21500622, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 55
Final # of plays (distinct tids) in dataset: 11
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.012218143183736969
Checking significant subtrajectories...
Iteration 46 running time: 23 seconds
--------------------------
Iteration 47. Team 1610612739 Game 21500622, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 55
Final # of plays (distinct tids) in dataset: 11
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.02006428643498566
Checking significant subtrajectories...
Iteration 47 running time: 21 seconds
--------------------------
Iteration 48. Team 1610612739 Game 21500011, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 48 running time: 34 seconds
--------------------------
Iteration 49. Team 1610612739 Game 21500011, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 49 running time: 30 seconds
--------------------------
Iteration 50. Team 1610612739 Game 21500011, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 50 running time: 27 seconds
--------------------------
Iteration 51. Team 1610612739 Game 21500011, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002782200953803582
Checking significant subtrajectories...
Iteration 51 running time: 129 seconds
--------------------------
Iteration 52. Team 1610612739 Game 21500011, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0029782480974748986
Checking significant subtrajectories...
Iteration 52 running time: 101 seconds
--------------------------
Iteration 53. Team 1610612739 Game 21500011, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0029782480974748986
Checking significant subtrajectories...
Iteration 53 running time: 81 seconds
--------------------------
Iteration 54. Team 1610612739 Game 21500021, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 54 running time: 17 seconds
--------------------------
Iteration 55. Team 1610612739 Game 21500021, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 55 running time: 15 seconds
--------------------------
Iteration 56. Team 1610612739 Game 21500021, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 56 running time: 12 seconds
--------------------------
Iteration 57. Team 1610612739 Game 21500021, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.007426841710835031
Checking significant subtrajectories...
Iteration 57 running time: 50 seconds
--------------------------
Iteration 58. Team 1610612739 Game 21500021, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.010624430674450708
Checking significant subtrajectories...
Iteration 58 running time: 42 seconds
--------------------------
Iteration 59. Team 1610612739 Game 21500021, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.009614665738572071
Checking significant subtrajectories...
Iteration 59 running time: 34 seconds
--------------------------
Iteration 60. Team 1610612739 Game 21500046, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 60 running time: 17 seconds
--------------------------
Iteration 61. Team 1610612739 Game 21500046, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 61 running time: 17 seconds
--------------------------
Iteration 62. Team 1610612739 Game 21500046, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 62 running time: 12 seconds
--------------------------
Iteration 63. Team 1610612739 Game 21500046, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.006851682997768731
Checking significant subtrajectories...
Iteration 63 running time: 51 seconds
--------------------------
Iteration 64. Team 1610612739 Game 21500046, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.00764262181376799
Checking significant subtrajectories...
Iteration 64 running time: 41 seconds
--------------------------
Iteration 65. Team 1610612739 Game 21500046, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.009743147151085239
Checking significant subtrajectories...
Iteration 65 running time: 34 seconds
--------------------------
Iteration 66. Team 1610612739 Game 21500063, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 85
Final # of plays (distinct tids) in dataset: 17
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 66 running time: 22 seconds
--------------------------
Iteration 67. Team 1610612739 Game 21500063, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 85
Final # of plays (distinct tids) in dataset: 17
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 67 running time: 15 seconds
--------------------------
Iteration 68. Team 1610612739 Game 21500063, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 85
Final # of plays (distinct tids) in dataset: 17
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 68 running time: 16 seconds
--------------------------
Iteration 69. Team 1610612739 Game 21500063, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 85
Final # of plays (distinct tids) in dataset: 17
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0038273037208101514
Checking significant subtrajectories...
Iteration 69 running time: 61 seconds
--------------------------
Iteration 70. Team 1610612739 Game 21500063, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 85
Final # of plays (distinct tids) in dataset: 17
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.011817723106369693
Checking significant subtrajectories...
Iteration 70 running time: 51 seconds
--------------------------
Iteration 71. Team 1610612739 Game 21500063, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 85
Final # of plays (distinct tids) in dataset: 17
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.011817723106369693
Checking significant subtrajectories...
Iteration 71 running time: 40 seconds
--------------------------
Iteration 72. Team 1610612739 Game 21500078, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 72 running time: 24 seconds
--------------------------
Iteration 73. Team 1610612739 Game 21500078, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 73 running time: 18 seconds
--------------------------
Iteration 74. Team 1610612739 Game 21500078, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 74 running time: 16 seconds
--------------------------
Iteration 75. Team 1610612739 Game 21500078, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0042539291841852366
Checking significant subtrajectories...
Iteration 75 running time: 83 seconds
--------------------------
Iteration 76. Team 1610612739 Game 21500078, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.005120369782599377
Checking significant subtrajectories...
Iteration 76 running time: 64 seconds
--------------------------
Iteration 77. Team 1610612739 Game 21500078, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 95
Final # of plays (distinct tids) in dataset: 19
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0070259769171841634
Checking significant subtrajectories...
Iteration 77 running time: 49 seconds
--------------------------
Iteration 78. Team 1610612739 Game 21500094, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 78 running time: 29 seconds
--------------------------
Iteration 79. Team 1610612739 Game 21500094, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 79 running time: 26 seconds
--------------------------
Iteration 80. Team 1610612739 Game 21500094, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 80 running time: 21 seconds
--------------------------
Iteration 81. Team 1610612739 Game 21500094, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003599189341382122
Checking significant subtrajectories...
Iteration 81 running time: 130 seconds
--------------------------
Iteration 82. Team 1610612739 Game 21500094, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003599189341382122
Checking significant subtrajectories...
Iteration 82 running time: 98 seconds
--------------------------
Iteration 83. Team 1610612739 Game 21500094, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 115
Final # of plays (distinct tids) in dataset: 23
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003599189341382122
Checking significant subtrajectories...
Iteration 83 running time: 75 seconds
--------------------------
Iteration 84. Team 1610612739 Game 21500106, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 110
Final # of plays (distinct tids) in dataset: 22
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 84 running time: 29 seconds
--------------------------
Iteration 85. Team 1610612739 Game 21500106, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 110
Final # of plays (distinct tids) in dataset: 22
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 85 running time: 22 seconds
--------------------------
Iteration 86. Team 1610612739 Game 21500106, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 110
Final # of plays (distinct tids) in dataset: 22
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 86 running time: 21 seconds
--------------------------
Iteration 87. Team 1610612739 Game 21500106, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 110
Final # of plays (distinct tids) in dataset: 22
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0030013103191174196
Checking significant subtrajectories...
Iteration 87 running time: 99 seconds
--------------------------
Iteration 88. Team 1610612739 Game 21500106, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 110
Final # of plays (distinct tids) in dataset: 22
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.005563220418146226
Checking significant subtrajectories...
Iteration 88 running time: 80 seconds
--------------------------
Iteration 89. Team 1610612739 Game 21500106, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 110
Final # of plays (distinct tids) in dataset: 22
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0056673002138042175
Checking significant subtrajectories...
Iteration 89 running time: 64 seconds
--------------------------
Iteration 90. Team 1610612739 Game 21500130, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 135
Final # of plays (distinct tids) in dataset: 27
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 90 running time: 37 seconds
--------------------------
Iteration 91. Team 1610612739 Game 21500130, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 135
Final # of plays (distinct tids) in dataset: 27
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 91 running time: 31 seconds
--------------------------
Iteration 92. Team 1610612739 Game 21500130, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 135
Final # of plays (distinct tids) in dataset: 27
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 92 running time: 28 seconds
--------------------------
Iteration 93. Team 1610612739 Game 21500130, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 135
Final # of plays (distinct tids) in dataset: 27
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.00189542890103306
Checking significant subtrajectories...
Iteration 93 running time: 154 seconds
--------------------------
Iteration 94. Team 1610612739 Game 21500130, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 135
Final # of plays (distinct tids) in dataset: 27
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0026655910417338405
Checking significant subtrajectories...
Iteration 94 running time: 110 seconds
--------------------------
Iteration 95. Team 1610612739 Game 21500130, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 135
Final # of plays (distinct tids) in dataset: 27
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0027318612881490813
Checking significant subtrajectories...
Iteration 95 running time: 93 seconds
--------------------------
Iteration 96. Team 1610612739 Game 21500141, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 96 running time: 20 seconds
--------------------------
Iteration 97. Team 1610612739 Game 21500141, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 97 running time: 14 seconds
--------------------------
Iteration 98. Team 1610612739 Game 21500141, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 98 running time: 13 seconds
--------------------------
Iteration 99. Team 1610612739 Game 21500141, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0071301565357300015
Checking significant subtrajectories...
Iteration 99 running time: 51 seconds
--------------------------
Iteration 100. Team 1610612739 Game 21500141, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.007426841710835031
Checking significant subtrajectories...
Iteration 100 running time: 42 seconds
--------------------------
Iteration 101. Team 1610612739 Game 21500141, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.009614665738572073
Checking significant subtrajectories...
Iteration 101 running time: 36 seconds
--------------------------
Iteration 102. Team 1610612739 Game 21500160, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 102 running time: 37 seconds
--------------------------
Iteration 103. Team 1610612739 Game 21500160, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 103 running time: 29 seconds
--------------------------
Iteration 104. Team 1610612739 Game 21500160, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 104 running time: 29 seconds
--------------------------
Iteration 105. Team 1610612739 Game 21500160, Distance Threshold 4, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002782200953803582
Checking significant subtrajectories...
Iteration 105 running time: 150 seconds
--------------------------
Iteration 106. Team 1610612739 Game 21500160, Distance Threshold 4, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002782200953803582
Checking significant subtrajectories...
Iteration 106 running time: 109 seconds
--------------------------
Iteration 107. Team 1610612739 Game 21500160, Distance Threshold 4, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 130
Final # of plays (distinct tids) in dataset: 26
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0029782480974748986
Checking significant subtrajectories...
Iteration 107 running time: 84 seconds
--------------------------
Iteration 108. Team 1610612739 Game 21500176, Distance Threshold 1.5, Min Length 5, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 108 running time: 21 seconds
--------------------------
Iteration 109. Team 1610612739 Game 21500176, Distance Threshold 1.5, Min Length 8, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 109 running time: 13 seconds
--------------------------
Iteration 110. Team 1610612739 Game 21500176, Distance Threshold 1.5, Min Length 10, Downsampling 4...
Final # of agent tids in dataset: 80
Final # of plays (distinct tids) in dataset: 16
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Since the output delta was FAIL significant_subtrajectories.py will not be run.
Iteration 110 running time: 13 seconds