-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathv1.3.html
1782 lines (1548 loc) · 208 KB
/
v1.3.html
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
<!DOCTYPE html>
<html lang="en" data-content_root="../" >
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="Version 1.3" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://scikit-learn/stable/whats_new/v1.3.html" />
<meta property="og:site_name" content="scikit-learn" />
<meta property="og:description" content="For a short description of the main highlights of the release, please refer to Release Highlights for scikit-learn 1.3. Legend for changelogs something big that you couldn’t do before., something t..." />
<meta property="og:image" content="https://scikit-learn.org/stable/_static/scikit-learn-logo-small.png" />
<meta property="og:image:alt" content="scikit-learn" />
<meta name="description" content="For a short description of the main highlights of the release, please refer to Release Highlights for scikit-learn 1.3. Legend for changelogs something big that you couldn’t do before., something t..." />
<title>Version 1.3 — scikit-learn 1.5.2 documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "";
</script>
<!-- Loaded before other Sphinx assets -->
<link href="../_static/styles/theme.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="../_static/styles/bootstrap.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="../_static/styles/pydata-sphinx-theme.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="../_static/vendor/fontawesome/6.5.2/css/all.min.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.woff2" />
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=a746c00c" />
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Vibur" />
<link rel="stylesheet" type="text/css" href="../_static/jupyterlite_sphinx.css?v=ca70e7f1" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery.css?v=d2d258e8" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-binder.css?v=f4aeca0c" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-dataframe.css?v=2082cf3c" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-rendered-html.css?v=1277b6f3" />
<link rel="stylesheet" type="text/css" href="../_static/sphinx-design.min.css?v=95c83b7e" />
<link rel="stylesheet" type="text/css" href="../_static/styles/colors.css?v=cc94ab7d" />
<link rel="stylesheet" type="text/css" href="../_static/styles/custom.css?v=e4cb1417" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=dfe6caa3a7d634c4db9b" />
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=dfe6caa3a7d634c4db9b" />
<script src="../_static/vendor/fontawesome/6.5.2/js/all.min.js?digest=dfe6caa3a7d634c4db9b"></script>
<script src="../_static/documentation_options.js?v=73275c37"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
<script src="../_static/copybutton.js?v=97f0b27d"></script>
<script src="../_static/jupyterlite_sphinx.js?v=d6bdf5f8"></script>
<script src="../_static/design-tabs.js?v=f930bc37"></script>
<script data-domain="scikit-learn.org" defer="defer" src="https://views.scientific-python.org/js/script.js"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'whats_new/v1.3';</script>
<script>
DOCUMENTATION_OPTIONS.theme_version = '0.15.4';
DOCUMENTATION_OPTIONS.theme_switcher_json_url = 'https://scikit-learn.org/dev/_static/versions.json';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = '1.5.2';
DOCUMENTATION_OPTIONS.show_version_warning_banner = true;
</script>
<script src="../_static/scripts/dropdown.js?v=e2048168"></script>
<script src="../_static/scripts/version-switcher.js?v=a6dd8357"></script>
<link rel="canonical" href="https://scikit-learn.org/stable/whats_new/v1.3.html" />
<link rel="icon" href="../_static/favicon.ico"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="Version 1.2" href="v1.2.html" />
<link rel="prev" title="Version 1.4" href="v1.4.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
</head>
<body data-bs-spy="scroll" data-bs-target=".bd-toc-nav" data-offset="180" data-bs-root-margin="0px 0px -60%" data-default-mode="">
<div id="pst-skip-link" class="skip-link d-print-none"><a href="#main-content">Skip to main content</a></div>
<div id="pst-scroll-pixel-helper"></div>
<button type="button" class="btn rounded-pill" id="pst-back-to-top">
<i class="fa-solid fa-arrow-up"></i>Back to top</button>
<input type="checkbox"
class="sidebar-toggle"
id="pst-primary-sidebar-checkbox"/>
<label class="overlay overlay-primary" for="pst-primary-sidebar-checkbox"></label>
<input type="checkbox"
class="sidebar-toggle"
id="pst-secondary-sidebar-checkbox"/>
<label class="overlay overlay-secondary" for="pst-secondary-sidebar-checkbox"></label>
<div class="search-button__wrapper">
<div class="search-button__overlay"></div>
<div class="search-button__search-container">
<form class="bd-search d-flex align-items-center"
action="../search.html"
method="get">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="search"
class="form-control"
name="q"
id="search-input"
placeholder="Search the docs ..."
aria-label="Search the docs ..."
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"/>
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd>K</kbd></span>
</form></div>
</div>
<div class="pst-async-banner-revealer d-none">
<aside id="bd-header-version-warning" class="d-none d-print-none" aria-label="Version warning"></aside>
</div>
<header class="bd-header navbar navbar-expand-lg bd-navbar d-print-none">
<div class="bd-header__inner bd-page-width">
<button class="pst-navbar-icon sidebar-toggle primary-toggle" aria-label="Site navigation">
<span class="fa-solid fa-bars"></span>
</button>
<div class=" navbar-header-items__start">
<div class="navbar-item">
<a class="navbar-brand logo" href="../index.html">
<img src="../_static/scikit-learn-logo-small.png" class="logo__image only-light" alt="scikit-learn homepage"/>
<script>document.write(`<img src="../_static/scikit-learn-logo-small.png" class="logo__image only-dark" alt="scikit-learn homepage"/>`);</script>
</a></div>
</div>
<div class=" navbar-header-items">
<div class="me-auto navbar-header-items__center">
<div class="navbar-item">
<nav>
<ul class="bd-navbar-elements navbar-nav">
<li class="nav-item ">
<a class="nav-link nav-internal" href="../install.html">
Install
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../user_guide.html">
User Guide
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../api/index.html">
API
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../auto_examples/index.html">
Examples
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-external" href="https://blog.scikit-learn.org/">
Community
</a>
</li>
<li class="nav-item dropdown">
<button class="btn dropdown-toggle nav-item" type="button" data-bs-toggle="dropdown" aria-expanded="false" aria-controls="pst-nav-more-links">
More
</button>
<ul id="pst-nav-more-links" class="dropdown-menu">
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../getting_started.html">
Getting Started
</a>
</li>
<li class=" current active">
<a class="nav-link dropdown-item nav-internal" href="../whats_new.html">
Release History
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../glossary.html">
Glossary
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-external" href="https://scikit-learn.org/dev/developers/index.html">
Development
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../faq.html">
FAQ
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../support.html">
Support
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../related_projects.html">
Related Projects
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../roadmap.html">
Roadmap
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../governance.html">
Governance
</a>
</li>
<li class=" ">
<a class="nav-link dropdown-item nav-internal" href="../about.html">
About us
</a>
</li>
</ul>
</li>
</ul>
</nav></div>
</div>
<div class="navbar-header-items__end">
<div class="navbar-item navbar-persistent--container">
<script>
document.write(`
<button class="btn btn-sm pst-navbar-icon search-button search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass fa-lg"></i>
</button>
`);
</script>
</div>
<div class="navbar-item">
<script>
document.write(`
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto"></i>
</button>
`);
</script></div>
<div class="navbar-item"><ul class="navbar-icon-links"
aria-label="Icon Links">
<li class="nav-item">
<a href="https://github.com/scikit-learn/scikit-learn" title="GitHub" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-square-github fa-lg" aria-hidden="true"></i>
<span class="sr-only">GitHub</span></a>
</li>
</ul></div>
<div class="navbar-item">
<script>
document.write(`
<div class="version-switcher__container dropdown">
<button id="pst-version-switcher-button-2"
type="button"
class="version-switcher__button btn btn-sm dropdown-toggle"
data-bs-toggle="dropdown"
aria-haspopup="listbox"
aria-controls="pst-version-switcher-list-2"
aria-label="Version switcher list"
>
Choose version <!-- this text may get changed later by javascript -->
<span class="caret"></span>
</button>
<div id="pst-version-switcher-list-2"
class="version-switcher__menu dropdown-menu list-group-flush py-0"
role="listbox" aria-labelledby="pst-version-switcher-button-2">
<!-- dropdown will be populated by javascript on page load -->
</div>
</div>
`);
</script></div>
</div>
</div>
<div class="navbar-persistent--mobile">
<script>
document.write(`
<button class="btn btn-sm pst-navbar-icon search-button search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass fa-lg"></i>
</button>
`);
</script>
</div>
<button class="pst-navbar-icon sidebar-toggle secondary-toggle" aria-label="On this page">
<span class="fa-solid fa-outdent"></span>
</button>
</div>
</header>
<div class="bd-container">
<div class="bd-container__inner bd-page-width">
<div class="bd-sidebar-primary bd-sidebar">
<div class="sidebar-header-items sidebar-primary__section">
<div class="sidebar-header-items__center">
<div class="navbar-item">
<nav>
<ul class="bd-navbar-elements navbar-nav">
<li class="nav-item ">
<a class="nav-link nav-internal" href="../install.html">
Install
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../user_guide.html">
User Guide
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../api/index.html">
API
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../auto_examples/index.html">
Examples
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-external" href="https://blog.scikit-learn.org/">
Community
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../getting_started.html">
Getting Started
</a>
</li>
<li class="nav-item current active">
<a class="nav-link nav-internal" href="../whats_new.html">
Release History
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../glossary.html">
Glossary
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-external" href="https://scikit-learn.org/dev/developers/index.html">
Development
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../faq.html">
FAQ
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../support.html">
Support
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../related_projects.html">
Related Projects
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../roadmap.html">
Roadmap
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../governance.html">
Governance
</a>
</li>
<li class="nav-item ">
<a class="nav-link nav-internal" href="../about.html">
About us
</a>
</li>
</ul>
</nav></div>
</div>
<div class="sidebar-header-items__end">
<div class="navbar-item">
<script>
document.write(`
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto"></i>
</button>
`);
</script></div>
<div class="navbar-item"><ul class="navbar-icon-links"
aria-label="Icon Links">
<li class="nav-item">
<a href="https://github.com/scikit-learn/scikit-learn" title="GitHub" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-square-github fa-lg" aria-hidden="true"></i>
<span class="sr-only">GitHub</span></a>
</li>
</ul></div>
<div class="navbar-item">
<script>
document.write(`
<div class="version-switcher__container dropdown">
<button id="pst-version-switcher-button-3"
type="button"
class="version-switcher__button btn btn-sm dropdown-toggle"
data-bs-toggle="dropdown"
aria-haspopup="listbox"
aria-controls="pst-version-switcher-list-3"
aria-label="Version switcher list"
>
Choose version <!-- this text may get changed later by javascript -->
<span class="caret"></span>
</button>
<div id="pst-version-switcher-list-3"
class="version-switcher__menu dropdown-menu list-group-flush py-0"
role="listbox" aria-labelledby="pst-version-switcher-button-3">
<!-- dropdown will be populated by javascript on page load -->
</div>
</div>
`);
</script></div>
</div>
</div>
<div class="sidebar-primary-items__start sidebar-primary__section">
<div class="sidebar-primary-item">
<nav class="bd-docs-nav bd-links"
aria-label="Section Navigation">
<p class="bd-links__title" role="heading" aria-level="1">Section Navigation</p>
<div class="bd-toc-item navbar-nav"><ul class="current nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="v1.5.html">Version 1.5</a></li>
<li class="toctree-l1"><a class="reference internal" href="v1.4.html">Version 1.4</a></li>
<li class="toctree-l1 current active"><a class="current reference internal" href="#">Version 1.3</a></li>
<li class="toctree-l1"><a class="reference internal" href="v1.2.html">Version 1.2</a></li>
<li class="toctree-l1"><a class="reference internal" href="v1.1.html">Version 1.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="v1.0.html">Version 1.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.24.html">Version 0.24</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.23.html">Version 0.23</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.22.html">Version 0.22</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.21.html">Version 0.21</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.20.html">Version 0.20</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.19.html">Version 0.19</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.18.html">Version 0.18</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.17.html">Version 0.17</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.16.html">Version 0.16</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.15.html">Version 0.15</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.14.html">Version 0.14</a></li>
<li class="toctree-l1"><a class="reference internal" href="v0.13.html">Version 0.13</a></li>
<li class="toctree-l1"><a class="reference internal" href="older_versions.html">Older Versions</a></li>
</ul>
</div>
</nav></div>
</div>
<div class="sidebar-primary-items__end sidebar-primary__section">
</div>
<div id="rtd-footer-container"></div>
</div>
<main id="main-content" class="bd-main" role="main">
<div class="bd-content">
<div class="bd-article-container">
<div class="bd-header-article d-print-none">
<div class="header-article-items header-article__inner">
<div class="header-article-items__start">
<div class="header-article-item">
<nav aria-label="Breadcrumb" class="d-print-none">
<ul class="bd-breadcrumbs">
<li class="breadcrumb-item breadcrumb-home">
<a href="../index.html" class="nav-link" aria-label="Home">
<i class="fa-solid fa-home"></i>
</a>
</li>
<li class="breadcrumb-item"><a href="../whats_new.html" class="nav-link">Release History</a></li>
<li class="breadcrumb-item active" aria-current="page">Version 1.3</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article">
<section id="version-1-3">
<span id="release-notes-1-3"></span><h1>Version 1.3<a class="headerlink" href="#version-1-3" title="Link to this heading">#</a></h1>
<p>For a short description of the main highlights of the release, please refer to
<a class="reference internal" href="../auto_examples/release_highlights/plot_release_highlights_1_3_0.html#sphx-glr-auto-examples-release-highlights-plot-release-highlights-1-3-0-py"><span class="std std-ref">Release Highlights for scikit-learn 1.3</span></a>.</p>
<p class="rubric">Legend for changelogs</p>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-success">Major Feature</span></span> something big that you couldn’t do before.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-success">Feature</span></span> something that you couldn’t do before.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-info">Efficiency</span></span> an existing feature now may not require as much computation or
memory.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> a miscellaneous minor improvement.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> something that previously didn’t work as documented – or according
to reasonable expectations – should now work.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-warning">API Change</span></span> you will need to change your code to have the same effect in the
future; or a feature will be removed in the future.</p></li>
</ul>
<section id="version-1-3-2">
<span id="changes-1-3-2"></span><h2>Version 1.3.2<a class="headerlink" href="#version-1-3-2" title="Link to this heading">#</a></h2>
<p><strong>October 2023</strong></p>
<section id="changelog">
<h3>Changelog<a class="headerlink" href="#changelog" title="Link to this heading">#</a></h3>
<section id="sklearn-datasets">
<h4><a class="reference internal" href="../api/sklearn.datasets.html#module-sklearn.datasets" title="sklearn.datasets"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.datasets</span></code></a><a class="headerlink" href="#sklearn-datasets" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> All dataset fetchers now accept <code class="docutils literal notranslate"><span class="pre">data_home</span></code> as any object that implements
the <a class="reference external" href="https://docs.python.org/3/library/os.html#os.PathLike" title="(in Python v3.13)"><code class="xref py py-class docutils literal notranslate"><span class="pre">os.PathLike</span></code></a> interface, for instance, <a class="reference external" href="https://docs.python.org/3/library/pathlib.html#pathlib.Path" title="(in Python v3.13)"><code class="xref py py-class docutils literal notranslate"><span class="pre">pathlib.Path</span></code></a>.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27468">#27468</a> by <a class="reference external" href="https://github.com/Charlie-XIAO">Yao Xiao</a>.</p></li>
</ul>
</section>
<section id="sklearn-decomposition">
<h4><a class="reference internal" href="../api/sklearn.decomposition.html#module-sklearn.decomposition" title="sklearn.decomposition"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.decomposition</span></code></a><a class="headerlink" href="#sklearn-decomposition" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Fixes a bug in <a class="reference internal" href="../modules/generated/sklearn.decomposition.KernelPCA.html#sklearn.decomposition.KernelPCA" title="sklearn.decomposition.KernelPCA"><code class="xref py py-class docutils literal notranslate"><span class="pre">decomposition.KernelPCA</span></code></a> by forcing the output of
the internal <a class="reference internal" href="../modules/generated/sklearn.preprocessing.KernelCenterer.html#sklearn.preprocessing.KernelCenterer" title="sklearn.preprocessing.KernelCenterer"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.KernelCenterer</span></code></a> to be a default array. When the
arpack solver is used, it expects an array with a <code class="docutils literal notranslate"><span class="pre">dtype</span></code> attribute.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27583">#27583</a> by <a class="reference external" href="https://github.com/glemaitre">Guillaume Lemaitre</a>.</p></li>
</ul>
</section>
<section id="sklearn-metrics">
<h4><a class="reference internal" href="../api/sklearn.metrics.html#module-sklearn.metrics" title="sklearn.metrics"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.metrics</span></code></a><a class="headerlink" href="#sklearn-metrics" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Fixes a bug for metrics using <code class="docutils literal notranslate"><span class="pre">zero_division=np.nan</span></code>
(e.g. <a class="reference internal" href="../modules/generated/sklearn.metrics.precision_score.html#sklearn.metrics.precision_score" title="sklearn.metrics.precision_score"><code class="xref py py-func docutils literal notranslate"><span class="pre">precision_score</span></code></a>) within a paralell loop
(e.g. <a class="reference internal" href="../modules/generated/sklearn.model_selection.cross_val_score.html#sklearn.model_selection.cross_val_score" title="sklearn.model_selection.cross_val_score"><code class="xref py py-func docutils literal notranslate"><span class="pre">cross_val_score</span></code></a>) where the singleton for <code class="docutils literal notranslate"><span class="pre">np.nan</span></code>
will be different in the sub-processes.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27573">#27573</a> by <a class="reference external" href="https://github.com/glemaitre">Guillaume Lemaitre</a>.</p></li>
</ul>
</section>
<section id="sklearn-tree">
<h4><a class="reference internal" href="../api/sklearn.tree.html#module-sklearn.tree" title="sklearn.tree"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.tree</span></code></a><a class="headerlink" href="#sklearn-tree" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Do not leak data via non-initialized memory in decision tree pickle files and make
the generation of those files deterministic. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27580">#27580</a> by <a class="reference external" href="https://github.com/lesteve">Loïc Estève</a>.</p></li>
</ul>
</section>
</section>
</section>
<section id="version-1-3-1">
<span id="changes-1-3-1"></span><h2>Version 1.3.1<a class="headerlink" href="#version-1-3-1" title="Link to this heading">#</a></h2>
<p><strong>September 2023</strong></p>
<section id="changed-models">
<h3>Changed models<a class="headerlink" href="#changed-models" title="Link to this heading">#</a></h3>
<p>The following estimators and functions, when fit with the same data and
parameters, may produce different models from the previous version. This often
occurs due to changes in the modelling logic (bug fixes or enhancements), or in
random sampling procedures.</p>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Ridge models with <code class="docutils literal notranslate"><span class="pre">solver='sparse_cg'</span></code> may have slightly different
results with scipy>=1.12, because of an underlying change in the scipy solver
(see <a class="reference external" href="https://github.com/scipy/scipy/pull/18488">scipy#18488</a> for more
details)
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26814">#26814</a> by <a class="reference external" href="https://github.com/lesteve">Loïc Estève</a></p></li>
</ul>
</section>
<section id="changes-impacting-all-modules">
<h3>Changes impacting all modules<a class="headerlink" href="#changes-impacting-all-modules" title="Link to this heading">#</a></h3>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> The <code class="docutils literal notranslate"><span class="pre">set_output</span></code> API correctly works with list input. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27044">#27044</a> by
<a class="reference external" href="https://github.com/thomasjpfan">Thomas Fan</a>.</p></li>
</ul>
</section>
<section id="id1">
<h3>Changelog<a class="headerlink" href="#id1" title="Link to this heading">#</a></h3>
<section id="sklearn-calibration">
<h4><a class="reference internal" href="../api/sklearn.calibration.html#module-sklearn.calibration" title="sklearn.calibration"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.calibration</span></code></a><a class="headerlink" href="#sklearn-calibration" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.calibration.CalibratedClassifierCV.html#sklearn.calibration.CalibratedClassifierCV" title="sklearn.calibration.CalibratedClassifierCV"><code class="xref py py-class docutils literal notranslate"><span class="pre">calibration.CalibratedClassifierCV</span></code></a> can now handle models that
produce large prediction scores. Before it was numerically unstable.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26913">#26913</a> by <a class="reference external" href="https://github.com/OmarManzoor">Omar Salman</a>.</p></li>
</ul>
</section>
<section id="sklearn-cluster">
<h4><a class="reference internal" href="../api/sklearn.cluster.html#module-sklearn.cluster" title="sklearn.cluster"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.cluster</span></code></a><a class="headerlink" href="#sklearn-cluster" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.cluster.BisectingKMeans.html#sklearn.cluster.BisectingKMeans" title="sklearn.cluster.BisectingKMeans"><code class="xref py py-class docutils literal notranslate"><span class="pre">cluster.BisectingKMeans</span></code></a> could crash when predicting on data
with a different scale than the data used to fit the model.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27167">#27167</a> by <a class="reference external" href="https://twitter.com/ogrisel">Olivier Grisel</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.cluster.BisectingKMeans.html#sklearn.cluster.BisectingKMeans" title="sklearn.cluster.BisectingKMeans"><code class="xref py py-class docutils literal notranslate"><span class="pre">cluster.BisectingKMeans</span></code></a> now works with data that has a single feature.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27243">#27243</a> by <a class="reference external" href="https://github.com/jeremiedbb">Jérémie du Boisberranger</a>.</p></li>
</ul>
</section>
<section id="sklearn-cross-decomposition">
<h4><a class="reference internal" href="../api/sklearn.cross_decomposition.html#module-sklearn.cross_decomposition" title="sklearn.cross_decomposition"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.cross_decomposition</span></code></a><a class="headerlink" href="#sklearn-cross-decomposition" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.cross_decomposition.PLSRegression.html#sklearn.cross_decomposition.PLSRegression" title="sklearn.cross_decomposition.PLSRegression"><code class="xref py py-class docutils literal notranslate"><span class="pre">cross_decomposition.PLSRegression</span></code></a> now automatically ravels the output
of <code class="docutils literal notranslate"><span class="pre">predict</span></code> if fitted with one dimensional <code class="docutils literal notranslate"><span class="pre">y</span></code>.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26602">#26602</a> by <a class="reference external" href="https://github.com/Charlie-XIAO">Yao Xiao</a>.</p></li>
</ul>
</section>
<section id="sklearn-ensemble">
<h4><a class="reference internal" href="../api/sklearn.ensemble.html#module-sklearn.ensemble" title="sklearn.ensemble"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.ensemble</span></code></a><a class="headerlink" href="#sklearn-ensemble" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Fix a bug in <a class="reference internal" href="../modules/generated/sklearn.ensemble.AdaBoostClassifier.html#sklearn.ensemble.AdaBoostClassifier" title="sklearn.ensemble.AdaBoostClassifier"><code class="xref py py-class docutils literal notranslate"><span class="pre">ensemble.AdaBoostClassifier</span></code></a> with <code class="docutils literal notranslate"><span class="pre">algorithm="SAMME"</span></code>
where the decision function of each weak learner should be symmetric (i.e.
the sum of the scores should sum to zero for a sample).
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26521">#26521</a> by <a class="reference external" href="https://github.com/glemaitre">Guillaume Lemaitre</a>.</p></li>
</ul>
</section>
<section id="sklearn-feature-selection">
<h4><a class="reference internal" href="../api/sklearn.feature_selection.html#module-sklearn.feature_selection" title="sklearn.feature_selection"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.feature_selection</span></code></a><a class="headerlink" href="#sklearn-feature-selection" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.feature_selection.mutual_info_regression.html#sklearn.feature_selection.mutual_info_regression" title="sklearn.feature_selection.mutual_info_regression"><code class="xref py py-func docutils literal notranslate"><span class="pre">feature_selection.mutual_info_regression</span></code></a> now correctly computes the
result when <code class="docutils literal notranslate"><span class="pre">X</span></code> is of integer dtype. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26748">#26748</a> by <a class="reference external" href="https://github.com/Charlie-XIAO">Yao Xiao</a>.</p></li>
</ul>
</section>
<section id="sklearn-impute">
<h4><a class="reference internal" href="../api/sklearn.impute.html#module-sklearn.impute" title="sklearn.impute"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.impute</span></code></a><a class="headerlink" href="#sklearn-impute" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.impute.KNNImputer.html#sklearn.impute.KNNImputer" title="sklearn.impute.KNNImputer"><code class="xref py py-class docutils literal notranslate"><span class="pre">impute.KNNImputer</span></code></a> now correctly adds a missing indicator column in
<code class="docutils literal notranslate"><span class="pre">transform</span></code> when <code class="docutils literal notranslate"><span class="pre">add_indicator</span></code> is set to <code class="docutils literal notranslate"><span class="pre">True</span></code> and missing values are observed
during <code class="docutils literal notranslate"><span class="pre">fit</span></code>. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26600">#26600</a> by <a class="reference external" href="https://github.com/Shreesha3112">Shreesha Kumar Bhat</a>.</p></li>
</ul>
</section>
<section id="id2">
<h4><a class="reference internal" href="../api/sklearn.metrics.html#module-sklearn.metrics" title="sklearn.metrics"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.metrics</span></code></a><a class="headerlink" href="#id2" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Scorers used with <a class="reference internal" href="../modules/generated/sklearn.metrics.get_scorer.html#sklearn.metrics.get_scorer" title="sklearn.metrics.get_scorer"><code class="xref py py-func docutils literal notranslate"><span class="pre">metrics.get_scorer</span></code></a> handle properly
multilabel-indicator matrix.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27002">#27002</a> by <a class="reference external" href="https://github.com/glemaitre">Guillaume Lemaitre</a>.</p></li>
</ul>
</section>
<section id="sklearn-mixture">
<h4><a class="reference internal" href="../api/sklearn.mixture.html#module-sklearn.mixture" title="sklearn.mixture"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.mixture</span></code></a><a class="headerlink" href="#sklearn-mixture" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> The initialization of <a class="reference internal" href="../modules/generated/sklearn.mixture.GaussianMixture.html#sklearn.mixture.GaussianMixture" title="sklearn.mixture.GaussianMixture"><code class="xref py py-class docutils literal notranslate"><span class="pre">mixture.GaussianMixture</span></code></a> from user-provided
<code class="docutils literal notranslate"><span class="pre">precisions_init</span></code> for <code class="docutils literal notranslate"><span class="pre">covariance_type</span></code> of <code class="docutils literal notranslate"><span class="pre">full</span></code> or <code class="docutils literal notranslate"><span class="pre">tied</span></code> was not correct,
and has been fixed.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26416">#26416</a> by <a class="reference external" href="https://github.com/mchikyt3">Yang Tao</a>.</p></li>
</ul>
</section>
<section id="sklearn-neighbors">
<h4><a class="reference internal" href="../api/sklearn.neighbors.html#module-sklearn.neighbors" title="sklearn.neighbors"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.neighbors</span></code></a><a class="headerlink" href="#sklearn-neighbors" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.neighbors.KNeighborsClassifier.html#sklearn.neighbors.KNeighborsClassifier.predict" title="sklearn.neighbors.KNeighborsClassifier.predict"><code class="xref py py-meth docutils literal notranslate"><span class="pre">neighbors.KNeighborsClassifier.predict</span></code></a> no longer raises an
exception for <code class="docutils literal notranslate"><span class="pre">pandas.DataFrames</span></code> input.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26772">#26772</a> by <a class="reference external" href="https://github.com/jeremiedbb">Jérémie du Boisberranger</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Reintroduce <code class="docutils literal notranslate"><span class="pre">sklearn.neighbors.BallTree.valid_metrics</span></code> and
<code class="docutils literal notranslate"><span class="pre">sklearn.neighbors.KDTree.valid_metrics</span></code> as public class attributes.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26754">#26754</a> by <a class="reference external" href="https://github.com/jjerphan">Julien Jerphanion</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.model_selection.HalvingRandomSearchCV.html#sklearn.model_selection.HalvingRandomSearchCV" title="sklearn.model_selection.HalvingRandomSearchCV"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.model_selection.HalvingRandomSearchCV</span></code></a> no longer raises
when the input to the <code class="docutils literal notranslate"><span class="pre">param_distributions</span></code> parameter is a list of dicts.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26893">#26893</a> by <a class="reference external" href="https://github.com/StefanieSenger">Stefanie Senger</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Neighbors based estimators now correctly work when <code class="docutils literal notranslate"><span class="pre">metric="minkowski"</span></code> and the
metric parameter <code class="docutils literal notranslate"><span class="pre">p</span></code> is in the range <code class="docutils literal notranslate"><span class="pre">0</span> <span class="pre"><</span> <span class="pre">p</span> <span class="pre"><</span> <span class="pre">1</span></code>, regardless of the <code class="docutils literal notranslate"><span class="pre">dtype</span></code> of <code class="docutils literal notranslate"><span class="pre">X</span></code>.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26760">#26760</a> by <a class="reference external" href="https://github.com/Shreesha3112">Shreesha Kumar Bhat</a>.</p></li>
</ul>
</section>
<section id="sklearn-preprocessing">
<h4><a class="reference internal" href="../api/sklearn.preprocessing.html#module-sklearn.preprocessing" title="sklearn.preprocessing"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.preprocessing</span></code></a><a class="headerlink" href="#sklearn-preprocessing" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.preprocessing.LabelEncoder.html#sklearn.preprocessing.LabelEncoder" title="sklearn.preprocessing.LabelEncoder"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.LabelEncoder</span></code></a> correctly accepts <code class="docutils literal notranslate"><span class="pre">y</span></code> as a keyword
argument. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26940">#26940</a> by <a class="reference external" href="https://github.com/thomasjpfan">Thomas Fan</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.preprocessing.OneHotEncoder.html#sklearn.preprocessing.OneHotEncoder" title="sklearn.preprocessing.OneHotEncoder"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.OneHotEncoder</span></code></a> shows a more informative error message
when <code class="docutils literal notranslate"><span class="pre">sparse_output=True</span></code> and the output is configured to be pandas.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26931">#26931</a> by <a class="reference external" href="https://github.com/thomasjpfan">Thomas Fan</a>.</p></li>
</ul>
</section>
<section id="id3">
<h4><a class="reference internal" href="../api/sklearn.tree.html#module-sklearn.tree" title="sklearn.tree"><code class="xref py py-mod docutils literal notranslate"><span class="pre">sklearn.tree</span></code></a><a class="headerlink" href="#id3" title="Link to this heading">#</a></h4>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.tree.plot_tree.html#sklearn.tree.plot_tree" title="sklearn.tree.plot_tree"><code class="xref py py-func docutils literal notranslate"><span class="pre">tree.plot_tree</span></code></a> now accepts <code class="docutils literal notranslate"><span class="pre">class_names=True</span></code> as documented.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26903">#26903</a> by <a class="reference external" href="https://github.com/2maz">Thomas Roehr</a></p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> The <code class="docutils literal notranslate"><span class="pre">feature_names</span></code> parameter of <a class="reference internal" href="../modules/generated/sklearn.tree.plot_tree.html#sklearn.tree.plot_tree" title="sklearn.tree.plot_tree"><code class="xref py py-func docutils literal notranslate"><span class="pre">tree.plot_tree</span></code></a> now accepts any kind of
array-like instead of just a list. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27292">#27292</a> by <a class="reference external" href="https://github.com/rprkh">Rahil Parikh</a>.</p></li>
</ul>
</section>
</section>
</section>
<section id="version-1-3-0">
<span id="changes-1-3"></span><h2>Version 1.3.0<a class="headerlink" href="#version-1-3-0" title="Link to this heading">#</a></h2>
<p><strong>June 2023</strong></p>
<section id="id4">
<h3>Changed models<a class="headerlink" href="#id4" title="Link to this heading">#</a></h3>
<p>The following estimators and functions, when fit with the same data and
parameters, may produce different models from the previous version. This often
occurs due to changes in the modelling logic (bug fixes or enhancements), or in
random sampling procedures.</p>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> <a class="reference internal" href="../modules/generated/sklearn.multiclass.OutputCodeClassifier.html#sklearn.multiclass.OutputCodeClassifier.predict" title="sklearn.multiclass.OutputCodeClassifier.predict"><code class="xref py py-meth docutils literal notranslate"><span class="pre">multiclass.OutputCodeClassifier.predict</span></code></a> now uses a more
efficient pairwise distance reduction. As a consequence, the tie-breaking
strategy is different and thus the predicted labels may be different.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25196">#25196</a> by <a class="reference external" href="https://github.com/glemaitre">Guillaume Lemaitre</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> The <code class="docutils literal notranslate"><span class="pre">fit_transform</span></code> method of <a class="reference internal" href="../modules/generated/sklearn.decomposition.DictionaryLearning.html#sklearn.decomposition.DictionaryLearning" title="sklearn.decomposition.DictionaryLearning"><code class="xref py py-class docutils literal notranslate"><span class="pre">decomposition.DictionaryLearning</span></code></a>
is more efficient but may produce different results as in previous versions when
<code class="docutils literal notranslate"><span class="pre">transform_algorithm</span></code> is not the same as <code class="docutils literal notranslate"><span class="pre">fit_algorithm</span></code> and the number of iterations
is small. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/24871">#24871</a> by <a class="reference external" href="https://github.com/OmarManzoor">Omar Salman</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> The <code class="docutils literal notranslate"><span class="pre">sample_weight</span></code> parameter now will be used in centroids
initialization for <a class="reference internal" href="../modules/generated/sklearn.cluster.KMeans.html#sklearn.cluster.KMeans" title="sklearn.cluster.KMeans"><code class="xref py py-class docutils literal notranslate"><span class="pre">cluster.KMeans</span></code></a>, <a class="reference internal" href="../modules/generated/sklearn.cluster.BisectingKMeans.html#sklearn.cluster.BisectingKMeans" title="sklearn.cluster.BisectingKMeans"><code class="xref py py-class docutils literal notranslate"><span class="pre">cluster.BisectingKMeans</span></code></a>
and <a class="reference internal" href="../modules/generated/sklearn.cluster.MiniBatchKMeans.html#sklearn.cluster.MiniBatchKMeans" title="sklearn.cluster.MiniBatchKMeans"><code class="xref py py-class docutils literal notranslate"><span class="pre">cluster.MiniBatchKMeans</span></code></a>.
This change will break backward compatibility, since numbers generated
from same random seeds will be different.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25752">#25752</a> by <a class="reference external" href="https://github.com/glevv">Gleb Levitski</a>,
<a class="reference external" href="https://github.com/jeremiedbb">Jérémie du Boisberranger</a>,
<a class="reference external" href="https://github.com/glemaitre">Guillaume Lemaitre</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> Treat more consistently small values in the <code class="docutils literal notranslate"><span class="pre">W</span></code> and <code class="docutils literal notranslate"><span class="pre">H</span></code> matrices during the
<code class="docutils literal notranslate"><span class="pre">fit</span></code> and <code class="docutils literal notranslate"><span class="pre">transform</span></code> steps of <a class="reference internal" href="../modules/generated/sklearn.decomposition.NMF.html#sklearn.decomposition.NMF" title="sklearn.decomposition.NMF"><code class="xref py py-class docutils literal notranslate"><span class="pre">decomposition.NMF</span></code></a> and
<a class="reference internal" href="../modules/generated/sklearn.decomposition.MiniBatchNMF.html#sklearn.decomposition.MiniBatchNMF" title="sklearn.decomposition.MiniBatchNMF"><code class="xref py py-class docutils literal notranslate"><span class="pre">decomposition.MiniBatchNMF</span></code></a> which can produce different results than previous
versions. <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25438">#25438</a> by <a class="reference external" href="https://github.com/yotamcons">Yotam Avidar-Constantini</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.decomposition.KernelPCA.html#sklearn.decomposition.KernelPCA" title="sklearn.decomposition.KernelPCA"><code class="xref py py-class docutils literal notranslate"><span class="pre">decomposition.KernelPCA</span></code></a> may produce different results through
<code class="docutils literal notranslate"><span class="pre">inverse_transform</span></code> if <code class="docutils literal notranslate"><span class="pre">gamma</span></code> is <code class="docutils literal notranslate"><span class="pre">None</span></code>. Now it will be chosen correctly as
<code class="docutils literal notranslate"><span class="pre">1/n_features</span></code> of the data that it is fitted on, while previously it might be
incorrectly chosen as <code class="docutils literal notranslate"><span class="pre">1/n_features</span></code> of the data passed to <code class="docutils literal notranslate"><span class="pre">inverse_transform</span></code>.
A new attribute <code class="docutils literal notranslate"><span class="pre">gamma_</span></code> is provided for revealing the actual value of <code class="docutils literal notranslate"><span class="pre">gamma</span></code>
used each time the kernel is called.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26337">#26337</a> by <a class="reference external" href="https://github.com/Charlie-XIAO">Yao Xiao</a>.</p></li>
</ul>
</section>
<section id="changed-displays">
<h3>Changed displays<a class="headerlink" href="#changed-displays" title="Link to this heading">#</a></h3>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> <a class="reference internal" href="../modules/generated/sklearn.model_selection.LearningCurveDisplay.html#sklearn.model_selection.LearningCurveDisplay" title="sklearn.model_selection.LearningCurveDisplay"><code class="xref py py-class docutils literal notranslate"><span class="pre">model_selection.LearningCurveDisplay</span></code></a> displays both the
train and test curves by default. You can set <code class="docutils literal notranslate"><span class="pre">score_type="test"</span></code> to keep the
past behaviour.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25120">#25120</a> by <a class="reference external" href="https://github.com/glemaitre">Guillaume Lemaitre</a>.</p></li>
<li><p><span class="raw-html"><span class="badge text-bg-danger">Fix</span></span> <a class="reference internal" href="../modules/generated/sklearn.model_selection.ValidationCurveDisplay.html#sklearn.model_selection.ValidationCurveDisplay" title="sklearn.model_selection.ValidationCurveDisplay"><code class="xref py py-class docutils literal notranslate"><span class="pre">model_selection.ValidationCurveDisplay</span></code></a> now accepts passing a
list to the <code class="docutils literal notranslate"><span class="pre">param_range</span></code> parameter.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/27311">#27311</a> by <a class="reference external" href="https://github.com/ArturoAmorQ">Arturo Amor</a>.</p></li>
</ul>
</section>
<section id="id5">
<h3>Changes impacting all modules<a class="headerlink" href="#id5" title="Link to this heading">#</a></h3>
<ul>
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> The <code class="docutils literal notranslate"><span class="pre">get_feature_names_out</span></code> method of the following classes now
raises a <code class="docutils literal notranslate"><span class="pre">NotFittedError</span></code> if the instance is not fitted. This ensures the error is
consistent in all estimators with the <code class="docutils literal notranslate"><span class="pre">get_feature_names_out</span></code> method.</p>
<ul class="simple">
<li><p><a class="reference internal" href="../modules/generated/sklearn.impute.MissingIndicator.html#sklearn.impute.MissingIndicator" title="sklearn.impute.MissingIndicator"><code class="xref py py-class docutils literal notranslate"><span class="pre">impute.MissingIndicator</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_extraction.DictVectorizer.html#sklearn.feature_extraction.DictVectorizer" title="sklearn.feature_extraction.DictVectorizer"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_extraction.DictVectorizer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_extraction.text.TfidfTransformer.html#sklearn.feature_extraction.text.TfidfTransformer" title="sklearn.feature_extraction.text.TfidfTransformer"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_extraction.text.TfidfTransformer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.GenericUnivariateSelect.html#sklearn.feature_selection.GenericUnivariateSelect" title="sklearn.feature_selection.GenericUnivariateSelect"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.GenericUnivariateSelect</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.RFE.html#sklearn.feature_selection.RFE" title="sklearn.feature_selection.RFE"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.RFE</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.RFECV.html#sklearn.feature_selection.RFECV" title="sklearn.feature_selection.RFECV"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.RFECV</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.SelectFdr.html#sklearn.feature_selection.SelectFdr" title="sklearn.feature_selection.SelectFdr"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.SelectFdr</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.SelectFpr.html#sklearn.feature_selection.SelectFpr" title="sklearn.feature_selection.SelectFpr"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.SelectFpr</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.SelectFromModel.html#sklearn.feature_selection.SelectFromModel" title="sklearn.feature_selection.SelectFromModel"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.SelectFromModel</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.SelectFwe.html#sklearn.feature_selection.SelectFwe" title="sklearn.feature_selection.SelectFwe"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.SelectFwe</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.SelectKBest.html#sklearn.feature_selection.SelectKBest" title="sklearn.feature_selection.SelectKBest"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.SelectKBest</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.SelectPercentile.html#sklearn.feature_selection.SelectPercentile" title="sklearn.feature_selection.SelectPercentile"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.SelectPercentile</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.SequentialFeatureSelector.html#sklearn.feature_selection.SequentialFeatureSelector" title="sklearn.feature_selection.SequentialFeatureSelector"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.SequentialFeatureSelector</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.VarianceThreshold.html#sklearn.feature_selection.VarianceThreshold" title="sklearn.feature_selection.VarianceThreshold"><code class="xref py py-class docutils literal notranslate"><span class="pre">feature_selection.VarianceThreshold</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.kernel_approximation.AdditiveChi2Sampler.html#sklearn.kernel_approximation.AdditiveChi2Sampler" title="sklearn.kernel_approximation.AdditiveChi2Sampler"><code class="xref py py-class docutils literal notranslate"><span class="pre">kernel_approximation.AdditiveChi2Sampler</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.impute.IterativeImputer.html#sklearn.impute.IterativeImputer" title="sklearn.impute.IterativeImputer"><code class="xref py py-class docutils literal notranslate"><span class="pre">impute.IterativeImputer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.impute.KNNImputer.html#sklearn.impute.KNNImputer" title="sklearn.impute.KNNImputer"><code class="xref py py-class docutils literal notranslate"><span class="pre">impute.KNNImputer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.impute.SimpleImputer.html#sklearn.impute.SimpleImputer" title="sklearn.impute.SimpleImputer"><code class="xref py py-class docutils literal notranslate"><span class="pre">impute.SimpleImputer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.isotonic.IsotonicRegression.html#sklearn.isotonic.IsotonicRegression" title="sklearn.isotonic.IsotonicRegression"><code class="xref py py-class docutils literal notranslate"><span class="pre">isotonic.IsotonicRegression</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.Binarizer.html#sklearn.preprocessing.Binarizer" title="sklearn.preprocessing.Binarizer"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.Binarizer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.KBinsDiscretizer.html#sklearn.preprocessing.KBinsDiscretizer" title="sklearn.preprocessing.KBinsDiscretizer"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.KBinsDiscretizer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.MaxAbsScaler.html#sklearn.preprocessing.MaxAbsScaler" title="sklearn.preprocessing.MaxAbsScaler"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.MaxAbsScaler</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.MinMaxScaler.html#sklearn.preprocessing.MinMaxScaler" title="sklearn.preprocessing.MinMaxScaler"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.MinMaxScaler</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.Normalizer.html#sklearn.preprocessing.Normalizer" title="sklearn.preprocessing.Normalizer"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.Normalizer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.OrdinalEncoder.html#sklearn.preprocessing.OrdinalEncoder" title="sklearn.preprocessing.OrdinalEncoder"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.OrdinalEncoder</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.PowerTransformer.html#sklearn.preprocessing.PowerTransformer" title="sklearn.preprocessing.PowerTransformer"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.PowerTransformer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.QuantileTransformer.html#sklearn.preprocessing.QuantileTransformer" title="sklearn.preprocessing.QuantileTransformer"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.QuantileTransformer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.RobustScaler.html#sklearn.preprocessing.RobustScaler" title="sklearn.preprocessing.RobustScaler"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.RobustScaler</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.SplineTransformer.html#sklearn.preprocessing.SplineTransformer" title="sklearn.preprocessing.SplineTransformer"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.SplineTransformer</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.preprocessing.StandardScaler.html#sklearn.preprocessing.StandardScaler" title="sklearn.preprocessing.StandardScaler"><code class="xref py py-class docutils literal notranslate"><span class="pre">preprocessing.StandardScaler</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.random_projection.GaussianRandomProjection.html#sklearn.random_projection.GaussianRandomProjection" title="sklearn.random_projection.GaussianRandomProjection"><code class="xref py py-class docutils literal notranslate"><span class="pre">random_projection.GaussianRandomProjection</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.random_projection.SparseRandomProjection.html#sklearn.random_projection.SparseRandomProjection" title="sklearn.random_projection.SparseRandomProjection"><code class="xref py py-class docutils literal notranslate"><span class="pre">random_projection.SparseRandomProjection</span></code></a></p></li>
</ul>
<p>The <code class="docutils literal notranslate"><span class="pre">NotFittedError</span></code> displays an informative message asking to fit the instance
with the appropriate arguments.</p>
<p><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25294">#25294</a>, <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25308">#25308</a>, <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25291">#25291</a>, <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25367">#25367</a>, <a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25402">#25402</a>,
by <a class="reference external" href="https://github.com/jpangas">John Pangas</a>, <a class="reference external" href="https://github.com/rprkh">Rahil Parikh</a> ,
and <a class="reference external" href="https://github.com/albuzenet">Alex Buzenet</a>.</p>
</li>
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> Added a multi-threaded Cython routine to the compute squared
Euclidean distances (sometimes followed by a fused reduction operation) for a
pair of datasets consisting of a sparse CSR matrix and a dense NumPy.</p>
<p>This can improve the performance of following functions and estimators:</p>
<ul class="simple">
<li><p><a class="reference internal" href="../modules/generated/sklearn.metrics.pairwise_distances_argmin.html#sklearn.metrics.pairwise_distances_argmin" title="sklearn.metrics.pairwise_distances_argmin"><code class="xref py py-func docutils literal notranslate"><span class="pre">sklearn.metrics.pairwise_distances_argmin</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.metrics.pairwise_distances_argmin_min.html#sklearn.metrics.pairwise_distances_argmin_min" title="sklearn.metrics.pairwise_distances_argmin_min"><code class="xref py py-func docutils literal notranslate"><span class="pre">sklearn.metrics.pairwise_distances_argmin_min</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.cluster.AffinityPropagation.html#sklearn.cluster.AffinityPropagation" title="sklearn.cluster.AffinityPropagation"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.cluster.AffinityPropagation</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.cluster.Birch.html#sklearn.cluster.Birch" title="sklearn.cluster.Birch"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.cluster.Birch</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.cluster.MeanShift.html#sklearn.cluster.MeanShift" title="sklearn.cluster.MeanShift"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.cluster.MeanShift</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.cluster.OPTICS.html#sklearn.cluster.OPTICS" title="sklearn.cluster.OPTICS"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.cluster.OPTICS</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.cluster.SpectralClustering.html#sklearn.cluster.SpectralClustering" title="sklearn.cluster.SpectralClustering"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.cluster.SpectralClustering</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.feature_selection.mutual_info_regression.html#sklearn.feature_selection.mutual_info_regression" title="sklearn.feature_selection.mutual_info_regression"><code class="xref py py-func docutils literal notranslate"><span class="pre">sklearn.feature_selection.mutual_info_regression</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.neighbors.KNeighborsClassifier.html#sklearn.neighbors.KNeighborsClassifier" title="sklearn.neighbors.KNeighborsClassifier"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.neighbors.KNeighborsClassifier</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.neighbors.KNeighborsRegressor.html#sklearn.neighbors.KNeighborsRegressor" title="sklearn.neighbors.KNeighborsRegressor"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.neighbors.KNeighborsRegressor</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.neighbors.RadiusNeighborsClassifier.html#sklearn.neighbors.RadiusNeighborsClassifier" title="sklearn.neighbors.RadiusNeighborsClassifier"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.neighbors.RadiusNeighborsClassifier</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.neighbors.RadiusNeighborsRegressor.html#sklearn.neighbors.RadiusNeighborsRegressor" title="sklearn.neighbors.RadiusNeighborsRegressor"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.neighbors.RadiusNeighborsRegressor</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.neighbors.LocalOutlierFactor.html#sklearn.neighbors.LocalOutlierFactor" title="sklearn.neighbors.LocalOutlierFactor"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.neighbors.LocalOutlierFactor</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.neighbors.NearestNeighbors.html#sklearn.neighbors.NearestNeighbors" title="sklearn.neighbors.NearestNeighbors"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.neighbors.NearestNeighbors</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.manifold.Isomap.html#sklearn.manifold.Isomap" title="sklearn.manifold.Isomap"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.manifold.Isomap</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.manifold.LocallyLinearEmbedding.html#sklearn.manifold.LocallyLinearEmbedding" title="sklearn.manifold.LocallyLinearEmbedding"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.manifold.LocallyLinearEmbedding</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.manifold.TSNE.html#sklearn.manifold.TSNE" title="sklearn.manifold.TSNE"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.manifold.TSNE</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.manifold.trustworthiness.html#sklearn.manifold.trustworthiness" title="sklearn.manifold.trustworthiness"><code class="xref py py-func docutils literal notranslate"><span class="pre">sklearn.manifold.trustworthiness</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.semi_supervised.LabelPropagation.html#sklearn.semi_supervised.LabelPropagation" title="sklearn.semi_supervised.LabelPropagation"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.semi_supervised.LabelPropagation</span></code></a></p></li>
<li><p><a class="reference internal" href="../modules/generated/sklearn.semi_supervised.LabelSpreading.html#sklearn.semi_supervised.LabelSpreading" title="sklearn.semi_supervised.LabelSpreading"><code class="xref py py-class docutils literal notranslate"><span class="pre">sklearn.semi_supervised.LabelSpreading</span></code></a></p></li>
</ul>
<p>A typical example of this performance improvement happens when passing a sparse
CSR matrix to the <code class="docutils literal notranslate"><span class="pre">predict</span></code> or <code class="docutils literal notranslate"><span class="pre">transform</span></code> method of estimators that rely on
a dense NumPy representation to store their fitted parameters (or the reverse).</p>
<p>For instance, <a class="reference internal" href="../modules/generated/sklearn.neighbors.NearestNeighbors.html#sklearn.neighbors.NearestNeighbors.kneighbors" title="sklearn.neighbors.NearestNeighbors.kneighbors"><code class="xref py py-meth docutils literal notranslate"><span class="pre">sklearn.neighbors.NearestNeighbors.kneighbors</span></code></a> is now up
to 2 times faster for this case on commonly available laptops.</p>
<p><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/25044">#25044</a> by <a class="reference external" href="https://github.com/jjerphan">Julien Jerphanion</a>.</p>
</li>
<li><p><span class="raw-html"><span class="badge text-bg-info">Enhancement</span></span> All estimators that internally rely on OpenMP multi-threading
(via Cython) now use a number of threads equal to the number of physical
(instead of logical) cores by default. In the past, we observed that using as
many threads as logical cores on SMT hosts could sometimes cause severe
performance problems depending on the algorithms and the shape of the data.
Note that it is still possible to manually adjust the number of threads used
by OpenMP as documented in <a class="reference internal" href="../computing/parallelism.html#parallelism"><span class="std std-ref">Parallelism</span></a>.</p>
<p><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/26082">#26082</a> by <a class="reference external" href="https://github.com/jeremiedbb">Jérémie du Boisberranger</a> and
<a class="reference external" href="https://github.com/ogrisel">Olivier Grisel</a>.</p>
</li>
</ul>
</section>
<section id="experimental-under-development">
<h3>Experimental / Under Development<a class="headerlink" href="#experimental-under-development" title="Link to this heading">#</a></h3>
<ul class="simple">
<li><p><span class="raw-html"><span class="badge text-bg-success">Major Feature</span></span> <a class="reference internal" href="../metadata_routing.html#metadata-routing"><span class="std std-ref">Metadata routing</span></a>’s related base
methods are included in this release. This feature is only available via the
<code class="docutils literal notranslate"><span class="pre">enable_metadata_routing</span></code> feature flag which can be enabled using
<a class="reference internal" href="../modules/generated/sklearn.set_config.html#sklearn.set_config" title="sklearn.set_config"><code class="xref py py-func docutils literal notranslate"><span class="pre">sklearn.set_config</span></code></a> and <a class="reference internal" href="../modules/generated/sklearn.config_context.html#sklearn.config_context" title="sklearn.config_context"><code class="xref py py-func docutils literal notranslate"><span class="pre">sklearn.config_context</span></code></a>. For now this
feature is mostly useful for third party developers to prepare their code
base for metadata routing, and we strongly recommend that they also hide it
behind the same feature flag, rather than having it enabled by default.
<a class="reference external" href="https://github.com/scikit-learn/scikit-learn/pull/24027">#24027</a> by <a class="reference external" href="https://github.com/adrinjalali">Adrin Jalali</a>, <a class="reference external" href="https://github.com/BenjaminBossan">Benjamin Bossan</a>, and
<a class="reference external" href="https://github.com/OmarManzoor">Omar Salman</a>.</p></li>