-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtests.log
2559 lines (2559 loc) · 189 KB
/
tests.log
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
DEBUG:matplotlib:(private) matplotlib data path: /home/mfallan/mc/lib/python3.8/site-packages/matplotlib/mpl-data
DEBUG:matplotlib:matplotlib data path: /home/mfallan/mc/lib/python3.8/site-packages/matplotlib/mpl-data
DEBUG:matplotlib:CONFIGDIR=/home/mfallan/.config/matplotlib
DEBUG:matplotlib:matplotlib version 3.3.2
DEBUG:matplotlib:interactive is False
DEBUG:matplotlib:platform is linux
DEBUG:matplotlib:loaded modules: ['sys', 'builtins', '_frozen_importlib', '_imp', '_warnings', '_frozen_importlib_external', '_io', 'marshal', 'posix', '_thread', '_weakref', 'time', 'zipimport', '_codecs', 'codecs', 'encodings.aliases', 'encodings', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', '_abc', 'abc', 'io', '_stat', 'stat', '_collections_abc', 'genericpath', 'posixpath', 'os.path', 'os', '_sitebuiltins', '_locale', '_bootlocale', 'types', 'importlib._bootstrap', 'importlib._bootstrap_external', 'warnings', 'importlib', 'importlib.machinery', 'importlib.abc', '_operator', 'operator', 'keyword', '_heapq', 'heapq', 'itertools', 'reprlib', '_collections', 'collections', '_functools', 'functools', 'contextlib', 'importlib.util', 'mpl_toolkits', 'site', 'enum', '_sre', 'sre_constants', 'sre_parse', 'sre_compile', 'copyreg', 're', 'token', 'tokenize', 'linecache', 'traceback', '_weakrefset', 'weakref', 'collections.abc', '_string', 'string', 'threading', 'atexit', 'logging', 'unittest.util', 'unittest.result', 'concurrent', 'concurrent.futures._base', 'concurrent.futures', '_socket', 'math', 'select', 'selectors', 'errno', 'socket', 'signal', '_posixsubprocess', 'subprocess', '_ssl', '_struct', 'struct', 'binascii', 'base64', 'ssl', 'asyncio.constants', '_opcode', 'opcode', 'dis', 'inspect', 'asyncio.format_helpers', 'asyncio.base_futures', 'asyncio.log', 'asyncio.coroutines', '_contextvars', 'contextvars', 'asyncio.exceptions', 'asyncio.base_tasks', '_asyncio', 'asyncio.events', 'asyncio.futures', 'asyncio.protocols', 'asyncio.transports', 'asyncio.sslproto', 'typing.io', 'typing.re', 'typing', 'asyncio.locks', 'asyncio.tasks', 'asyncio.staggered', 'asyncio.trsock', 'asyncio.base_events', 'asyncio.runners', 'asyncio.queues', 'asyncio.streams', 'asyncio.subprocess', 'asyncio.base_subprocess', 'asyncio.selector_events', 'asyncio.unix_events', 'asyncio', 'difflib', 'pprint', 'unittest.case', 'unittest.async_case', 'unittest.suite', 'fnmatch', 'unittest.loader', 'zlib', '_compression', '_bz2', 'bz2', '_lzma', 'lzma', 'pwd', 'grp', 'shutil', 'locale', 'gettext', 'argparse', 'unittest.signals', 'unittest.runner', 'unittest.main', 'unittest', 'numpy._globals', 'numpy.__config__', 'numpy.version', '_ctypes', 'ctypes._endian', 'ctypes', 'mkl._mklinit', 'cython_runtime', '__future__', 'six', 'mkl._py_mkl_service', 'mkl', 'numpy._distributor_init', 'textwrap', '_datetime', 'datetime', 'numpy.core._multiarray_umath', 'numpy.compat._inspect', 'ntpath', 'urllib', 'urllib.parse', 'pathlib', '_compat_pickle', '_pickle', 'pickle', 'numpy.compat.py3k', 'numpy.compat', 'numpy.core.overrides', 'numpy.core.multiarray', 'numpy.core.umath', 'numbers', 'numpy.core._string_helpers', 'numpy.core._dtype', 'numpy.core._type_aliases', 'numpy.core.numerictypes', 'numpy.core._asarray', 'numpy.core._exceptions', 'numpy.core._methods', 'numpy.core.fromnumeric', 'numpy.core.shape_base', 'numpy.core._ufunc_config', 'numpy.core.arrayprint', 'numpy.core.numeric', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.einsumfunc', 'numpy.core._multiarray_tests', 'numpy.core._add_newdocs', 'numpy.core._dtype_ctypes', '_ast', 'ast', 'platform', 'numpy.core._internal', 'numpy._pytesttester', 'numpy.core', 'numpy.lib.mixins', 'numpy.lib.ufunclike', 'numpy.lib.type_check', 'numpy.lib.scimath', 'numpy.lib.twodim_base', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.linalg.linalg', 'numpy.linalg', 'numpy.matrixlib.defmatrix', 'numpy.matrixlib', 'numpy.lib.histograms', 'numpy.lib.function_base', 'numpy.lib.stride_tricks', 'numpy.lib.index_tricks', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.polynomial', 'numpy.lib.utils', 'numpy.lib.arraysetops', 'numpy.lib.format', 'numpy.lib._datasource', 'numpy.lib._iotools', 'numpy.lib.npyio', '_decimal', 'decimal', 'numpy.lib.financial', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy.lib', 'numpy.fft._pocketfft_internal', 'numpy.fft._pocketfft', 'numpy.fft.helper', 'numpy.fft', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.polynomial', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.polynomial', '_cython_0_29_21', 'numpy.random._common', '_hashlib', '_blake2', '_sha3', 'hashlib', 'hmac', '_bisect', 'bisect', '_sha512', '_random', 'random', 'secrets', 'numpy.random.bit_generator', 'numpy.random._bounded_integers', 'numpy.random._mt19937', 'numpy.random.mtrand', 'numpy.random._philox', 'numpy.random._pcg64', 'numpy.random._sfc64', 'numpy.random._generator', 'numpy.random._pickle', 'numpy.random', 'numpy.ctypeslib', 'numpy.ma.core', 'numpy.ma.extras', 'numpy.ma', 'numpy', 'pytz.exceptions', 'pytz.lazy', 'pytz.tzinfo', 'pytz.tzfile', 'pytz', 'dateutil._version', 'dateutil', 'mmap', 'pandas._typing', 'pandas.compat', 'distutils', 'distutils.version', 'pandas.compat.numpy', 'pandas._libs.tslibs.dtypes', 'pandas._libs.tslibs.base', 'pandas._libs.tslibs.np_datetime', 'pandas._libs.tslibs.nattype', 'six.moves', 'dateutil.tz._common', 'dateutil.tz._factories', 'dateutil.tz.tz', 'dateutil.tz', 'pandas._libs.tslibs.timezones', 'pandas._libs.tslibs.ccalendar', 'pandas._libs.tslibs.tzconversion', 'pandas._libs.tslibs.timedeltas', 'pandas._config.config', 'pandas._config.dates', 'pandas._config.display', 'pandas._config', 'pandas._config.localization', 'calendar', 'pandas._libs.tslibs.strptime', 'pandas._libs.tslibs.fields', 'pandas._libs.tslibs.timestamps', 'dateutil.easter', 'dateutil._common', 'dateutil.relativedelta', 'pandas._libs.properties', 'pandas._libs.tslibs.offsets', 'dateutil.parser._parser', 'dateutil.parser.isoparser', 'dateutil.parser', 'pandas._libs.tslibs.parsing', 'pandas._libs.tslibs.conversion', 'pandas._libs.tslibs.period', 'pandas._libs.tslibs.vectorized', 'pandas._libs.tslibs', 'pandas._libs.ops_dispatch', 'pandas._libs.missing', 'pandas._libs.hashtable', 'pandas._libs.algos', 'pandas._libs.interval', 'pandas._libs', 'pandas._libs.tslib', 'pandas._libs.lib', 'pandas.core', 'pandas.core.config_init', 'pandas.core.dtypes', 'pandas.errors', 'pandas.core.dtypes.generic', 'pandas.core.dtypes.base', 'pandas.core.dtypes.inference', 'pandas.core.dtypes.dtypes', 'pandas.core.dtypes.common', 'pandas.core.dtypes.missing', 'pandas.util._decorators', 'pandas.core.util', 'pandas._libs.hashing', 'pandas.core.util.hashing', 'pandas.util', 'pandas.util._validators', 'pandas.core.dtypes.cast', 'pandas.core.common', 'pandas.core.construction', 'pandas.core.indexers', 'pandas.core.algorithms', 'pandas.compat.numpy.function', 'pandas._libs.ops', 'pandas.core.ops.roperator', 'pandas.core.ops.missing', 'pandas.core.ops.dispatch', 'pandas.core.ops.invalid', 'pandas.core.ops.array_ops', 'pandas.core.ops.common', 'pandas.core.ops.docstrings', 'pandas.core.ops.mask_ops', 'pandas.core.ops.methods', 'pandas.core.ops', 'pandas.compat._optional', 'pandas.core.missing', 'pandas.core.sorting', 'pandas.core.arrays.base', 'pandas.core.nanops', 'pandas.core.array_algos', 'pandas.core.array_algos.masked_reductions', 'pandas.core.arraylike', 'pandas.core.arrays.masked', 'pandas.core.arrays.boolean', '_csv', 'csv', 'pandas.core.accessor', 'pandas.core.array_algos.transforms', 'pandas.core.arrays._mixins', 'pandas.core.base', 'pandas.core.strings.accessor', 'pandas.core.strings.base', 'pandas.core.strings', 'unicodedata', 'pandas.core.strings.object_array', 'pandas.io', 'pandas.io.formats', 'pandas.io.formats.console', 'pandas.core.arrays.categorical', 'pandas.tseries', 'pandas.tseries.frequencies', 'pandas.core.arrays.datetimelike', 'pandas.core.arrays._ranges', 'pandas.tseries.offsets', 'pandas.core.arrays.datetimes', 'pandas.core.tools', 'pandas.core.tools.numeric', 'pandas.core.arrays.numeric', 'pandas.core.arrays.floating', 'pandas.core.arrays.integer', 'pandas.core.indexes', 'copy', 'pandas._libs.index', 'pandas._libs.join', 'pandas._libs.sparse', 'pandas.core.arrays.sparse.dtype', 'pandas.io.formats.printing', 'pandas.core.arrays.sparse.array', 'pandas.core.arrays.sparse.accessor', 'pandas.core.arrays.sparse', 'pandas.core.dtypes.concat', 'pandas.core.indexes.frozen', 'pandas.core.indexes.base', 'pandas.core.arrays.interval', 'pandas.core.arrays.numpy_', 'pandas.core.arrays.period', 'pandas.core.arrays.string_', 'pandas.core.arrays.timedeltas', 'pandas.core.arrays', 'pandas.core.flags', 'pandas._libs.reduction', 'pandas.core.indexes.extension', 'pandas.core.indexes.category', 'pandas.core.indexes.numeric', 'pandas.core.tools.timedeltas', 'pandas.core.indexes.datetimelike', 'pandas.core.tools.times', 'pandas.core.indexes.datetimes', 'pandas.util._exceptions', 'pandas.core.indexes.multi', 'pandas.core.indexes.timedeltas', 'pandas.core.indexes.interval', 'pandas.core.indexes.period', 'pandas.core.indexes.range', 'pandas.core.indexes.api', 'pandas.core.aggregation', 'gc', '_json', 'json.scanner', 'json.decoder', 'json.encoder', 'json', 'pandas._libs.indexing', 'pandas.core.indexing', 'pandas._libs.internals', 'pandas._libs.writers', 'pandas.core.array_algos.replace', 'pandas.core.internals.blocks', 'pandas.core.internals.ops', 'pandas.core.internals.managers', 'pandas.core.internals.concat', 'pandas.core.internals', 'pandas.core.shared_docs', 'pandas._libs.window', 'pandas._libs.window.aggregations', 'pandas.core.util.numba_', 'pandas.core.window.common', 'pandas._libs.window.indexers', 'pandas.core.window.indexers', 'pandas.core.window.numba_', 'pandas.core.groupby.base', 'pandas.core.window.rolling', 'pandas.core.window.ewm', 'pandas.core.window.expanding', 'pandas.core.window', 'pandas.core.reshape', 'pandas.core.reshape.concat', 'dataclasses', 'gzip', 'zipfile', 'pandas.io.common', 'pandas.io.formats.format', 'pandas.core.generic', 'pandas.core.internals.construction', 'pandas.core.reshape.util', 'pandas.core.reshape.melt', 'pandas._libs.reshape', 'pandas.core.indexes.accessors', 'pandas.arrays', 'pandas.core.tools.datetimes', 'pandas.plotting._core', 'pandas.plotting._misc', 'pandas.plotting', 'pandas.core.series', 'pandas.io.formats.info', 'pandas.core.frame', 'pandas._libs.groupby', 'pandas.core.groupby.numba_', 'pandas.core.groupby.categorical', 'pandas.core.groupby.grouper', 'pandas.core.groupby.ops', 'pandas.core.groupby.groupby', 'pandas.core.groupby.generic', 'pandas.core.groupby', 'pandas.core.api', 'pandas.tseries.api', 'pandas.core.computation', 'pandas.core.computation.common', 'pandas.core.computation.align', 'pandas.compat.chainmap', 'pandas.core.computation.scope', 'pandas.core.computation.ops', 'pandas.core.computation.engines', 'pandas.core.computation.parsing', 'pandas.core.computation.expr', 'pandas.core.computation.eval', 'pandas.core.computation.api', 'pandas.core.reshape.merge', 'pandas.core.reshape.pivot', 'pandas.core.reshape.reshape', 'pandas.core.reshape.tile', 'pandas.core.reshape.api', 'pandas.api.extensions', 'pandas.api.indexers', 'pandas.core.dtypes.api', 'pandas.api.types', 'pandas.api', 'pandas.util._print_versions', 'pandas.io.clipboards', 'pandas._libs.parsers', 'pandas.io.excel._util', 'pandas.io.date_converters', 'pandas.io.parsers', 'pandas.io.excel._odfreader', 'pandas.io.excel._openpyxl', 'pandas.io.excel._pyxlsb', 'pandas.io.excel._xlrd', 'pandas.io.excel._base', 'pandas._libs.json', 'pandas.io.formats._color_data', 'pandas.io.formats.css', 'pandas.io.formats.excel', 'pandas.io.excel._odswriter', 'pandas.io.excel._xlsxwriter', 'pandas.io.excel._xlwt', 'pandas.io.excel', 'pandas.io.feather_format', 'pandas.io.gbq', 'pandas.io.html', 'pandas.io.json._normalize', 'pandas.io.json._table_schema', 'pandas.io.json._json', 'pandas.io.json', 'pandas.io.orc', 'pandas.io.parquet', 'pandas.compat.pickle_compat', 'pandas.io.pickle', 'pandas.core.computation.pytables', 'pandas.io.pytables', 'pandas.io.sas.sasreader', 'pandas.io.sas', 'pandas.io.spss', 'pandas.io.sql', 'pandas.io.stata', 'pandas.io.api', 'pandas.util._tester', 'tempfile', 'cmath', 'pandas._libs.testing', 'pandas._testing', 'pandas.testing', 'pandas._version', 'pandas', 'seq_utils', 'Bio', '_sqlite3', 'sqlite3.dbapi2', 'sqlite3', 'Bio.File', 'Bio.SeqRecord', 'Bio.Align._aligners', 'Bio.Align.substitution_matrices', 'array', 'Bio.Data', 'Bio.Data.IUPACData', 'Bio.Data.CodonTable', 'Bio.Seq', 'Bio.Align', 'Bio.SeqIO.Interfaces', 'Bio.SeqIO.AbiIO', 'Bio.Sequencing', 'Bio.Sequencing.Ace', 'Bio.SeqIO.AceIO', 'Bio.SeqIO.FastaIO', 'Bio.SeqFeature', 'Bio.SeqIO.GckIO', 'Bio.SeqIO.IgIO', 'Bio.GenBank.utils', 'Bio.GenBank.Scanner', 'Bio.GenBank', 'Bio.SeqIO.InsdcIO', 'Bio.SeqIO.NibIO', 'Bio.Data.SCOPData', 'Bio.SeqIO.PdbIO', 'Bio.Sequencing.Phd', 'Bio.SeqIO.QualityIO', 'Bio.SeqIO.PhdIO', 'Bio.SeqIO.PirIO', 'xml', 'xml.sax.handler', 'xml.sax._exceptions', 'xml.sax.xmlreader', 'xml.sax', 'email', 'http', 'email.errors', 'email.quoprimime', 'email.base64mime', 'quopri', 'email.encoders', 'email.charset', 'email.header', 'email._parseaddr', 'email.utils', 'email._policybase', 'email.feedparser', 'email.parser', 'uu', 'email._encoded_words', 'email.iterators', 'email.message', 'http.client', 'urllib.response', 'urllib.error', 'urllib.request', 'xml.sax.saxutils', 'Bio.SeqIO.SeqXmlIO', 'Bio.SeqIO.SffIO', 'xml.dom.domreg', 'xml.dom', 'xml.dom.minicompat', 'xml.dom.NodeFilter', 'xml.dom.xmlbuilder', 'xml.dom.minidom', 'Bio.SeqIO.SnapGeneIO', 'Bio.SwissProt', 'Bio.SeqIO.SwissIO', 'Bio.SeqIO.TabIO', 'xml.etree', 'xml.etree.ElementPath', 'pyexpat.errors', 'pyexpat.model', 'pyexpat', '_elementtree', 'xml.etree.ElementTree', 'xml.parsers', 'xml.parsers.expat.model', 'xml.parsers.expat.errors', 'xml.parsers.expat', 'Bio.SeqIO.UniprotIO', 'Bio.SeqIO.XdnaIO', 'Bio.SeqIO', 'matplotlib', 'shlex', 'matplotlib.cbook.deprecation', 'matplotlib.cbook', 'uuid', 'matplotlib._animation_data', 'matplotlib.animation', 'pyparsing', 'matplotlib.fontconfig_pattern', 'matplotlib.docstring', 'matplotlib._color_data', 'matplotlib.colors', 'cycler', 'matplotlib.rcsetup', 'matplotlib._version', 'matplotlib.ft2font', 'kiwisolver']
DEBUG:matplotlib:CACHEDIR=/home/mfallan/.cache/matplotlib
DEBUG:matplotlib.font_manager:Using fontManager instance from /home/mfallan/.cache/matplotlib/fontlist-v330.json
DEBUG:matplotlib.pyplot:Loaded backend agg version unknown.
DEBUG:matplotlib.pyplot:Loaded backend agg version unknown.
DEBUG:root:computed dists: [0.248169, 0.268183, 0.430462, 0.549274, 0.568635, 0.590019, 0.790913, 0.792958, 0.84988, 1.112393]
DEBUG:root:true dists: [0.248169, 0.268183, 0.430462, 0.549274, 0.568636, 0.590019, 0.790913, 0.792958, 0.849879, 1.112393]
DEBUG:root:computed dists: [0.946814, 1.387463, 1.610415, 1.813439, 1.888962, 1.949568, 1.96779, 2.230456, 2.333769, 2.473987]
DEBUG:root:true dists: [0.946814, 1.387462, 1.610415, 1.813439, 1.888961, 1.949568, 1.967789, 2.230455, 2.333768, 2.473987]
INFO:root:test_read_clusters_mu
DEBUG:root:RRE_EM/K_1/run_1-best/Clusters_Mu.txt True Position
28 0.00000
29 0.00441
30 0.00629
31 0.00000
32 0.00540
33 0.03229
34 0.00000
35 0.00000
36 0.02860
37 0.10581
38 0.00000
39 0.00363
40 0.00465
41 0.00333
42 0.00000
43 0.01591
44 0.00000
45 0.00000
46 0.00000
47 0.00000
48 0.01965
49 0.00000
50 0.00389
51 0.00494
52 0.00000
53 0.00242
54 0.00000
55 0.00000
56 0.00389
57 0.14227
58 0.13608
59 0.00000
60 0.00000
61 0.00854
62 0.00177
63 0.00000
64 0.00158
65 0.00000
66 0.00000
67 0.05165
68 0.02200
69 0.00000
70 0.00000
71 0.00000
72 0.08379
73 0.07049
74 0.11488
75 0.00000
76 0.00000
77 0.08316
78 0.00400
79 0.01440
80 0.00000
81 0.00794
82 0.00232
83 0.02628
84 0.13607
85 0.00000
86 0.00000
87 0.12125
88 0.00000
89 0.00000
90 0.00000
91 0.00000
92 0.00150
93 0.00000
94 0.00000
95 0.07194
96 0.00000
97 0.03260
98 0.00000
99 0.00767
100 0.00000
101 0.00000
102 0.00000
103 0.00489
104 0.15907
105 0.00000
106 0.00868
107 0.01212
108 0.00000
109 0.00466
110 0.01768
111 0.00000
112 0.06149
113 0.13548
114 0.18097
115 0.11988
116 0.12872
117 0.00000
118 0.00000
119 0.00000
120 0.00000
121 0.00348
122 0.00000
123 0.00000
124 0.12800
125 0.00000
126 0.00000
127 0.00000
128 0.07128
129 0.00000
130 0.14218
131 0.00000
132 0.00000
133 0.00000
134 0.04133
135 0.00000
136 0.00000
137 0.16932
138 0.00000
139 0.00751
140 0.02992
141 0.02850
142 0.00542
143 0.01882
144 0.00000
145 0.12263
146 0.14201
147 0.00000
148 0.03568
149 0.00000
150 0.00000
151 0.00000
152 0.00000
153 0.00000
154 0.00299
155 0.07517
156 0.15937
157 0.04113
158 0.00000
159 0.01951
160 0.06447
161 0.19345
162 0.10304
163 0.00000
164 0.00000
165 0.00243
166 0.00000
167 0.00000
168 0.00000
169 0.00000
170 0.00000
171 0.00419
172 0.11007
173 0.00000
174 0.13120
175 0.12986
176 0.14180
177 0.14014
178 0.21201
179 0.11004
180 0.00000
181 0.00299
182 0.00000
183 0.00200
184 0.00172
185 0.01300
186 0.00000
187 0.00000
188 0.00803
189 0.12672
190 0.10795
191 0.00000
192 0.09662
193 0.13115
194 0.00000
195 0.00270
196 0.00191
197 0.00000
198 0.00000
199 0.00000
200 0.00582
201 0.00000
202 0.00000
Name: 1, dtype: float64 Position
28 0.00000
29 0.00441
30 0.00629
31 0.00000
32 0.00540
33 0.03229
34 0.00000
35 0.00000
36 0.02860
37 0.10581
38 0.00000
39 0.00363
40 0.00465
41 0.00333
42 0.00000
43 0.01591
44 0.00000
45 0.00000
46 0.00000
47 0.00000
48 0.01965
49 0.00000
50 0.00389
51 0.00494
52 0.00000
53 0.00242
54 0.00000
55 0.00000
56 0.00389
57 0.14227
58 0.13608
59 0.00000
60 0.00000
61 0.00854
62 0.00177
63 0.00000
64 0.00158
65 0.00000
66 0.00000
67 0.05165
68 0.02200
69 0.00000
70 0.00000
71 0.00000
72 0.08379
73 0.07049
74 0.11488
75 0.00000
76 0.00000
77 0.08316
78 0.00400
79 0.01440
80 0.00000
81 0.00794
82 0.00232
83 0.02628
84 0.13607
85 0.00000
86 0.00000
87 0.12125
88 0.00000
89 0.00000
90 0.00000
91 0.00000
92 0.00150
93 0.00000
94 0.00000
95 0.07194
96 0.00000
97 0.03260
98 0.00000
99 0.00767
100 0.00000
101 0.00000
102 0.00000
103 0.00489
104 0.15907
105 0.00000
106 0.00868
107 0.01212
108 0.00000
109 0.00466
110 0.01768
111 0.00000
112 0.06149
113 0.13548
114 0.18097
115 0.11988
116 0.12872
117 0.00000
118 0.00000
119 0.00000
120 0.00000
121 0.00348
122 0.00000
123 0.00000
124 0.12800
125 0.00000
126 0.00000
127 0.00000
128 0.07128
129 0.00000
130 0.14218
131 0.00000
132 0.00000
133 0.00000
134 0.04133
135 0.00000
136 0.00000
137 0.16932
138 0.00000
139 0.00751
140 0.02992
141 0.02850
142 0.00542
143 0.01882
144 0.00000
145 0.12263
146 0.14201
147 0.00000
148 0.03568
149 0.00000
150 0.00000
151 0.00000
152 0.00000
153 0.00000
154 0.00299
155 0.07517
156 0.15937
157 0.04113
158 0.00000
159 0.01951
160 0.06447
161 0.19345
162 0.10304
163 0.00000
164 0.00000
165 0.00243
166 0.00000
167 0.00000
168 0.00000
169 0.00000
170 0.00000
171 0.00419
172 0.11007
173 0.00000
174 0.13120
175 0.12986
176 0.14180
177 0.14014
178 0.21201
179 0.11004
180 0.00000
181 0.00299
182 0.00000
183 0.00200
184 0.00172
185 0.01300
186 0.00000
187 0.00000
188 0.00803
189 0.12672
190 0.10795
191 0.00000
192 0.09662
193 0.13115
194 0.00000
195 0.00270
196 0.00191
197 0.00000
198 0.00000
199 0.00000
200 0.00582
201 0.00000
202 0.00000
Name: 1, dtype: float64
DEBUG:root:RRE_EM/K_1/run_1-best/Clusters_Mu.txt False Position
29 0.00441
30 0.00629
32 0.00540
33 0.03229
36 0.02860
37 0.10581
39 0.00363
40 0.00465
41 0.00333
43 0.01591
48 0.01965
50 0.00389
51 0.00494
53 0.00242
56 0.00389
57 0.14227
58 0.13608
61 0.00854
62 0.00177
64 0.00158
67 0.05165
68 0.02200
72 0.08379
73 0.07049
74 0.11488
77 0.08316
78 0.00400
79 0.01440
81 0.00794
82 0.00232
83 0.02628
84 0.13607
87 0.12125
92 0.00150
95 0.07194
97 0.03260
99 0.00767
103 0.00489
104 0.15907
106 0.00868
107 0.01212
109 0.00466
110 0.01768
112 0.06149
113 0.13548
114 0.18097
115 0.11988
116 0.12872
121 0.00348
124 0.12800
128 0.07128
130 0.14218
134 0.04133
137 0.16932
139 0.00751
140 0.02992
141 0.02850
142 0.00542
143 0.01882
145 0.12263
146 0.14201
148 0.03568
154 0.00299
155 0.07517
156 0.15937
157 0.04113
159 0.01951
160 0.06447
161 0.19345
162 0.10304
165 0.00243
171 0.00419
172 0.11007
174 0.13120
175 0.12986
176 0.14180
177 0.14014
178 0.21201
179 0.11004
181 0.00299
183 0.00200
184 0.00172
185 0.01300
188 0.00803
189 0.12672
190 0.10795
192 0.09662
193 0.13115
195 0.00270
196 0.00191
200 0.00582
Name: 1, dtype: float64 Position
29 0.00441
30 0.00629
32 0.00540
33 0.03229
36 0.02860
37 0.10581
39 0.00363
40 0.00465
41 0.00333
43 0.01591
48 0.01965
50 0.00389
51 0.00494
53 0.00242
56 0.00389
57 0.14227
58 0.13608
61 0.00854
62 0.00177
64 0.00158
67 0.05165
68 0.02200
72 0.08379
73 0.07049
74 0.11488
77 0.08316
78 0.00400
79 0.01440
81 0.00794
82 0.00232
83 0.02628
84 0.13607
87 0.12125
92 0.00150
95 0.07194
97 0.03260
99 0.00767
103 0.00489
104 0.15907
106 0.00868
107 0.01212
109 0.00466
110 0.01768
112 0.06149
113 0.13548
114 0.18097
115 0.11988
116 0.12872
121 0.00348
124 0.12800
128 0.07128
130 0.14218
134 0.04133
137 0.16932
139 0.00751
140 0.02992
141 0.02850
142 0.00542
143 0.01882
145 0.12263
146 0.14201
148 0.03568
154 0.00299
155 0.07517
156 0.15937
157 0.04113
159 0.01951
160 0.06447
161 0.19345
162 0.10304
165 0.00243
171 0.00419
172 0.11007
174 0.13120
175 0.12986
176 0.14180
177 0.14014
178 0.21201
179 0.11004
181 0.00299
183 0.00200
184 0.00172
185 0.01300
188 0.00803
189 0.12672
190 0.10795
192 0.09662
193 0.13115
195 0.00270
196 0.00191
200 0.00582
Name: 1, dtype: float64
DEBUG:root:RRE_EM/K_2/run_1-best/Clusters_Mu.txt True 1 2
Position
28 0.00000 0.00000
29 0.00366 0.00469
30 0.00558 0.00655
31 0.00000 0.00000
32 0.00576 0.00526
33 0.02241 0.03591
34 0.00000 0.00000
35 0.00000 0.00000
36 0.02695 0.02921
37 0.10693 0.10541
38 0.00000 0.00000
39 0.00202 0.00422
40 0.00312 0.00521
41 0.00244 0.00365
42 0.00000 0.00000
43 0.01773 0.01524
44 0.00000 0.00000
45 0.00000 0.00000
46 0.00000 0.00000
47 0.00000 0.00000
48 0.02196 0.01881
49 0.00000 0.00000
50 0.00304 0.00420
51 0.00398 0.00529
52 0.00000 0.00000
53 0.00294 0.00223
54 0.00000 0.00000
55 0.00000 0.00000
56 0.00349 0.00404
57 0.14269 0.14212
58 0.13403 0.13682
59 0.00000 0.00000
60 0.00000 0.00000
61 0.00724 0.00901
62 0.00126 0.00196
63 0.00000 0.00000
64 0.00065 0.00192
65 0.00000 0.00000
66 0.00000 0.00000
67 0.04880 0.05269
68 0.01955 0.02290
69 0.00000 0.00000
70 0.00000 0.00000
71 0.00000 0.00000
72 0.08809 0.08221
73 0.06886 0.07109
74 0.11212 0.11588
75 0.00000 0.00000
76 0.00000 0.00000
77 0.08049 0.08414
78 0.00473 0.00373
79 0.01343 0.01476
80 0.00000 0.00000
81 0.00900 0.00755
82 0.00417 0.00165
83 0.02735 0.02589
84 0.13711 0.13569
85 0.00000 0.00000
86 0.00000 0.00000
87 0.12557 0.11967
88 0.00000 0.00000
89 0.00000 0.00000
90 0.00000 0.00000
91 0.00000 0.00000
92 0.00207 0.00129
93 0.00000 0.00000
94 0.00000 0.00000
95 0.06657 0.07391
96 0.00000 0.00000
97 0.02967 0.03368
98 0.00000 0.00000
99 0.00783 0.00762
100 0.00000 0.00000
101 0.00000 0.00000
102 0.00000 0.00000
103 0.00536 0.00472
104 0.15462 0.16070
105 0.00000 0.00000
106 0.00391 0.01044
107 0.01028 0.01280
108 0.00000 0.00000
109 0.00455 0.00470
110 0.00959 0.02073
111 0.00000 0.00000
112 0.04872 0.06636
113 0.11749 0.14228
114 0.17164 0.18450
115 0.11055 0.12342
116 0.12790 0.12903
117 0.00000 0.00000
118 0.00000 0.00000
119 0.00000 0.00000
120 0.00000 0.00000
121 0.00314 0.00359
122 0.00000 0.00000
123 0.00000 0.00000
124 0.16806 0.11335
125 0.00000 0.00000
126 0.00000 0.00000
127 0.00000 0.00000
128 0.00249 0.09371
129 0.00000 0.00000
130 0.20444 0.11740
131 0.00000 0.00000
132 0.00000 0.00000
133 0.00000 0.00000
134 0.10846 0.01052
135 0.00000 0.00000
136 0.00000 0.00000
137 0.01396 0.21522
138 0.00000 0.00000
139 0.02311 0.00158
140 0.09221 0.00436
141 0.09212 0.00763
142 0.01758 0.00117
143 0.01218 0.02144
144 0.00000 0.00000
145 0.00420 0.16854
146 0.10861 0.15685
147 0.00000 0.00000
148 0.00225 0.05048
149 0.00000 0.00000
150 0.00000 0.00000
151 0.00000 0.00000
152 0.00000 0.00000
153 0.00000 0.00000
154 0.00576 0.00222
155 0.16728 0.04611
156 0.20146 0.14743
157 0.17039 0.00164
158 0.00000 0.00000
159 0.07587 0.00167
160 0.09221 0.05571
161 0.16249 0.20365
162 0.13240 0.09237
163 0.00000 0.00000
164 0.00000 0.00000
165 0.00118 0.00287
166 0.00000 0.00000
167 0.00000 0.00000
168 0.00000 0.00000
169 0.00000 0.00000
170 0.00000 0.00000
171 0.00504 0.00388
172 0.11006 0.11008
173 0.00000 0.00000
174 0.12702 0.13272
175 0.13031 0.12970
176 0.13935 0.14268
177 0.14858 0.13706
178 0.21654 0.21037
179 0.11625 0.10778
180 0.00000 0.00000
181 0.00086 0.00377
182 0.00000 0.00000
183 0.00122 0.00229
184 0.00128 0.00188
185 0.01058 0.01389
186 0.00000 0.00000
187 0.00000 0.00000
188 0.00365 0.00967
189 0.11219 0.13220
190 0.10348 0.10963
191 0.00000 0.00000
192 0.07818 0.10331
193 0.14898 0.12447
194 0.00000 0.00000
195 0.00275 0.00268
196 0.00167 0.00199
197 0.00000 0.00000
198 0.00000 0.00000
199 0.00000 0.00000
200 0.00492 0.00615
201 0.00000 0.00000
202 0.00000 0.00000 1 2
Position
28 0.00000 0.00000
29 0.00366 0.00469
30 0.00558 0.00655
31 0.00000 0.00000
32 0.00576 0.00526
33 0.02241 0.03591
34 0.00000 0.00000
35 0.00000 0.00000
36 0.02695 0.02921
37 0.10693 0.10541
38 0.00000 0.00000
39 0.00202 0.00422
40 0.00312 0.00521
41 0.00244 0.00365
42 0.00000 0.00000
43 0.01773 0.01524
44 0.00000 0.00000
45 0.00000 0.00000
46 0.00000 0.00000
47 0.00000 0.00000
48 0.02196 0.01881
49 0.00000 0.00000
50 0.00304 0.00420
51 0.00398 0.00529
52 0.00000 0.00000
53 0.00294 0.00223
54 0.00000 0.00000
55 0.00000 0.00000
56 0.00349 0.00404
57 0.14269 0.14212
58 0.13403 0.13682
59 0.00000 0.00000
60 0.00000 0.00000
61 0.00724 0.00901
62 0.00126 0.00196
63 0.00000 0.00000
64 0.00065 0.00192
65 0.00000 0.00000
66 0.00000 0.00000
67 0.04880 0.05269
68 0.01955 0.02290
69 0.00000 0.00000
70 0.00000 0.00000
71 0.00000 0.00000
72 0.08809 0.08221
73 0.06886 0.07109
74 0.11212 0.11588
75 0.00000 0.00000
76 0.00000 0.00000
77 0.08049 0.08414
78 0.00473 0.00373
79 0.01343 0.01476
80 0.00000 0.00000
81 0.00900 0.00755
82 0.00417 0.00165
83 0.02735 0.02589
84 0.13711 0.13569
85 0.00000 0.00000
86 0.00000 0.00000
87 0.12557 0.11967
88 0.00000 0.00000
89 0.00000 0.00000
90 0.00000 0.00000
91 0.00000 0.00000
92 0.00207 0.00129
93 0.00000 0.00000
94 0.00000 0.00000
95 0.06657 0.07391
96 0.00000 0.00000
97 0.02967 0.03368
98 0.00000 0.00000
99 0.00783 0.00762
100 0.00000 0.00000
101 0.00000 0.00000
102 0.00000 0.00000
103 0.00536 0.00472
104 0.15462 0.16070
105 0.00000 0.00000
106 0.00391 0.01044
107 0.01028 0.01280
108 0.00000 0.00000
109 0.00455 0.00470
110 0.00959 0.02073
111 0.00000 0.00000
112 0.04872 0.06636
113 0.11749 0.14228
114 0.17164 0.18450
115 0.11055 0.12342
116 0.12790 0.12903
117 0.00000 0.00000
118 0.00000 0.00000
119 0.00000 0.00000
120 0.00000 0.00000
121 0.00314 0.00359
122 0.00000 0.00000
123 0.00000 0.00000
124 0.16806 0.11335
125 0.00000 0.00000
126 0.00000 0.00000
127 0.00000 0.00000
128 0.00249 0.09371
129 0.00000 0.00000
130 0.20444 0.11740
131 0.00000 0.00000
132 0.00000 0.00000
133 0.00000 0.00000
134 0.10846 0.01052
135 0.00000 0.00000
136 0.00000 0.00000
137 0.01396 0.21522
138 0.00000 0.00000
139 0.02311 0.00158
140 0.09221 0.00436
141 0.09212 0.00763
142 0.01758 0.00117
143 0.01218 0.02144
144 0.00000 0.00000
145 0.00420 0.16854
146 0.10861 0.15685
147 0.00000 0.00000
148 0.00225 0.05048
149 0.00000 0.00000
150 0.00000 0.00000
151 0.00000 0.00000
152 0.00000 0.00000
153 0.00000 0.00000
154 0.00576 0.00222
155 0.16728 0.04611
156 0.20146 0.14743
157 0.17039 0.00164
158 0.00000 0.00000
159 0.07587 0.00167
160 0.09221 0.05571
161 0.16249 0.20365
162 0.13240 0.09237
163 0.00000 0.00000
164 0.00000 0.00000
165 0.00118 0.00287
166 0.00000 0.00000
167 0.00000 0.00000
168 0.00000 0.00000
169 0.00000 0.00000
170 0.00000 0.00000
171 0.00504 0.00388
172 0.11006 0.11008
173 0.00000 0.00000
174 0.12702 0.13272
175 0.13031 0.12970
176 0.13935 0.14268
177 0.14858 0.13706
178 0.21654 0.21037
179 0.11625 0.10778
180 0.00000 0.00000
181 0.00086 0.00377
182 0.00000 0.00000
183 0.00122 0.00229
184 0.00128 0.00188
185 0.01058 0.01389
186 0.00000 0.00000
187 0.00000 0.00000
188 0.00365 0.00967
189 0.11219 0.13220
190 0.10348 0.10963
191 0.00000 0.00000
192 0.07818 0.10331
193 0.14898 0.12447
194 0.00000 0.00000
195 0.00275 0.00268
196 0.00167 0.00199
197 0.00000 0.00000
198 0.00000 0.00000
199 0.00000 0.00000
200 0.00492 0.00615
201 0.00000 0.00000
202 0.00000 0.00000
DEBUG:root:RRE_EM/K_2/run_1-best/Clusters_Mu.txt False 1 2
Position
29 0.00366 0.00469
30 0.00558 0.00655
32 0.00576 0.00526
33 0.02241 0.03591
36 0.02695 0.02921
37 0.10693 0.10541
39 0.00202 0.00422
40 0.00312 0.00521
41 0.00244 0.00365
43 0.01773 0.01524
48 0.02196 0.01881
50 0.00304 0.00420
51 0.00398 0.00529
53 0.00294 0.00223
56 0.00349 0.00404
57 0.14269 0.14212
58 0.13403 0.13682
61 0.00724 0.00901
62 0.00126 0.00196
64 0.00065 0.00192
67 0.04880 0.05269
68 0.01955 0.02290
72 0.08809 0.08221
73 0.06886 0.07109
74 0.11212 0.11588
77 0.08049 0.08414
78 0.00473 0.00373
79 0.01343 0.01476
81 0.00900 0.00755
82 0.00417 0.00165
83 0.02735 0.02589
84 0.13711 0.13569
87 0.12557 0.11967
92 0.00207 0.00129
95 0.06657 0.07391
97 0.02967 0.03368
99 0.00783 0.00762
103 0.00536 0.00472
104 0.15462 0.16070
106 0.00391 0.01044
107 0.01028 0.01280
109 0.00455 0.00470
110 0.00959 0.02073
112 0.04872 0.06636
113 0.11749 0.14228
114 0.17164 0.18450
115 0.11055 0.12342
116 0.12790 0.12903
121 0.00314 0.00359
124 0.16806 0.11335
128 0.00249 0.09371
130 0.20444 0.11740
134 0.10846 0.01052
137 0.01396 0.21522
139 0.02311 0.00158
140 0.09221 0.00436
141 0.09212 0.00763
142 0.01758 0.00117
143 0.01218 0.02144
145 0.00420 0.16854
146 0.10861 0.15685
148 0.00225 0.05048
154 0.00576 0.00222
155 0.16728 0.04611
156 0.20146 0.14743
157 0.17039 0.00164
159 0.07587 0.00167
160 0.09221 0.05571
161 0.16249 0.20365
162 0.13240 0.09237
165 0.00118 0.00287
171 0.00504 0.00388
172 0.11006 0.11008
174 0.12702 0.13272
175 0.13031 0.12970
176 0.13935 0.14268
177 0.14858 0.13706
178 0.21654 0.21037
179 0.11625 0.10778
181 0.00086 0.00377
183 0.00122 0.00229
184 0.00128 0.00188
185 0.01058 0.01389
188 0.00365 0.00967
189 0.11219 0.13220
190 0.10348 0.10963
192 0.07818 0.10331
193 0.14898 0.12447
195 0.00275 0.00268
196 0.00167 0.00199
200 0.00492 0.00615 1 2