-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathlog_10dbc142
2260 lines (2109 loc) · 227 KB
/
log_10dbc142
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
***** Runner *****
· Creating environments
· Discovering benchmarks
·· Uninstalling from conda-py3.8-cython-joblib-numpy-pandas-scipy-threadpoolctl
·· Building 10dbc142 <main> for conda-py3.8-cython-joblib-numpy-pandas-scipy-threadpoolctl
·· Installing 10dbc142 <main> into conda-py3.8-cython-joblib-numpy-pandas-scipy-threadpoolctl
· Running 115 total benchmarks (1 commits * 1 environments * 115 benchmarks)
[ 0.00%] · For scikit-learn commit 10dbc142 <main>:
[ 0.00%] ·· Benchmarking conda-py3.8-cython-joblib-numpy-pandas-scipy-threadpoolctl
[ 0.87%] ··· Setting up cluster:16 ok
[ 0.87%] ··· cluster.KMeansBenchmark.peakmem_fit ok
[ 0.87%] ··· ================ =========== ======== ===========
-- init
---------------------------- --------------------
representation algorithm random k-means++
================ =========== ======== ===========
dense lloyd 150M 165M
dense elkan 186M 187M
sparse lloyd 242M 245M
sparse elkan 251M 252M
================ =========== ======== ===========
[ 1.74%] ··· cluster.KMeansBenchmark.peakmem_predict ok
[ 1.74%] ··· ================ =========== ======== ===========
-- init
---------------------------- --------------------
representation algorithm random k-means++
================ =========== ======== ===========
dense lloyd 137M 137M
dense elkan 137M 137M
sparse lloyd 145M 145M
sparse elkan 145M 145M
================ =========== ======== ===========
[ 2.61%] ··· cluster.KMeansBenchmark.peakmem_transform ok
[ 2.61%] ··· ================ =========== ======== ===========
-- init
---------------------------- --------------------
representation algorithm random k-means++
================ =========== ======== ===========
dense lloyd 170M 170M
dense elkan 170M 170M
sparse lloyd 170M 170M
sparse elkan 170M 170M
================ =========== ======== ===========
[ 3.48%] ··· cluster.KMeansBenchmark.time_fit ok
[ 3.48%] ··· ================ =========== ============ ============
-- init
---------------------------- -------------------------
representation algorithm random k-means++
================ =========== ============ ============
dense lloyd 383±5ms 1.20±0s
dense elkan 1.76±0.01s 2.95±0s
sparse lloyd 1.00±0.1s 3.59±0.02s
sparse elkan 2.37±0.02s 4.34±0.05s
================ =========== ============ ============
[ 4.35%] ··· cluster.KMeansBenchmark.time_predict ok
[ 4.35%] ··· ================ =========== ============ =============
-- init
---------------------------- --------------------------
representation algorithm random k-means++
================ =========== ============ =============
dense lloyd 8.05±2ms 6.24±0.06ms
dense elkan 6.58±0.4ms 6.16±0.2ms
sparse lloyd 14.8±6ms 25.9±6ms
sparse elkan 26.0±6ms 25.7±6ms
================ =========== ============ =============
[ 5.22%] ··· cluster.KMeansBenchmark.time_transform ok
[ 5.22%] ··· ================ =========== ============ ============
-- init
---------------------------- -------------------------
representation algorithm random k-means++
================ =========== ============ ============
dense lloyd 140±1ms 140±1ms
dense elkan 138±1ms 140±1ms
sparse lloyd 4.06±0.04s 4.05±0.07s
sparse elkan 4.05±0.02s 4.05±0.03s
================ =========== ============ ============
[ 6.09%] ··· cluster.KMeansBenchmark.track_test_score ok
[ 6.09%] ··· ================ =========== =========== =====================
representation algorithm init
---------------- ----------- ----------- ---------------------
dense lloyd random -4.109886169433594
dense lloyd k-means++ -3.077857732772827
dense elkan random -4.109885215759277
dense elkan k-means++ -3.0778582096099854
sparse lloyd random -0.9266619682312012
sparse lloyd k-means++ -0.9249227643013
sparse elkan random -0.9266619682312012
sparse elkan k-means++ -0.9249262809753418
================ =========== =========== =====================
[ 6.96%] ··· cluster.KMeansBenchmark.track_train_score ok
[ 6.96%] ··· ================ =========== =========== =====================
representation algorithm init
---------------- ----------- ----------- ---------------------
dense lloyd random -4.1075520515441895
dense lloyd k-means++ -3.0774283409118652
dense elkan random -4.1075520515441895
dense elkan k-means++ -3.0774285793304443
sparse lloyd random -0.9227071404457092
sparse lloyd k-means++ -0.922096312046051
sparse elkan random -0.9227071404457092
sparse elkan k-means++ -0.9221000075340271
================ =========== =========== =====================
[ 7.83%] ··· Setting up cluster:65 ok
[ 7.83%] ··· cluster.MiniBatchKMeansBenchmark.peakmem_fit ok
[ 7.83%] ··· ================ ======== ===========
-- init
---------------- --------------------
representation random k-means++
================ ======== ===========
dense 138M 140M
sparse 221M 224M
================ ======== ===========
[ 8.70%] ··· ...ter.MiniBatchKMeansBenchmark.peakmem_predict ok
[ 8.70%] ··· ================ ======== ===========
-- init
---------------- --------------------
representation random k-means++
================ ======== ===========
dense 135M 135M
sparse 150M 150M
================ ======== ===========
[ 9.57%] ··· ...r.MiniBatchKMeansBenchmark.peakmem_transform ok
[ 9.57%] ··· ================ ======== ===========
-- init
---------------- --------------------
representation random k-means++
================ ======== ===========
dense 168M 168M
sparse 170M 170M
================ ======== ===========
[ 10.43%] ··· cluster.MiniBatchKMeansBenchmark.time_fit ok
[ 10.43%] ··· ================ ========== ============
-- init
---------------- -----------------------
representation random k-means++
================ ========== ============
dense 324±2ms 347±4ms
sparse 626±30ms 1.66±0.01s
================ ========== ============
[ 11.30%] ··· cluster.MiniBatchKMeansBenchmark.time_predict ok
[ 11.30%] ··· ================ ============ ============
-- init
---------------- -------------------------
representation random k-means++
================ ============ ============
dense 6.20±0.2ms 6.16±0.2ms
sparse 20.9±9ms 36.4±8ms
================ ============ ============
[ 12.17%] ··· cluster.MiniBatchKMeansBenchmark.time_transform ok
[ 12.17%] ··· ================ ============ ============
-- init
---------------- -------------------------
representation random k-means++
================ ============ ============
dense 137±0.7ms 138±0.4ms
sparse 8.08±0.02s 8.13±0.02s
================ ============ ============
[ 13.04%] ··· ...er.MiniBatchKMeansBenchmark.track_test_score ok
[ 13.04%] ··· ================ =========== =====================
representation init
---------------- ----------- ---------------------
dense random -4.596621036529541
dense k-means++ -3.1085314750671387
sparse random -0.9366871118545532
sparse k-means++ -0.9386959075927734
================ =========== =====================
[ 13.91%] ··· ...r.MiniBatchKMeansBenchmark.track_train_score ok
[ 13.91%] ··· ================ ===================== ====================
-- init
---------------- ------------------------------------------
representation random k-means++
================ ===================== ====================
dense -4.584851264953613 -3.115997314453125
sparse -0.9323447346687317 -0.934399425983429
================ ===================== ====================
[ 14.78%] ··· Setting up decomposition:41 ok
[ 14.78%] ··· ...tion.DictionaryLearningBenchmark.peakmem_fit ok
[ 14.78%] ··· =============== ====== ======
-- n_jobs
--------------- -------------
fit_algorithm 1 4
=============== ====== ======
lars 164M 178M
cd 164M 177M
=============== ====== ======
[ 15.65%] ··· ...ictionaryLearningBenchmark.peakmem_transform ok
[ 15.65%] ··· =============== ====== ======
-- n_jobs
--------------- -------------
fit_algorithm 1 4
=============== ====== ======
lars 135M 136M
cd 135M 135M
=============== ====== ======
[ 16.52%] ··· ...osition.DictionaryLearningBenchmark.time_fit ok
[ 16.52%] ··· =============== =========== ============
-- n_jobs
--------------- ------------------------
fit_algorithm 1 4
=============== =========== ============
lars 18.9±0.3s 11.1±0.08s
cd 669±30ms 3.17±0.6s
=============== =========== ============
[ 17.39%] ··· ...n.DictionaryLearningBenchmark.time_transform ok
[ 17.39%] ··· =============== ========== ==========
-- n_jobs
--------------- ---------------------
fit_algorithm 1 4
=============== ========== ==========
lars 325±40ms 330±20ms
cd 348±70ms 304±20ms
=============== ========== ==========
[ 18.26%] ··· ...DictionaryLearningBenchmark.track_test_score ok
[ 18.26%] ··· =============== ======== ======================
fit_algorithm n_jobs
--------------- -------- ----------------------
lars 1 -0.07475552707910538
lars 4 -0.07475553052041055
cd 1 -0.07475553452968597
cd 4 -0.07475553498821336
=============== ======== ======================
[ 19.13%] ··· ...ictionaryLearningBenchmark.track_train_score ok
[ 19.13%] ··· =============== ======== ======================
fit_algorithm n_jobs
--------------- -------- ----------------------
lars 1 -0.07231885939836502
lars 4 -0.07231886145064417
cd 1 -0.07231885939836502
cd 4 -0.07231886156130721
=============== ======== ======================
[ 20.00%] ··· Setting up decomposition:75 ok
[ 20.00%] ··· ...BatchDictionaryLearningBenchmark.peakmem_fit ok
[ 20.00%] ··· =============== ====== ======
-- n_jobs
--------------- -------------
fit_algorithm 1 4
=============== ====== ======
lars 155M 163M
cd 153M 162M
=============== ====== ======
[ 20.87%] ··· ...ictionaryLearningBenchmark.peakmem_transform ok
[ 20.87%] ··· =============== ====== ======
-- n_jobs
--------------- -------------
fit_algorithm 1 4
=============== ====== ======
lars 137M 136M
cd 137M 136M
=============== ====== ======
[ 20.87%] ···· For parameters: 'lars', 1
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
For parameters: 'cd', 1
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
[ 21.74%] ··· ...iniBatchDictionaryLearningBenchmark.time_fit ok
[ 21.74%] ··· =============== ============ ===========
-- n_jobs
--------------- ------------------------
fit_algorithm 1 4
=============== ============ ===========
lars 11.4±0s 13.8±0.2s
cd 3.13±0.01s 9.32±0.1s
=============== ============ ===========
[ 22.61%] ··· ...chDictionaryLearningBenchmark.time_transform ok
[ 22.61%] ··· =============== ========== ==========
-- n_jobs
--------------- ---------------------
fit_algorithm 1 4
=============== ========== ==========
lars 333±40ms 295±20ms
cd 315±40ms 320±20ms
=============== ========== ==========
[ 22.61%] ···· For parameters: 'lars', 1
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
For parameters: 'lars', 4
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
For parameters: 'cd', 1
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
For parameters: 'cd', 4
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
[ 23.48%] ··· ...DictionaryLearningBenchmark.track_test_score ok
[ 23.48%] ··· =============== ======== ======================
fit_algorithm n_jobs
--------------- -------- ----------------------
lars 1 -0.07506968826055527
lars 4 -0.07506916151508632
cd 1 -0.07509589940309525
cd 4 -0.07509584120306487
=============== ======== ======================
[ 24.35%] ··· ...ictionaryLearningBenchmark.track_train_score ok
[ 24.35%] ··· =============== ======== ======================
fit_algorithm n_jobs
--------------- -------- ----------------------
lars 1 -0.072443887591362
lars 4 -0.07244402046391545
cd 1 -0.07244545221328735
cd 4 -0.07244553368477852
=============== ======== ======================
[ 24.35%] ···· For parameters: 'lars', 1
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
For parameters: 'cd', 1
/home/ubuntu/scikit-learn/asv_benchmarks/env/90ed7782ee9013f1c8d13fdff8043a99/lib/python3.8/site-packages/sklearn/decomposition/_dict_learning.py:190: RuntimeWarning: Orthogonal matching pursuit ended prematurely due to linear dependence in the dictionary. The requested precision might not have been met.
new_code = orthogonal_mp_gram(
[ 25.22%] ··· Setting up decomposition:16 ok
[ 25.22%] ··· decomposition.PCABenchmark.peakmem_fit ok
[ 25.22%] ··· ============ ======
svd_solver
------------ ------
full 994M
arpack 578M
randomized 609M
============ ======
[ 26.09%] ··· decomposition.PCABenchmark.peakmem_transform ok
[ 26.09%] ··· ============ ======
svd_solver
------------ ------
full 551M
arpack 551M
randomized 551M
============ ======
[ 26.96%] ··· decomposition.PCABenchmark.time_fit ok
[ 26.96%] ··· ============ ==========
svd_solver
------------ ----------
full 1.88±0s
arpack 810±10ms
randomized 736±5ms
============ ==========
[ 27.83%] ··· decomposition.PCABenchmark.time_transform ok
[ 27.83%] ··· ============ =========
svd_solver
------------ ---------
full 167±5ms
arpack 179±6ms
randomized 181±6ms
============ =========