-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathmachine_learning_map.html
824 lines (595 loc) · 232 KB
/
machine_learning_map.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
<!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="12. Choosing the right estimator" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://scikit-learn/stable/machine_learning_map.html" />
<meta property="og:site_name" content="scikit-learn" />
<meta property="og:description" content="Often the hardest part of solving a machine learning problem can be finding the right estimator for the job. Different estimators are better suited for different types of data and different problem..." />
<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="Often the hardest part of solving a machine learning problem can be finding the right estimator for the job. Different estimators are better suited for different types of data and different problem..." />
<title>12. Choosing the right estimator — scikit-learn 1.6.1 documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "";
</script>
<!--
this give us a css class that will be invisible only if js is disabled
-->
<noscript>
<style>
.pst-js-only { display: none !important; }
</style>
</noscript>
<!-- Loaded before other Sphinx assets -->
<link href="_static/styles/theme.css?digest=8878045cc6db502f8baf" rel="stylesheet" />
<link href="_static/styles/pydata-sphinx-theme.css?digest=8878045cc6db502f8baf" rel="stylesheet" />
<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=e3ca86de" />
<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=d67e4bb0" />
<!-- So that users can add custom icons -->
<script src="_static/scripts/fontawesome.js?digest=8878045cc6db502f8baf"></script>
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="_static/scripts/bootstrap.js?digest=8878045cc6db502f8baf" />
<link rel="preload" as="script" href="_static/scripts/pydata-sphinx-theme.js?digest=8878045cc6db502f8baf" />
<script src="_static/documentation_options.js?v=d6a008b6"></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 = 'machine_learning_map';</script>
<script>
DOCUMENTATION_OPTIONS.theme_version = '0.16.1';
DOCUMENTATION_OPTIONS.theme_switcher_json_url = 'https://scikit-learn.org/dev/_static/versions.json';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = '1.6.1';
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>
<script src="_static/scripts/sg_plotly_resize.js?v=eeb41cab"></script>
<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="13. External Resources, Videos and Talks" href="presentations.html" />
<link rel="prev" title="11.1. Array API support (experimental)" href="modules/array_api.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
<meta name="docsearch:version" content="1.6" />
</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>
<dialog id="pst-search-dialog">
<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"
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>
</dialog>
<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"/>
<img src="_static/scikit-learn-logo-small.png" class="logo__image only-dark pst-js-only" alt="scikit-learn homepage"/>
</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 current active">
<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=" ">
<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">
<button class="btn btn-sm pst-navbar-icon search-button search-button__button pst-js-only" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass fa-lg"></i>
</button>
</div>
<div class="navbar-item">
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button pst-js-only" aria-label="Color mode" data-bs-title="Color mode" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light" title="Light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark" title="Dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto" title="System Settings"></i>
</button></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">
<div class="version-switcher__container dropdown pst-js-only">
<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></div>
</div>
</div>
<div class="navbar-persistent--mobile">
<button class="btn btn-sm pst-navbar-icon search-button search-button__button pst-js-only" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass fa-lg"></i>
</button>
</div>
</div>
</header>
<div class="bd-container">
<div class="bd-container__inner bd-page-width">
<dialog id="pst-primary-sidebar-modal"></dialog>
<div id="pst-primary-sidebar" 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 current active">
<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 ">
<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">
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button pst-js-only" aria-label="Color mode" data-bs-title="Color mode" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light" title="Light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark" title="Dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto" title="System Settings"></i>
</button></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">
<div class="version-switcher__container dropdown pst-js-only">
<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></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 has-children"><a class="reference internal" href="supervised_learning.html">1. Supervised learning</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="modules/linear_model.html">1.1. Linear Models</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/lda_qda.html">1.2. Linear and Quadratic Discriminant Analysis</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/kernel_ridge.html">1.3. Kernel ridge regression</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/svm.html">1.4. Support Vector Machines</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/sgd.html">1.5. Stochastic Gradient Descent</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/neighbors.html">1.6. Nearest Neighbors</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/gaussian_process.html">1.7. Gaussian Processes</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/cross_decomposition.html">1.8. Cross decomposition</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/naive_bayes.html">1.9. Naive Bayes</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/tree.html">1.10. Decision Trees</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/ensemble.html">1.11. Ensembles: Gradient boosting, random forests, bagging, voting, stacking</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/multiclass.html">1.12. Multiclass and multioutput algorithms</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/feature_selection.html">1.13. Feature selection</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/semi_supervised.html">1.14. Semi-supervised learning</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/isotonic.html">1.15. Isotonic regression</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/calibration.html">1.16. Probability calibration</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/neural_networks_supervised.html">1.17. Neural network models (supervised)</a></li>
</ul>
</details></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="unsupervised_learning.html">2. Unsupervised learning</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="modules/mixture.html">2.1. Gaussian mixture models</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/manifold.html">2.2. Manifold learning</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/clustering.html">2.3. Clustering</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/biclustering.html">2.4. Biclustering</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/decomposition.html">2.5. Decomposing signals in components (matrix factorization problems)</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/covariance.html">2.6. Covariance estimation</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/outlier_detection.html">2.7. Novelty and Outlier Detection</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/density.html">2.8. Density Estimation</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/neural_networks_unsupervised.html">2.9. Neural network models (unsupervised)</a></li>
</ul>
</details></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="model_selection.html">3. Model selection and evaluation</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="modules/cross_validation.html">3.1. Cross-validation: evaluating estimator performance</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/grid_search.html">3.2. Tuning the hyper-parameters of an estimator</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/classification_threshold.html">3.3. Tuning the decision threshold for class prediction</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/model_evaluation.html">3.4. Metrics and scoring: quantifying the quality of predictions</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/learning_curve.html">3.5. Validation curves: plotting scores to evaluate models</a></li>
</ul>
</details></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="inspection.html">4. Inspection</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="modules/partial_dependence.html">4.1. Partial Dependence and Individual Conditional Expectation plots</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/permutation_importance.html">4.2. Permutation feature importance</a></li>
</ul>
</details></li>
<li class="toctree-l1"><a class="reference internal" href="visualizations.html">5. Visualizations</a></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="data_transforms.html">6. Dataset transformations</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="modules/compose.html">6.1. Pipelines and composite estimators</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/feature_extraction.html">6.2. Feature extraction</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/preprocessing.html">6.3. Preprocessing data</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/impute.html">6.4. Imputation of missing values</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/unsupervised_reduction.html">6.5. Unsupervised dimensionality reduction</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/random_projection.html">6.6. Random Projection</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/kernel_approximation.html">6.7. Kernel Approximation</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/metrics.html">6.8. Pairwise metrics, Affinities and Kernels</a></li>
<li class="toctree-l2"><a class="reference internal" href="modules/preprocessing_targets.html">6.9. Transforming the prediction target (<code class="docutils literal notranslate"><span class="pre">y</span></code>)</a></li>
</ul>
</details></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="datasets.html">7. Dataset loading utilities</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="datasets/toy_dataset.html">7.1. Toy datasets</a></li>
<li class="toctree-l2"><a class="reference internal" href="datasets/real_world.html">7.2. Real world datasets</a></li>
<li class="toctree-l2"><a class="reference internal" href="datasets/sample_generators.html">7.3. Generated datasets</a></li>
<li class="toctree-l2"><a class="reference internal" href="datasets/loading_other_datasets.html">7.4. Loading other datasets</a></li>
</ul>
</details></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="computing.html">8. Computing with scikit-learn</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="computing/scaling_strategies.html">8.1. Strategies to scale computationally: bigger data</a></li>
<li class="toctree-l2"><a class="reference internal" href="computing/computational_performance.html">8.2. Computational Performance</a></li>
<li class="toctree-l2"><a class="reference internal" href="computing/parallelism.html">8.3. Parallelism, resource management, and configuration</a></li>
</ul>
</details></li>
<li class="toctree-l1"><a class="reference internal" href="model_persistence.html">9. Model persistence</a></li>
<li class="toctree-l1"><a class="reference internal" href="common_pitfalls.html">10. Common pitfalls and recommended practices</a></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="dispatching.html">11. Dispatching</a><details><summary><span class="toctree-toggle" role="presentation"><i class="fa-solid fa-chevron-down"></i></span></summary><ul>
<li class="toctree-l2"><a class="reference internal" href="modules/array_api.html">11.1. Array API support (experimental)</a></li>
</ul>
</details></li>
<li class="toctree-l1 current active"><a class="current reference internal" href="#">12. Choosing the right estimator</a></li>
<li class="toctree-l1"><a class="reference internal" href="presentations.html">13. External Resources, Videos and Talks</a></li>
</ul>
</div>
</nav></div>
</div>
<div class="sidebar-primary-items__end sidebar-primary__section">
</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="user_guide.html" class="nav-link">User Guide</a></li>
<li class="breadcrumb-item active" aria-current="page"><span class="ellipsis"><span class="section-number">12. </span>Choosing the right estimator</span></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article">
<section id="choosing-the-right-estimator">
<span id="ml-map"></span><h1><span class="section-number">12. </span>Choosing the right estimator<a class="headerlink" href="#choosing-the-right-estimator" title="Link to this heading">#</a></h1>
<p>Often the hardest part of solving a machine learning problem can be finding the right
estimator for the job. Different estimators are better suited for different types of
data and different problems.</p>
<p>The flowchart below is designed to give users a bit of a rough guide on how to approach
problems with regard to which estimators to try on your data. Click on any estimator in
the chart below to see its documentation. The <strong>Try next</strong> orange arrows are to be read as
“if this estimator does not achieve the desired outcome, then follow the arrow and try
the next one”. Use scroll wheel to zoom in and out, and click and drag to pan around.
You can also download the chart: <a class="reference download internal" download="" href="_downloads/b82bf6cd7438a351f19fac60fbc0d927/ml_map.svg"><code class="xref download docutils literal notranslate"><span class="pre">ml_map.svg</span></code></a>.</p>
<style>
#sk-ml-map {
height: 80vh;
margin: 1.5rem 0;
}
#sk-ml-map svg {
height: 100%;
width: 100%;
border: 2px solid var(--pst-color-border);
border-radius: 0.5rem;
}
html[data-theme="dark"] #sk-ml-map svg {
filter: invert(90%) hue-rotate(180deg);
}
</style>
<script src="_static/scripts/vendor/svg-pan-zoom.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const beforePan = function (oldPan, newPan) {
const gutterWidth = 100, gutterHeight = 100;
const sizes = this.getSizes();
// Compute pan limits
const leftLimit = -((sizes.viewBox.x + sizes.viewBox.width) * sizes.realZoom) + gutterWidth;
const rightLimit = sizes.width - gutterWidth - (sizes.viewBox.x * sizes.realZoom);
const topLimit = -((sizes.viewBox.y + sizes.viewBox.height) * sizes.realZoom) + gutterHeight;
const bottomLimit = sizes.height - gutterHeight - (sizes.viewBox.y * sizes.realZoom);
return {
x: Math.max(leftLimit, Math.min(rightLimit, newPan.x)),
y: Math.max(topLimit, Math.min(bottomLimit, newPan.y))
};
};
// Limit the pan
svgPanZoom("#sk-ml-map svg", {
zoomEnabled: true,
controlIconsEnabled: true,
fit: 1,
center: 1,
beforePan: beforePan,
});
});
</script>
<div id="sk-ml-map"><?xml version="1.0" encoding="UTF-8"?>
<!-- Do not edit this file with editors other than draw.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1423px" height="772px" viewBox="-0.5 -0.5 1423 772" content="<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (X11; Linux x86_64; rv:132.0) Gecko/20100101 Firefox/132.0" scale="1" border="15" version="24.9.1">
 <diagram name="第 1 页" id="prGmxGi5H6ogpCY3go2q">
 <mxGraphModel dx="2261" dy="2085" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
 <root>
 <mxCell id="0" />
 <mxCell id="1" parent="0" />
 <mxCell id="ke5fKqay8JjYpE_cKGV5-45" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=3;strokeColor=#B3B3B3;fillColor=#FFFFCC;fillStyle=auto;shadow=0;glass=0;" parent="1" vertex="1">
 <mxGeometry x="490" y="380" width="530" height="250" as="geometry" />
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-26" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=3;strokeColor=#B3B3B3;fillColor=#CCE5FF;fillStyle=auto;shadow=0;glass=0;" parent="1" vertex="1">
 <mxGeometry x="480" y="60" width="540" height="290" as="geometry" />
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-13" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=3;strokeColor=#B3B3B3;fillColor=#E5CCFF;fillStyle=auto;shadow=0;glass=0;" parent="1" vertex="1">
 <mxGeometry x="-370" y="320" width="560" height="290" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-66" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=3;strokeColor=#B3B3B3;fillColor=#FFCCCC;fillStyle=auto;shadow=0;glass=0;" parent="1" vertex="1">
 <mxGeometry x="-370" y="-30" width="560" height="310" as="geometry" />
 </mxCell>
 <mxCell id="p-bOygNmazyrNX3Cmdq1-1" value="&lt;font style=&quot;font-size: 20px;&quot;&gt;&lt;b&gt;START&lt;/b&gt;&lt;/font&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#FFE6CC;strokeColor=#FF9933;" parent="1" vertex="1">
 <mxGeometry x="410" y="-30" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="p-bOygNmazyrNX3Cmdq1-2" value="&amp;gt;50&lt;div&gt;&lt;span style=&quot;font-size: 10px; background-color: initial;&quot;&gt;samples&lt;/span&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="330" y="80" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-1" value="&lt;font style=&quot;font-size: 10px;&quot;&gt;get&lt;/font&gt;&lt;div&gt;more&lt;/div&gt;&lt;div&gt;data&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="220" y="10" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-5" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=1;entryDx=0;entryDy=0;exitX=0;exitY=0;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="p-bOygNmazyrNX3Cmdq1-2" target="lidfMP7FeTC4yG16FXWw-1" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="270" y="250" as="sourcePoint" />
 <mxPoint x="320" y="200" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-6" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1" parent="lidfMP7FeTC4yG16FXWw-5" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-7" value="&lt;font style=&quot;font-size: 10px;&quot;&gt;predicting a&lt;/font&gt;&lt;div&gt;category&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="300" y="190" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-8" value="" style="endArrow=block;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="p-bOygNmazyrNX3Cmdq1-2" target="lidfMP7FeTC4yG16FXWw-7" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="452" y="190" as="sourcePoint" />
 <mxPoint x="398" y="155" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-9" value="YES" style="edgeLabel;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;html=1;labelBorderColor=none;textShadow=0;" parent="lidfMP7FeTC4yG16FXWw-8" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-10" value="&lt;div&gt;&lt;span style=&quot;font-size: 10px;&quot;&gt;do you have&lt;/span&gt;&lt;/div&gt;&lt;div&gt;labeled&lt;/div&gt;&lt;div&gt;data&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="210" y="280" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-11" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0;entryDx=0;entryDy=0;exitX=0;exitY=1;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-7" target="lidfMP7FeTC4yG16FXWw-10" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="452" y="240" as="sourcePoint" />
 <mxPoint x="412" y="280" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-12" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1" parent="lidfMP7FeTC4yG16FXWw-11" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-13" value="&lt;div&gt;&lt;span style=&quot;font-size: 10px;&quot;&gt;predicting a&lt;/span&gt;&lt;/div&gt;&lt;div&gt;quantity&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="374" y="290" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-14" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0;entryDx=0;entryDy=0;exitX=1;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-7" target="lidfMP7FeTC4yG16FXWw-13" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="452" y="190" as="sourcePoint" />
 <mxPoint x="398" y="155" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-15" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1" parent="lidfMP7FeTC4yG16FXWw-14" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-17" value="&lt;div&gt;&lt;span style=&quot;font-size: 10px;&quot;&gt;just&lt;/span&gt;&lt;/div&gt;&lt;div&gt;looking&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;verticalAlign=middle;" parent="1" vertex="1">
 <mxGeometry x="330" y="400" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-18" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-13" target="lidfMP7FeTC4yG16FXWw-17" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="384" y="340" as="sourcePoint" />
 <mxPoint x="395" y="380" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-19" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1" parent="lidfMP7FeTC4yG16FXWw-18" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-21" value="&lt;div&gt;&lt;span style=&quot;font-size: 10px;&quot;&gt;predicting&lt;/span&gt;&lt;/div&gt;&lt;div&gt;structure&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;verticalAlign=middle;" parent="1" vertex="1">
 <mxGeometry x="334" y="510" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-22" value="" style="endArrow=block;html=1;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-17" target="lidfMP7FeTC4yG16FXWw-21" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="395" y="430" as="sourcePoint" />
 <mxPoint x="380" y="570" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-23" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1" parent="lidfMP7FeTC4yG16FXWw-22" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-24" value="" style="endArrow=block;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="p-bOygNmazyrNX3Cmdq1-1" target="p-bOygNmazyrNX3Cmdq1-2" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="331" y="141" as="sourcePoint" />
 <mxPoint x="279" y="104" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-26" value="&lt;div&gt;&lt;span style=&quot;background-color: initial;&quot;&gt;tough&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: initial;&quot;&gt;luck&lt;/span&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;verticalAlign=middle;" parent="1" vertex="1">
 <mxGeometry x="200" y="500" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-27" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-21" target="lidfMP7FeTC4yG16FXWw-26" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="562" y="120" as="sourcePoint" />
 <mxPoint x="508" y="190" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-28" value="&lt;font style=&quot;font-size: 16px;&quot;&gt;&amp;lt;100K&lt;/font&gt;&lt;div style=&quot;&quot;&gt;&lt;span style=&quot;&quot;&gt;&lt;font style=&quot;font-size: 10px;&quot;&gt;samples&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="90" y="170" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-29" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=1;entryDx=0;entryDy=0;exitX=0;exitY=0;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-10" target="lidfMP7FeTC4yG16FXWw-28" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="356" y="330" as="sourcePoint" />
 <mxPoint x="300" y="345" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-30" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=default;" parent="lidfMP7FeTC4yG16FXWw-29" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="SGD&lt;div&gt;Classifier&lt;/div&gt;" link="./modules/sgd.html#classification" id="lidfMP7FeTC4yG16FXWw-33">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="54" y="60" width="80" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="lidfMP7FeTC4yG16FXWw-34" value="" style="endArrow=block;html=1;rounded=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-28" target="lidfMP7FeTC4yG16FXWw-33" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="382" y="170" as="sourcePoint" />
 <mxPoint x="358" y="130" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-35" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#FFCCCC;" parent="lidfMP7FeTC4yG16FXWw-34" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="Linear&lt;div&gt;SVC&lt;/div&gt;" link="./modules/svm.html#classification" id="lidfMP7FeTC4yG16FXWw-36">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-30" y="210" width="60" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="lidfMP7FeTC4yG16FXWw-38" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-28" target="lidfMP7FeTC4yG16FXWw-36" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="162" y="300" as="sourcePoint" />
 <mxPoint x="140" y="250" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-39" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#FFCCCC;" parent="lidfMP7FeTC4yG16FXWw-38" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-42" value="&lt;div&gt;&lt;span style=&quot;background-color: initial;&quot;&gt;text&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;data&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="-190" y="170" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-43" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=0;exitY=0.25;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-36" target="lidfMP7FeTC4yG16FXWw-42" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="492" y="100" as="sourcePoint" />
 <mxPoint x="438" y="170" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <UserObject label="Kernel&lt;div&gt;Approximation&lt;/div&gt;" link="./modules/kernel_approximation.html" id="lidfMP7FeTC4yG16FXWw-46">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-136" width="120" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="lidfMP7FeTC4yG16FXWw-47" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.75;entryDx=0;entryDy=0;exitX=0;exitY=0.25;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-33" target="lidfMP7FeTC4yG16FXWw-46" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="-30" y="213" as="sourcePoint" />
 <mxPoint x="-140" y="195" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <UserObject label="KNeighbors&lt;div&gt;Classifier&lt;/div&gt;" link="./modules/neighbors.html" id="lidfMP7FeTC4yG16FXWw-49">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-170" y="80" width="100" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="lidfMP7FeTC4yG16FXWw-50" value="" style="endArrow=block;html=1;rounded=0;entryX=0.25;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-42" target="lidfMP7FeTC4yG16FXWw-49" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="140" y="180" as="sourcePoint" />
 <mxPoint x="120" y="120" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-51" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#FFCCCC;" parent="lidfMP7FeTC4yG16FXWw-50" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="SVC" link="./modules/svm.html#classification" id="lidfMP7FeTC4yG16FXWw-52">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-328.51" y="55" width="90" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <UserObject label="Ensemble&lt;div&gt;Classifiers&lt;/div&gt;" link="./modules/ensemble.html" id="lidfMP7FeTC4yG16FXWw-54">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-328.51" y="85" width="90" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="lidfMP7FeTC4yG16FXWw-56" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-49" target="lidfMP7FeTC4yG16FXWw-54" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="-20" y="233" as="sourcePoint" />
 <mxPoint x="-90" y="225" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <UserObject label="Naive&lt;div&gt;Bayes&lt;/div&gt;" link="./modules/naive_bayes.html" id="lidfMP7FeTC4yG16FXWw-58">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-313.51" y="170" width="60" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="lidfMP7FeTC4yG16FXWw-60" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-42" target="lidfMP7FeTC4yG16FXWw-58" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="100" y="215" as="sourcePoint" />
 <mxPoint x="40" y="233" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-61" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#FFCCCC;" parent="lidfMP7FeTC4yG16FXWw-60" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="lidfMP7FeTC4yG16FXWw-62" value="&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;font face=&quot;Georgia&quot; style=&quot;font-size: 24px;&quot;&gt;classification&lt;/font&gt;&lt;/span&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=24;fontStyle=1" parent="1" vertex="1">
 <mxGeometry x="-350" y="-10" width="170" height="40" as="geometry" />
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-10" value="&lt;div style=&quot;font-size: 12px;&quot;&gt;&lt;font style=&quot;font-size: 12px;&quot;&gt;&lt;span style=&quot;background-color: initial; font-size: 12px;&quot;&gt;number of&lt;/span&gt;&lt;br style=&quot;font-size: 12px;&quot;&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 12px;&quot;&gt;&lt;font style=&quot;font-size: 12px;&quot;&gt;categories&lt;/font&gt;&lt;/div&gt;&lt;div style=&quot;font-size: 12px;&quot;&gt;&lt;font style=&quot;font-size: 12px;&quot;&gt;known&lt;/font&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=12;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="14" y="358" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-11" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-10" target="ZhISbIufsCQTaueA5Ebt-10" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="395" y="430" as="sourcePoint" />
 <mxPoint x="370" y="470" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-12" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#E5CCFF;" parent="ZhISbIufsCQTaueA5Ebt-11" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-14" value="&lt;font style=&quot;font-size: 16px;&quot;&gt;&amp;lt;10K&lt;/font&gt;&lt;div style=&quot;&quot;&gt;&lt;span style=&quot;&quot;&gt;&lt;font style=&quot;font-size: 10px;&quot;&gt;samples&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="78" y="463" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-15" value="&lt;font style=&quot;font-size: 16px;&quot;&gt;&amp;lt;10K&lt;/font&gt;&lt;div style=&quot;&quot;&gt;&lt;span style=&quot;&quot;&gt;&lt;font style=&quot;font-size: 10px;&quot;&gt;samples&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="-140" y="410" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-16" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ZhISbIufsCQTaueA5Ebt-14" target="lidfMP7FeTC4yG16FXWw-26" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="370" y="540" as="sourcePoint" />
 <mxPoint x="395" y="600" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-17" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#E5CCFF;" parent="ZhISbIufsCQTaueA5Ebt-16" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-18" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0;entryDx=0;entryDy=0;exitX=1;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ZhISbIufsCQTaueA5Ebt-10" target="ZhISbIufsCQTaueA5Ebt-14" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="120" y="550" as="sourcePoint" />
 <mxPoint x="202" y="620" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-19" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#E5CCFF;" parent="ZhISbIufsCQTaueA5Ebt-18" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-20" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ZhISbIufsCQTaueA5Ebt-10" target="ZhISbIufsCQTaueA5Ebt-15" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="355" y="330" as="sourcePoint" />
 <mxPoint x="300" y="345" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-21" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#E5CCFF;" parent="ZhISbIufsCQTaueA5Ebt-20" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="MeanShift" link="./modules/clustering.html#mean-shift" id="ZhISbIufsCQTaueA5Ebt-22">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-55" y="530" width="90" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <UserObject label="VBGMM" link="./modules/mixture.html#bgmm" id="ZhISbIufsCQTaueA5Ebt-23">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-55" y="560" width="90" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-24" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.75;entryDx=0;entryDy=0;exitX=0;exitY=1;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ZhISbIufsCQTaueA5Ebt-14" target="ZhISbIufsCQTaueA5Ebt-22" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="10" y="405" as="sourcePoint" />
 <mxPoint x="-61" y="430" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-25" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#E5CCFF;" parent="ZhISbIufsCQTaueA5Ebt-24" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="MiniBatch&lt;div&gt;KMeans&lt;/div&gt;" link="./modules/clustering.html#mini-batch-k-means" id="ZhISbIufsCQTaueA5Ebt-26">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-195" y="520" width="90" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-27" value="" style="endArrow=block;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ZhISbIufsCQTaueA5Ebt-15" target="ZhISbIufsCQTaueA5Ebt-26" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="79" y="430" as="sourcePoint" />
 <mxPoint x="91" y="480" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-28" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#E5CCFF;" parent="ZhISbIufsCQTaueA5Ebt-27" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-29" value="&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;font face=&quot;Georgia&quot; style=&quot;font-size: 24px;&quot;&gt;clustering&lt;/font&gt;&lt;/span&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=24;fontStyle=1" parent="1" vertex="1">
 <mxGeometry x="-347.02" y="480" width="138.51" height="40" as="geometry" />
 </mxCell>
 <UserObject label="KMeans" link="./modules/clustering.html#k-means" id="ZhISbIufsCQTaueA5Ebt-30">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-196.51" y="340" width="78.51" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-31" value="" style="endArrow=block;html=1;rounded=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;exitX=0;exitY=0;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ZhISbIufsCQTaueA5Ebt-15" target="ZhISbIufsCQTaueA5Ebt-30" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="10" y="405" as="sourcePoint" />
 <mxPoint x="-61" y="430" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-32" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#E5CCFF;" parent="ZhISbIufsCQTaueA5Ebt-31" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="&lt;div&gt;Spectral&lt;/div&gt;&lt;div&gt;Clustering&lt;/div&gt;" link="./modules/clustering.html#spectral-clustering" id="ZhISbIufsCQTaueA5Ebt-33">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-350" y="380" width="90" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <UserObject label="GMM" link="./modules/mixture.html" id="ZhISbIufsCQTaueA5Ebt-34">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="-350" y="430" width="90" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ZhISbIufsCQTaueA5Ebt-35" value="" style="endArrow=block;html=1;rounded=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;exitX=0;exitY=0.75;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ZhISbIufsCQTaueA5Ebt-30" target="ZhISbIufsCQTaueA5Ebt-33" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="-20" y="233" as="sourcePoint" />
 <mxPoint x="-100" y="215" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-1" value="&lt;font style=&quot;font-size: 16px;&quot;&gt;&amp;lt;100K&lt;/font&gt;&lt;div style=&quot;&quot;&gt;&lt;span style=&quot;&quot;&gt;&lt;font style=&quot;font-size: 10px;&quot;&gt;samples&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="500" y="210" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-2" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-13" target="ke5fKqay8JjYpE_cKGV5-1" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="350" y="210" as="sourcePoint" />
 <mxPoint x="384" y="260" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-3" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1" parent="ke5fKqay8JjYpE_cKGV5-2" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-5" value="&lt;div style=&quot;font-size: 12px;&quot;&gt;few features&lt;/div&gt;&lt;div style=&quot;font-size: 12px;&quot;&gt;should be&lt;/div&gt;&lt;div style=&quot;font-size: 12px;&quot;&gt;important&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=12;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="650" y="220" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-6" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-1" target="ke5fKqay8JjYpE_cKGV5-5" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="424" y="315" as="sourcePoint" />
 <mxPoint x="522" y="280" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-7" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#CCE5FF;" parent="ke5fKqay8JjYpE_cKGV5-6" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="&lt;div&gt;SGD&lt;/div&gt;&lt;div&gt;Regressor&lt;/div&gt;" link="./modules/sgd.html#regression" id="ke5fKqay8JjYpE_cKGV5-8">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="590" y="135" width="90" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-9" value="" style="endArrow=block;html=1;rounded=0;entryX=0.25;entryY=1;entryDx=0;entryDy=0;exitX=1;exitY=0;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-1" target="ke5fKqay8JjYpE_cKGV5-8" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="384" y="350" as="sourcePoint" />
 <mxPoint x="396" y="400" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-10" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#CCE5FF;" parent="ke5fKqay8JjYpE_cKGV5-9" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="Lasso" link="./modules/linear_model.html#lasso" id="ke5fKqay8JjYpE_cKGV5-13">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="720" y="105" width="90" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <UserObject label="ElasticNet" link="./modules/linear_model.html#elastic-net" id="ke5fKqay8JjYpE_cKGV5-14">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="720" y="135" width="90" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-15" value="" style="endArrow=block;html=1;rounded=0;entryX=0.25;entryY=1;entryDx=0;entryDy=0;exitX=1;exitY=0;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-5" target="ke5fKqay8JjYpE_cKGV5-14" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="590" y="255" as="sourcePoint" />
 <mxPoint x="660" y="265" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-16" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#CCE5FF;" parent="ke5fKqay8JjYpE_cKGV5-15" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="RidgeRegression" link="./modules/linear_model.html#ridge-regression" id="ke5fKqay8JjYpE_cKGV5-17">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="790" y="270" width="140" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <UserObject label="SVR&lt;font style=&quot;font-size: 12px;&quot;&gt;(kernel=&quot;linear&quot;)&lt;/font&gt;" link="./modules/svm.html#regression" id="ke5fKqay8JjYpE_cKGV5-18">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="790" y="300" width="140" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-19" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-5" target="ke5fKqay8JjYpE_cKGV5-17" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="578" y="230" as="sourcePoint" />
 <mxPoint x="613" y="180" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-20" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#CCE5FF;" parent="ke5fKqay8JjYpE_cKGV5-19" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="SVR&lt;font style=&quot;font-size: 12px;&quot;&gt;(kernel=&quot;rbf&quot;)&lt;/font&gt;" link="./modules/svm.html#regression" id="ke5fKqay8JjYpE_cKGV5-21">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="880" y="120" width="120" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <UserObject label="Ensemble&lt;div&gt;Regressors&lt;/div&gt;" link="./modules/ensemble.html" id="ke5fKqay8JjYpE_cKGV5-23">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="880" y="150" width="120" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-24" value="" style="endArrow=block;html=1;rounded=0;entryX=0.25;entryY=1;entryDx=0;entryDy=0;exitX=0.75;exitY=0;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-17" target="ke5fKqay8JjYpE_cKGV5-23" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="990" y="255" as="sourcePoint" />
 <mxPoint x="930" y="220" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-27" value="&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;font face=&quot;Georgia&quot; style=&quot;font-size: 24px;&quot;&gt;regression&lt;/font&gt;&lt;/span&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=24;fontStyle=1" parent="1" vertex="1">
 <mxGeometry x="500" y="80" width="140" height="40" as="geometry" />
 </mxCell>
 <UserObject label="&lt;div&gt;&lt;span style=&quot;background-color: initial;&quot;&gt;Ramdomized&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: initial;&quot;&gt;PCA&lt;/span&gt;&lt;/div&gt;" link="./modules/decomposition.html#principal-component-analysis-pca" id="ke5fKqay8JjYpE_cKGV5-28">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="515" y="410" width="110" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-29" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="lidfMP7FeTC4yG16FXWw-17" target="ke5fKqay8JjYpE_cKGV5-28" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="424" y="295" as="sourcePoint" />
 <mxPoint x="521" y="260" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-30" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1" parent="ke5fKqay8JjYpE_cKGV5-29" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-31" value="&lt;font style=&quot;font-size: 16px;&quot;&gt;&amp;lt;10K&lt;/font&gt;&lt;div style=&quot;&quot;&gt;&lt;span style=&quot;&quot;&gt;&lt;font style=&quot;font-size: 10px;&quot;&gt;samples&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;" style="ellipse;whiteSpace=wrap;html=1;fontSize=16;fontFamily=Georgia;labelBorderColor=none;strokeWidth=5;gradientColor=none;fillColor=#CCE5FF;strokeColor=#3399FF;" parent="1" vertex="1">
 <mxGeometry x="515" y="528" width="80" height="70" as="geometry" />
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-32" value="" style="endArrow=block;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-28" target="ke5fKqay8JjYpE_cKGV5-31" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="541" y="490" as="sourcePoint" />
 <mxPoint x="490" y="520" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <UserObject label="Kernel&lt;div&gt;Approximation&lt;/div&gt;" link="./modules/kernel_approximation.html" id="ke5fKqay8JjYpE_cKGV5-34">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="670" y="550" width="120" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-35" value="" style="endArrow=block;html=1;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FF3333;strokeWidth=3;endFill=1;endSize=5;startSize=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-31" target="ke5fKqay8JjYpE_cKGV5-34" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="415" y="530" as="sourcePoint" />
 <mxPoint x="429" y="570" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-36" value="NO" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#FF3333;fontSize=12;fontStyle=1;labelBackgroundColor=#FFFFCC;" parent="ke5fKqay8JjYpE_cKGV5-35" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="IsoMap" link="./modules/manifold.html#isomap" id="ke5fKqay8JjYpE_cKGV5-37">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="680" y="430" width="100" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <UserObject label="&lt;div&gt;Spectral&lt;/div&gt;&lt;div&gt;Embedding&lt;/div&gt;" link="./modules/manifold.html#spectral-embedding" id="ke5fKqay8JjYpE_cKGV5-38">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="680" y="460" width="100" height="50" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-39" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0.75;entryDx=0;entryDy=0;exitX=1;exitY=0;exitDx=0;exitDy=0;strokeColor=#009900;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-31" target="ke5fKqay8JjYpE_cKGV5-38" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="410" y="495" as="sourcePoint" />
 <mxPoint x="525" y="458" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-40" value="YES" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#FFFFCC;" parent="ke5fKqay8JjYpE_cKGV5-39" vertex="1" connectable="0">
 <mxGeometry x="-0.1867" y="2" relative="1" as="geometry">
 <mxPoint as="offset" />
 </mxGeometry>
 </mxCell>
 <UserObject label="LLE" link="./modules/manifold.html#locally-linear-embedding" id="ke5fKqay8JjYpE_cKGV5-41">
 <mxCell style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=5;strokeColor=#00CC66;fillColor=#CCFFE6;fontFamily=Georgia;fontSize=16;" parent="1" vertex="1">
 <mxGeometry x="860" y="490" width="50" height="30" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-42" value="" style="endArrow=block;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FF9933;strokeWidth=3;endFill=1;endSize=5;startSize=0;" parent="1" source="ke5fKqay8JjYpE_cKGV5-38" target="ke5fKqay8JjYpE_cKGV5-41" edge="1">
 <mxGeometry width="50" height="50" relative="1" as="geometry">
 <mxPoint x="580" y="470" as="sourcePoint" />
 <mxPoint x="565" y="530" as="targetPoint" />
 </mxGeometry>
 </mxCell>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-44" value="&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;font face=&quot;Georgia&quot; style=&quot;font-size: 24px;&quot;&gt;dimensionality&lt;/font&gt;&lt;/span&gt;&lt;div&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;font face=&quot;Georgia&quot; style=&quot;font-size: 24px;&quot;&gt;reduction&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=24;fontStyle=1" parent="1" vertex="1">
 <mxGeometry x="810" y="542" width="210" height="65" as="geometry" />
 </mxCell>
 <UserObject label="" id="ke5fKqay8JjYpE_cKGV5-47">
 <mxCell style="shape=image;verticalLabelPosition=bottom;labelBackgroundColor=default;verticalAlign=top;aspect=fixed;imageAspect=0;image=data:image/svg+xml,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjUxIiB2aWV3Qm94PSIwIDAgMTI1MSA2NzUiIGhlaWdodD0iNjc1Ij48cGF0aCBmaWxsPSIjZjg5OTM5IiBkPSJtOTU5Ljk0MDA2MyA1NzMuMDY1OTc5YzE1Mi40MTA0MDEtMTUyLjQwMTU1IDE3Ny43NDA5NjctMzc0LjE1NzAxMyA1Ni41NzM5MTQtNDk1LjMxNTA2My0xMjEuMTQ4OTg3LTEyMS4xNDQ0NzEtMzQyLjg5NTM4Ni05NS44MTg0ODItNDk1LjI5NjkzNiA1Ni41NzM5NzQtMTUyLjQwMTU1IDE1Mi4zOTcxMjUtMTA4LjMxNDk3MiA0NDMuNTU2MDkxLTU2LjU2NDk3MiA0OTUuMzE1MDAzIDQxLjgxODQ4MiA0MS44MTg1NDIgMzQyLjg5NTUzOCA5NS44MTg1NDIgNDk1LjI4Nzk5NC01Ni41NzM5MTR6Ii8+PHBhdGggZmlsbD0iIzM0OTljZCIgZD0ibTMzNC41NzUwNDMgMzUyLjg0OTU0OGMtODguNDE1OTg1LTg4LjQxNjA0Ni0yMTcuMDg5MDM1LTEwMy4xMzU1MjgtMjg3LjQwMTUzNS0zMi44Mjc1NzUtNzAuMjk0NDc2IDcwLjI5OTA0MS01NS41OTc0ODEgMTk4Ljk4OTk5IDMyLjgzNjQ4NyAyODcuMzkyNTc4IDg4LjQzNDAzNiA4OC40NDI5OTMgMjU3LjM3NzU0OCA2Mi44NjA0NzMgMjg3LjM4MzUyOSAzMi44Mjc0NTMgMjQuMjgxOTgzLTI0LjI0MTQ1NSA1NS42MjQ0ODEtMTk4Ljk2NzQ2OC0zMi44MTg0ODEtMjg3LjM5MjQ1NnoiLz48ZyBmaWxsPSIjMDEwMTAxIj48cGF0aCBkPSJtNjM5LjY0MzQ5NCA1MzUuNzExNDg3Yy0xNS42MTk1MDcgMTQuMzc3NTAyLTI5LjMyMjAyMiAyNC45ODg1MjUtNDEuMDk4NDUgMzEuODA1OTY5LTExLjc3NjU1IDYuODQwMDg4LTIzLjAwODU0NSAxMC4yNTU0OTMtMzMuNjk2MDQ1IDEwLjI1NTQ5My0xMi4yOTM5NDUgMC0yMi4yMTIwMzYtNC43NjU1MDMtMjkuNzMxNDQ1LTE0LjMwMDkwMy03LjUzMzAyLTkuNTQ0NTU2LTExLjI4NjAxMS0yMi4zNDI1MjktMTEuMjg2MDExLTM4LjQ0MzU0MyAwLTI0LjEyNDQ1IDUuMjI4OTQzLTUzLjA4NjQ4NiAxNS42ODY5NTEtODYuODU0NDYxIDEwLjQ0MDA2My0zMy43OTUwNDQgMjMuMTUyNTI3LTY0LjkzNTA4OSAzOC4wODM0OTYtOTMuNDI0NTYxbDQzLjc4MDQ1Ni0xNi4yMDg5NTRjMS4zNzI2Mi0uNDU5MTA2IDIuNDE2NTY1LS42OTI5NjIgMy4xMDk1NTgtLjY5Mjk2MiAzLjMyMTA0NSAwIDYuMDY1OTc5IDIuNDQ3ODc2IDguMTcyMDU5IDcuMzIxNDExIDIuMTI4NDE3IDQuODk2MDU3IDMuMTk5NDYyIDExLjQ3NDk0NSAzLjE5OTQ2MiAxOS43NDYwMDIgMCAyMy40NDA1ODItNS4zOTU1MDcgNDYuMTM0MDY0LTE2LjIwODkyMyA2OC4wODA1MDUtMTAuODA5MDgyIDIxLjk1NTQ3NS0yNy42OTMwNTQgNDUuMzg2OTYzLTUwLjY3MDA0NCA3MC4zMjE1MzQtLjkyMjU0NiAxMS45NTE5MDQtMS4zODE1MzEgMjAuMTU5OTEyLTEuMzgxNTMxIDI0LjY0NjQ4NCAwIDEwLjAwMzQxOCAxLjgzNTk5OSAxNy45MTg5NDUgNS41MTI1MTMgMjMuNzgyNDcxIDMuNjgwOTY5IDUuODcyNDk3IDguNTU4OTYgOC43ODg1NzQgMTQuNjUxOTc3IDguNzg4NTc0IDYuMjE0NDc4IDAgMTIuODE2MDQtMi4yMjMxNDUgMTkuODI3MDI2LTYuNzA1MTM5IDYuOTk3NTU5LTQuNDkwOTA2IDE3LjY4NTA1OS0xMy43ODc5NjQgMzIuMDQ0NDM0LTI3LjkzMTQ1OHYxOS44MTM1Mzh6bS02Ni4wMDU5ODItNjcuMzc4NDc5YzE0LjU4OTA1MS0xNi4yMjI1MzQgMjYuNDM3NS0zNC40MTYwMTYgMzUuNTA5NDYxLTU0LjU0NDQ5NSA5LjA3MjA4Mi0yMC4xMzc1MTIgMTMuNjAzNTc2LTM3LjQ1ODAwOCAxMy42MDM1NzYtNTEuOTcwNTUgMC00LjIzMDAxMS0uNjI1NTQ5LTcuNjY3OTA4LTEuODgxMDQyLTEwLjI1MDkxNi0xLjI2NDUyNy0yLjU4NzU1NS0yLjg4NDQ2MS0zLjg4ODA2MS00LjgzMzAwOC0zLjg4ODA2MS00LjIzNDQzNiAwLTEwLjQyMTkzNiAxMC41ODM5NTMtMTguNTI2NDg5IDMxLjc1NjUzLTguMTA0NDkyIDIxLjE2ODAzLTE2LjA2MDU0NyA1MC44MDUwMjQtMjMuODcyNDk4IDg4Ljg5NzQ5MnoiLz48cGF0aCBkPSJtNzY4LjU3NzU3NiA1MzUuNzExNDg3Yy0xNC41ODkwNTEgMTQuMzc3NTAyLTI3LjY4NDAyMSAyNC45ODg1MjUtMzkuMjk0MDA3IDMxLjgwNTk2OS0xMS42MTAwNDYgNi44NDAwODgtMjQuNDA4MDIgMTAuMjU1NDkzLTM4LjQzNDU3IDEwLjI1NTQ5My0xNS42Mjg0MTggMC0yOC4yMzc0MjctNC45OTk1MTEtMzcuODQ0OTcxLTE0Ljk4NDk4NS05LjU4OTQxNi0xMC4wMTI1MTItMTQuMzc3NDQxLTIzLjE1Njk4My0xNC4zNzc0NDEtMzkuNDc4NTE2IDAtMjQuMzUzOTQzIDguNDM3NS00Ni4zOTA0NzIgMjUuMzQ4NTExLTY2LjA5NTk0NyAxNi44NzUtMTkuNzE0NTY5IDM1LjYxMjk3Ni0yOS41NjUwNjMgNTYuMTc4MDM5LTI5LjU2NTA2MyAxMC42ODc1IDAgMTkuMjM3NDg4IDIuNzY3NjA4IDI1LjY4MTUxOSA4LjI3OTk5OCA2LjQzNDkzNiA1LjUyMTU3NiA5LjY1MjQwNSAxMi43NTMwODMgOS42NTI0MDUgMjEuNzE3MDcyIDAgMjMuNzkxNDQzLTI1LjI3NjQ5IDQzLjA4MzAzOC03NS44MzM5MjQgNTcuOTEwNDYxIDQuNTg5OTY2IDIyLjM5NjYwNyAxNi41OTU5NDcgMzMuNjEwNDc0IDM2LjAxODAwNiAzMy42MTA0NzQgNy41ODY4NTMgMCAxNC44MTg0ODEtMi4wMzg1MTMgMjEuNzA3ODg1LTYuMTA2NTA2IDYuOTA3NDcxLTQuMDg1OTM4IDE3LjI5ODA5Ni0xMy4xNDg5MjYgMzEuMjAzMDY0LTI3LjE1NzQ3MXYxOS44MDkwMjF6bS05MC4zMTUwNjQtMzEuODc4MDUyYzI5LjQwNzUzMi04LjI3OTk5OSA0NC4xMjI2Mi0yMy41NTI5MTcgNDQuMTIyNjItNDUuODQ1OTQ3IDAtMTEuMDI5NDgtNC4wMjc1ODgtMTYuNTQxOTkyLTEyLjA2MDEyLTE2LjU0MTk5Mi03LjU4Njk3NSAwLTE0LjgxODQ4MSA1Ljc2NDUyNi0yMS43MDgwMDggMTcuMzI1MDEyLTYuOTExOTI2IDExLjU0MjU0MS0xMC4zNTQ0OTIgMjYuNTU0NTA0LTEwLjM1NDQ5MiA0NS4wNjI5Mjd6Ii8+PHBhdGggZD0ibTk1Mi42NTQ0MTkgNTM1LjcxMTQ4N2MtMTguMzg2OTYzIDE3LjQ2NDUzOC0zMS41NDUwNDQgMjguODUzOTQzLTM5LjQ2NDkwNSAzNC4xNDYwNTctNy45MjkxMzggNS4yODI4OTgtMTUuNTExNTk3IDcuOTE5OTIyLTIyLjc1NjUzMSA3LjkxOTkyMi0xOC4xNTc1MzEgMC0yNi43MTIwMzYtMTYuMDI0NTM2LTI1LjY4MTUxOC00OC4wODcwMzYtMTEuNDg4NTI2IDE2LjQyNTExLTIyLjA5NTAzMiAyOC41NDgwOTUtMzEuODA1OTY5IDM2LjM3ODA1MS05LjcwMjAyNyA3LjgxMjAxMi0xOS43MjM1MTEgMTEuNzA4OTg1LTMwLjA3ODEyNSAxMS43MDg5ODUtMTAuMDk3OTAxIDAtMTguNjgzODk5LTQuNzI5NDkyLTI1Ljc2MjM5MS0xNC4yMTA5MzgtNy4wNzg2MTMtOS40ODE1MDYtMTAuNTkzMDE3LTIxLjEwOTU1OC0xMC41OTMwMTctMzQuOTExMDEgMC0xNy4yMjYwMTQgNC43Mjk0OTItMzMuNjYwMDM1IDE0LjIwMTkwNC00OS4yOTc1NzcgOS40OTA1NC0xNS42Mjg0NDkgMjEuNjQwNjI1LTI4LjI1NTQ2MyAzNi40NTkxMDctMzcuOTA3OTI5IDE0LjgxODQ4MS05LjY1MjU4OCAyNy45MzE1MTgtMTQuNDg1NDczIDM5LjI5Mzk0NS0xNC40ODU0NzMgMTQuMzY4NDY5IDAgMjQuNDI2MDg2IDYuNjEwNDczIDMwLjE3MjQ4NSAxOS44MTc5OTNsMzUuMjI2MDEzLTE5LjQ2NzEwMmg5LjY2NjAxNmwtMTUuMjE0NTM4IDUwLjQ5NDUzN2MtNy44MTE5NTEgMjUuNDAyNDM1LTExLjczMTUwNyA0Mi44MTMwMTktMTEuNzMxNTA3IDUyLjIzMTQ3NiAwIDkuODc3NTAyIDMuNDk2NTgyIDE0LjgxODQ4MSAxMC41MTIwMjQgMTQuODE4NDgxIDQuNDYzOTg5IDAgOS40MDQ5NjgtMi4zODA0MzIgMTQuODA5NTctNy4xNTQ5NjggNS40MDQ0MTktNC43NzQ1MzYgMTIuOTczNDUtMTIuMDQxOTkyIDIyLjczODQwNC0yMS44MDcwMDd2MTkuODEzNTM4em0tMTI2LjE2NjQ0MyA5LjQ5MDUzOWMxMS40ODg0MDMgMCAyMi4zMTU0My05Ljc5MTk5MiAzMi41MDM0NzktMjkuMzgwNjE1IDEwLjE3MDA0NC0xOS41OTc0MTIgMTUuMjUwNTQ5LTM3LjY3ODQwNiAxNS4yNTA1NDktNTQuMjIwMzk4IDAtNi40MjYwMjUtMS40NDkwOTYtMTEuNDYxNDg3LTQuMzA2NTE4LTE1LjA3NTAxMi0yLjg4NDU4My0zLjYzMTUzMS02LjczMTk5NS01LjQzMTUxOS0xMS41NDcwNTgtNS40MzE1MTktMTEuNDk3NDM3IDAtMjIuMzk2NDI0IDkuNzY1MDc2LTMyLjY2MDk1IDI5LjMwMzk1Ni0xMC4yODI1MzIgMTkuNTM5MDYyLTE1LjQzNDk5OCAzNy41MjEwNTctMTUuNDM0OTk4IDUzLjkzNzEzMyAwIDYuMjE0NDE3IDEuNTMwMDMgMTEuMjQwOTA2IDQuNTcxOTYxIDE1LjA5Mjg5NiAzLjA0MTk5MiAzLjg1MjA1MSA2LjkwMzAxNSA1Ljc3MzU1OSAxMS42MjM1MzUgNS43NzM1NTl6Ii8+PHBhdGggZD0ibTEwODEuNDEyOTY0IDUzNS43MTE0ODdjLTI4Ljg0NDk3MSAyOC4yNjQ1MjYtNTEuMDgzOTg1IDQyLjQwODAyLTY2LjcwODAwOCA0Mi40MDgwMi03LjAxNTQ0MiAwLTEyLjkzNzUtMi45NjEwNi0xNy43NTI1NjMtOC44NjA1OTYtNC44MTQ4ODEtNS45MjE4NzUtNy4yNDAzNTctMTMuMjUyMzgtNy4yNDAzNTctMjEuOTkxNDU1IDAtMTYuMjAwMDEyIDguNjg0OTM3LTM3LjkwNzg5OCAyNi4wMzI0NzEtNjUuMTQ2NDU0LTguNTA5NTgzIDQuMzY5NTM4LTE3LjgwNjQ1OCA3LjQwMjQzNi0yNy45MjI1NDcgOS4xMzA0NjMtNy40NzAwMzEgMTMuNzg3OTY0LTE5LjE5Njk2IDI4LjYxNTUzOS0zNS4xNjI5NjMgNDQuNDU1NTA1aC0zLjk1NTUwNnYtMTUuNDkzNDY5YzguOTU0OTU2LTkuMzA1OTY5IDE3LjA1OTQ0OC0xOS4zMDk1NyAyNC4yOTk5ODgtMjkuOTk3MDctOS44OTU1NjktNC4zNjk0MTYtMTQuODI3NDU0LTEwLjg2Mjg4NS0xNC44Mjc0NTQtMTkuNDY2OTggMC04Ljg2MDQ3NCAzLjAwNTk4Mi0xOC4zMDU5NyA5LjA1Mzk1NS0yOC4zNzI0MzcgNi4wMzAwMy0xMC4wNDQwMDYgMTQuMzI4MDAzLTE1LjA2NTk3OSAyNC45MDc1MzItMTUuMDY1OTc5IDguOTYzOTI4IDAgMTMuNDM2OTUxIDQuNTgwODcyIDEzLjQzNjk1MSAxMy43Nzg5MzEgMCA3LjI0MDUzOS0yLjU4MzAwOCAxNy41NzcwMjYtNy43NjI1MTIgMzEuMDI3NTg4IDE5LjA3MTA0NS0yLjA3NDUyNCAzNS43MzQ1NTgtMTYuNjU0NjAyIDQ5Ljk5MDUzOS00My43ODA1MThsMTUuNjc4MTAxLS42OTMxMTUtMTYuMDI5MDUzIDQ0LjEyMjYyYy02LjY2MDAzNCAxOC42MTY0NTUtMTAuOTcwOTQ3IDMxLjI5NzQyNC0xMi45MTk1NTYgMzguMDExNDQ0LTEuOTQ4NjA4IDYuNzE0MDE5LTIuOTM0MDgyIDEyLjY3MjAyNy0yLjkzNDA4MiAxNy44MzM1ODcgMCA0LjgzMjg4NiAxLjEyNSA4LjY5Mzg0OCAzLjM1NzA1NiAxMS41NDY4NzUgMi4yNDEwODkgMi44OTM1NTUgNS4yNjUwMTUgNC4zMTU1NTIgOS4wNTM5NTUgNC4zMTU1NTIgNC4xMzA5ODIgMCA4LjEwNDYxNC0xLjQxMjk2NCAxMS44OTM1NTUtNC4yMTIwMzYgMy43ODkwNjItMi44Mzk1MzkgMTIuMjkzOTQ1LTEwLjYxNTQ3OSAyNS41MTUwMTQtMjMuMzY4NDA4djE5LjgxNzkzMnoiLz48cGF0aCBkPSJtMTI1MC42NzYwMjUgNTM1LjcxMTQ4N2MtMjYuNTQxMDE1IDI4LjA1MzAzOS00OS4zMDY1MTggNDIuMDY1OTc5LTY4LjI1NTk4MSA0Mi4wNjU5NzktNy42OTk0NjMgMC0xMy45MDUwMjktMi43MDAwNzMtMTguNjE2NDU1LTguMTA0NDkyLTQuNzIwNTgxLTUuMzk1NTA4LTcuMDc0MDk3LTEyLjYzMTUzMS03LjA3NDA5Ny0yMS43MDgwMDggMC0xMi4yOTQwMDcgNS4wNjI1LTMxLjA4NTkzOCAxNS4xNzg1ODktNTYuMzUzNDI0IDUuMzk1NTA4LTEzLjU2MzAxOSA4LjEwNDQ5Mi0yMi4xOTQwMzEgOC4xMDQ0OTItMjUuODU3MDI1IDAtMy42ODEwOTItMS40NDg5NzQtNS41MjE1NzYtNC4zMDY1MTgtNS41MjE1NzYtMS42MDY1NjggMC0zLjc0NDAxOS44MTAwODktNi4zODA5ODIgMi40MDc1MDEtMi40MjU1MzcgMS42MDY1MDYtNS4yMzgwMzcgMy44NjU1MzktOC40NTU1NjYgNi43MzIwMjUtMi44NjY0NTUgMi42MzY5OTMtNi4wOTMwMTggNS44NTQ0NjItOS42NTI0NjYgOS42MzQ0Ni0zLjEwOTQ5NyAzLjI0NDUzOC02LjQ0Mzk3IDYuOTE2NTk2LTkuOTg1NTk2IDExLjAzODUxNGwtOS42NjU4OTMgMTEuMjE0MDE5Yy00LjI0MzQwOCA1LjE2NjA0Ny02Ljg4OTUyNyAxMC42MTU1NC03LjkyMDA0NCAxNi4zNjY0NTYtMS43MzI1NDQgOS43NjUwNzUtMi44NzU0ODggMTguNzM4MDM3LTMuNDU2MDU1IDI2LjkwNTUxNy0uMzUwOTUyIDYuMDc1MDEyLS41MTc0NTYgMTQuMjgzMDgxLS41MTc0NTYgMjQuNjQ2NjA3bC0zOC4wOTI0MDcgOC45NDU4NjFjLTEuMjU1NDkzLTE1LjUxMTQxMy0xLjg5OTA0OC0yNy4wNjI4NjYtMS44OTkwNDgtMzQuNjM2NDEzIDAtMTguNDk5NDUxIDIuMTU1NTE4LTM2LjAyNjkxNyA2LjQ3MDk0Ny01Mi41NjkwMzEgNC4zMDY1MTktMTYuNTU5OTk4IDExLjIyMzE0NS0zNS4xNjI5OTQgMjAuNzY3NDU2LTU1Ljg1Mzk0M2w0Mi4wNDgwOTYtOC4wOTU1ODFjLTguODQyNDA3IDIzLjc5MTU5Ni0xNC42NDI5NDQgNDIuNTExNTk3LTE3LjQwMTQ4OSA1Ni4xNzgwNCAxOC44NDU5NDctMjEuMDIzOTg3IDMzLjc4NjAxMS0zNS41NzcwMjcgNDQuODYwNDczLTQzLjY5MDQzIDExLjA1NjUxOS04LjEwNDYxNCAyMC45MDI0NjYtMTIuMTM2NTk3IDI5LjUwNjU5Mi0xMi4xMzY1OTcgNS44NDUzMzcgMCAxMC43MzIzIDIuMjA1MTA5IDE0LjYyNSA2LjYxOTU2OCAzLjkxMDQwMSA0LjQxODk0NSA1Ljg1NDM3IDkuOTY3NDY4IDUuODU0MzcgMTYuNjAwNDY0IDAgMTEuMDIwNTA4LTQuOTQwOTE4IDI5LjE3ODA0LTE0LjgwOTU3IDU0LjQ2ODAxOC02Ljc4NTg4OSAxNy4zNDMwMTctMTAuMTc4OTU1IDI4LjU5NzUzNC0xMC4xNzg5NTUgMzMuNzk1MDQ0IDAgNi45MTY0NDIgMi44MjE2NTUgMTAuMzcyNDk3IDguNDY0NiAxMC4zNzI0OTcgOC40MDE0ODkgMCAyMi4wMDkzOTktMTEuMDkyNTI5IDQwLjc4Nzk2My0zMy4yNjg1NTV6Ii8+PC9nPjxwYXRoIGZpbGw9Im5vbmUiIGQ9Im02OTIuNzQzNDY5IDI5NS4yNTg1MTRoMTAxMy41ODkwNTF2Mzc3Ljc2NjAyMmgtMTAxMy41ODkwNTF6Ii8+PHRleHQgeT0iMzcwIiB4PSI2ODgiIGZvbnQtc2l6ZT0iMTAzLjg1Nzc1IiBmb250LWZhbWlseT0iSGVsdmV0aWNhIiBmaWxsPSIjZmZmIj5zY2lraXQ8L3RleHQ+PHBhdGggZmlsbD0ibm9uZSIgZD0ibTEwMTUuMDU1OTY5IDYyMC45MDU1MThoMTQ2NC40NDQwMzF2MTkzLjMzMzU1N2gtMTQ2NC40NDQwMzF6Ii8+PC9zdmc+;" parent="1" vertex="1">
 <mxGeometry x="780" y="-110" width="166.92" height="90" as="geometry" />
 </mxCell>
 </UserObject>
 <mxCell id="ke5fKqay8JjYpE_cKGV5-48" value="&lt;span style=&quot;font-size: 32px;&quot;&gt;&lt;font face=&quot;Georgia&quot; style=&quot;font-size: 32px;&quot;&gt;scikit-learn&lt;/font&gt;&lt;/span&gt;&lt;div style=&quot;font-size: 32px;&quot;&gt;&lt;span style=&quot;font-size: 32px;&quot;&gt;&lt;font face=&quot;Georgia&quot; style=&quot;font-size: 32px;&quot;&gt;algorithm cheat sheet&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;" style="text;html=1;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=32;fontStyle=1" parent="1" vertex="1">
 <mxGeometry x="567.5" y="-60" width="375" height="90" as="geometry" />
 </mxCell>
 <mxCell id="pls1sffmf6aF35CQXLI_-1" value="&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;TRY&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;NEXT&lt;br&gt;&lt;/font&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#FFCCCC;" parent="1" vertex="1" connectable="0">
 <mxGeometry x="-195.0046510562188" y="210.00163918393565" as="geometry">
 <mxPoint x="-5" y="-109" as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="pls1sffmf6aF35CQXLI_-4" value="&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;TRY&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;NEXT&lt;br&gt;&lt;/font&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#FFCCCC;" parent="1" vertex="1" connectable="0">
 <mxGeometry x="29.99534894378121" y="165.00163918393565" as="geometry">
 <mxPoint x="-5" y="-109" as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="pls1sffmf6aF35CQXLI_-6" value="&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;TRY&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;NEXT&lt;br&gt;&lt;/font&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#FFCCCC;" parent="1" vertex="1" connectable="0">
 <mxGeometry x="-60.00465105621879" y="320.00163918393565" as="geometry">
 <mxPoint x="-5" y="-109" as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="GKrketicI9-l3KOTIM3X-1" value="&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;TRY&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font color=&quot;#ff9933&quot;&gt;NEXT&lt;br&gt;&lt;/font&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#009900;fontSize=12;fontStyle=1;labelBackgroundColor=#e5ccff;" vertex="1" connectable="0" parent="1">
 <mxGeometry x="-218.01510562188" y="485.00163918393565" as="geometry">
 <mxPoint x="-5" y="-109" as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="GKrketicI9-l3KOTIM3X-2" value="&lt;div&gt;&lt;font&gt;TRY&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font&gt;NEXT&lt;br&gt;&lt;/font&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#ff9933;fontSize=12;fontStyle=1;labelBackgroundColor=#cce5ff;" vertex="1" connectable="0" parent="1">
 <mxGeometry x="906.9953489437812" y="347.00163918393565" as="geometry">
 <mxPoint x="-5" y="-109" as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="GKrketicI9-l3KOTIM3X-4" value="&lt;div&gt;&lt;font&gt;TRY&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font&gt;NEXT&lt;br&gt;&lt;/font&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#ff9933;fontSize=12;fontStyle=1;labelBackgroundColor=#ffffcc;" vertex="1" connectable="0" parent="1">
 <mxGeometry x="823.9953489437812" y="602.0016391839356" as="geometry">
 <mxPoint x="-5" y="-109" as="offset" />
 </mxGeometry>
 </mxCell>
 <mxCell id="GKrketicI9-l3KOTIM3X-5" value="&lt;div&gt;&lt;font&gt;TRY&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font&gt;NEXT&lt;br&gt;&lt;/font&gt;&lt;/div&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Georgia;fontColor=#ff9933;fontSize=12;fontStyle=1;labelBackgroundColor=#ffffcc;" vertex="1" connectable="0" parent="1">
 <mxGeometry x="566.4953489437812" y="597.0016391839356" as="geometry">
 <mxPoint x="-5" y="-109" as="offset" />
 </mxGeometry>
 </mxCell>
 </root>
 </mxGraphModel>
 </diagram>
</mxfile>
" resource="https://app.diagrams.net/#Hlesteve%2Fdrawio-playground%2Fmain%2Fml_map.svg#%7B%22pageId%22%3A%22prGmxGi5H6ogpCY3go2q%22%7D"><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="ke5fKqay8JjYpE_cKGV5-45"><g><rect x="876" y="505" width="530" height="250" rx="37.5" ry="37.5" fill="#ffffcc" stroke="#b3b3b3" stroke-width="3" pointer-events="all"/></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-26"><g><rect x="866" y="185" width="540" height="290" rx="43.5" ry="43.5" fill="#cce5ff" stroke="#b3b3b3" stroke-width="3" pointer-events="all"/></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-13"><g><rect x="16" y="445" width="560" height="290" rx="43.5" ry="43.5" fill="#e5ccff" stroke="#b3b3b3" stroke-width="3" pointer-events="all"/></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-66"><g><rect x="16" y="95" width="560" height="310" rx="46.5" ry="46.5" fill="#ffcccc" stroke="#b3b3b3" stroke-width="3" pointer-events="all"/></g></g><g data-cell-id="p-bOygNmazyrNX3Cmdq1-1"><g><ellipse cx="836" cy="130" rx="40" ry="35" fill="#ffe6cc" stroke="#ff9933" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 130px; margin-left: 797px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 20px;"><b>START</b></font></div></div></div></foreignObject><text x="836" y="135" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">START</text></switch></g></g></g><g data-cell-id="p-bOygNmazyrNX3Cmdq1-2"><g><ellipse cx="756" cy="240" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 240px; margin-left: 717px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">>50<div><span style="font-size: 10px; background-color: initial;">samples</span></div></div></div></div></foreignObject><text x="756" y="245" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">>50...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-1"><g><ellipse cx="646" cy="170" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 170px; margin-left: 607px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 10px;">get</font><div>more</div><div>data</div></div></div></div></foreignObject><text x="646" y="175" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">get...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-5"><g><path d="M 727.72 215.25 L 684.88 198.82" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 677.42 195.95 L 686.32 195.08 L 683.45 202.55 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-6"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 209px; margin-left: 706px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="706" y="213" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-7"><g><ellipse cx="726" cy="350" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 350px; margin-left: 687px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 10px;">predicting a</font><div>category</div></div></div></div></foreignObject><text x="726" y="355" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">predicting...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-8"><g><path d="M 756 275 L 732.81 305.92" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 728.01 312.32 L 729.61 303.52 L 736.01 308.32 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-9"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 293px; margin-left: 746px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="746" y="296" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-10"><g><ellipse cx="636" cy="440" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 440px; margin-left: 597px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div><span style="font-size: 10px;">do you have</span></div><div>labeled</div><div>data</div></div></div></div></foreignObject><text x="636" y="445" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">do you hav...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-11"><g><path d="M 697.72 374.75 L 671.51 406.49" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 666.42 412.66 L 668.43 403.95 L 674.6 409.04 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-12"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 393px; margin-left: 686px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="686" y="396" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-13"><g><ellipse cx="800" cy="450" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 450px; margin-left: 761px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div><span style="font-size: 10px;">predicting a</span></div><div>quantity</div></div></div></div></foreignObject><text x="800" y="455" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">predicting...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-14"><g><path d="M 754.28 374.75 L 768.01 414.52" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 770.62 422.08 L 764.23 415.82 L 771.79 413.21 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-15"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 395px; margin-left: 764px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="764" y="399" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-17"><g><ellipse cx="756" cy="560" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 560px; margin-left: 717px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div><span style="font-size: 10px;">just</span></div><div>looking</div></div></div></div></foreignObject><text x="756" y="565" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">just...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-18"><g><path d="M 800 485 L 787.67 524.41" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 785.29 532.05 L 783.86 523.22 L 791.49 525.61 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-19"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 506px; margin-left: 796px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="796" y="510" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-21"><g><ellipse cx="760" cy="670" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 670px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div><span style="font-size: 10px;">predicting</span></div><div>structure</div></div></div></div></foreignObject><text x="760" y="675" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">predicting...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-22"><g><path d="M 756 595 L 758.87 623.7" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 759.67 631.66 L 754.89 624.1 L 762.85 623.3 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-23"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 611px; margin-left: 760px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="760" y="615" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-24"><g><path d="M 807.72 154.75 L 764.14 197.09" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 758.41 202.66 L 761.36 194.22 L 766.93 199.96 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-26"><g><ellipse cx="626" cy="660" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 660px; margin-left: 587px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div><span style="background-color: initial;">tough</span><br /></div><div><span style="background-color: initial;">luck</span></div></div></div></div></foreignObject><text x="626" y="665" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">tough...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-27"><g><path d="M 720 670 L 677.16 662.07" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 669.3 660.61 L 677.89 658.13 L 676.44 666 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-28"><g><ellipse cx="516" cy="330" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 330px; margin-left: 477px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 16px;"><100K</font><div style=""><span style=""><font style="font-size: 10px;">samples</font></span></div></div></div></div></foreignObject><text x="516" y="335" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle"><100K...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-29"><g><path d="M 607.72 415.25 L 552.5 362.59" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 546.71 357.06 L 555.26 359.69 L 549.74 365.48 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-30"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 392px; margin-left: 581px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="581" y="396" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-33"><a xlink:href="./modules/sgd.html#classification"><g><rect x="440" y="185" width="80" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 210px; margin-left: 441px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">SGD<div>Classifier</div></div></div></div></foreignObject><text x="480" y="215" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">SGD...</text></switch></g></g></a></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-34"><g><path d="M 516 295 L 502.93 245.97" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 500.86 238.24 L 506.79 244.94 L 499.06 247 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-35"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 272px; margin-left: 508px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #FFCCCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 204, 204); white-space: nowrap;">NO</div></div></div></foreignObject><text x="508" y="275" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-36"><a xlink:href="./modules/svm.html#classification"><g><rect x="356" y="335" width="60" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 360px; margin-left: 357px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Linear<div>SVC</div></div></div></div></foreignObject><text x="386" y="365" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Linear...</text></switch></g></g></a></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-38"><g><path d="M 476 330 L 426.16 354.92" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 419 358.5 L 424.37 351.34 L 427.94 358.5 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-39"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 344px; margin-left: 453px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #FFCCCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 204, 204); white-space: nowrap;">YES</div></div></div></foreignObject><text x="453" y="348" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-42"><g><ellipse cx="236" cy="330" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 330px; margin-left: 197px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div><span style="background-color: initial;">text</span><br /></div><div>data</div></div></div></div></foreignObject><text x="236" y="335" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">text...</text></switch></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-43"><g><path d="M 356 347.5 L 287.09 332.43" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 279.28 330.72 L 287.95 328.52 L 286.24 336.33 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-46"><a xlink:href="./modules/kernel_approximation.html"><g><rect x="250" y="125" width="120" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 150px; margin-left: 251px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Kernel<div>Approximation</div></div></div></div></foreignObject><text x="310" y="155" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Kernel...</text></switch></g></g></a></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-47"><g><path d="M 440 197.5 L 380.16 167.58" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 373 164 L 381.94 164 L 378.37 171.16 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-49"><a xlink:href="./modules/neighbors.html"><g><rect x="216" y="205" width="100" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 230px; margin-left: 217px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">KNeighbors<div>Classifier</div></div></div></div></foreignObject><text x="266" y="235" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">KNeighbors...</text></switch></g></g></a></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-50"><g><path d="M 236 295 L 239.59 266.27" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 240.58 258.33 L 243.56 266.76 L 235.62 265.77 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-51"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 279px; margin-left: 237px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #FFCCCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 204, 204); white-space: nowrap;">NO</div></div></div></foreignObject><text x="237" y="283" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-52"><a xlink:href="./modules/svm.html#classification"><g><rect x="57.49" y="180" width="90" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 195px; margin-left: 58px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">SVC</div></div></div></foreignObject><text x="102" y="200" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">SVC</text></switch></g></g></a></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-54"><a xlink:href="./modules/ensemble.html"><g><rect x="57.49" y="210" width="90" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 235px; margin-left: 58px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Ensemble<div>Classifiers</div></div></div></div></foreignObject><text x="102" y="240" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Ensemble...</text></switch></g></g></a></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-56"><g><path d="M 216 230 L 158.78 223.74" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 150.82 222.86 L 159.21 219.76 L 158.34 227.71 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-58"><a xlink:href="./modules/naive_bayes.html"><g><rect x="72.49" y="295" width="60" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 320px; margin-left: 73px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Naive<div>Bayes</div></div></div></div></foreignObject><text x="102" y="325" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Naive...</text></switch></g></g></a></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-60"><g><path d="M 196 330 L 143.71 321.77" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 135.8 320.52 L 144.33 317.81 L 143.08 325.72 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-61"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 328px; margin-left: 171px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #FFCCCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 204, 204); white-space: nowrap;">YES</div></div></div></foreignObject><text x="171" y="332" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="lidfMP7FeTC4yG16FXWw-62"><g><rect x="36" y="115" width="170" height="40" fill="none" stroke="none" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 168px; height: 1px; padding-top: 135px; margin-left: 37px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 24px; font-family: "Helvetica"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;"><span style="font-size: 24px;"><font style="font-size: 24px;" face="Georgia">classification</font></span></div></div></div></foreignObject><text x="121" y="142" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="24px" text-anchor="middle" font-weight="bold">classification</text></switch></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-10"><g><ellipse cx="440" cy="518" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 518px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div style="font-size: 12px;"><font style="font-size: 12px;"><span style="background-color: initial; font-size: 12px;">number of</span><br style="font-size: 12px;" /></font></div><div style="font-size: 12px;"><font style="font-size: 12px;">categories</font></div><div style="font-size: 12px;"><font style="font-size: 12px;">known</font></div></div></div></div></foreignObject><text x="440" y="522" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="12px" text-anchor="middle">number of...</text></switch></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-11"><g><path d="M 596 440 L 478.76 488.88" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 471.38 491.96 L 477.22 485.19 L 480.3 492.57 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-12"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 464px; margin-left: 546px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #E5CCFF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="546" y="467" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-14"><g><ellipse cx="504" cy="623" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 623px; margin-left: 465px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 16px;"><10K</font><div style=""><span style=""><font style="font-size: 10px;">samples</font></span></div></div></div></div></foreignObject><text x="504" y="628" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle"><10K...</text></switch></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-15"><g><ellipse cx="286" cy="570" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 570px; margin-left: 247px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 16px;"><10K</font><div style=""><span style=""><font style="font-size: 10px;">samples</font></span></div></div></div></div></foreignObject><text x="286" y="575" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle"><10K...</text></switch></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-16"><g><path d="M 544 623 L 586.65 632.73" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 594.45 634.51 L 585.76 636.63 L 587.54 628.83 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-17"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 626px; margin-left: 566px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #E5CCFF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="566" y="630" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-18"><g><path d="M 468.28 542.75 L 474.21 587" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 475.27 594.93 L 470.24 587.53 L 478.17 586.47 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-19"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 566px; margin-left: 474px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #E5CCFF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="474" y="569" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-20"><g><path d="M 400 518 L 325.1 541.81" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 317.48 544.24 L 323.89 538 L 326.32 545.62 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-21"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 532px; margin-left: 366px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #E5CCFF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="366" y="535" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-22"><a xlink:href="./modules/clustering.html#mean-shift"><g><rect x="331" y="655" width="90" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 670px; margin-left: 332px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">MeanShift</div></div></div></foreignObject><text x="376" y="675" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">MeanShift</text></switch></g></g></a></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-23"><a xlink:href="./modules/mixture.html#bgmm"><g><rect x="331" y="685" width="90" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 700px; margin-left: 332px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">VBGMM</div></div></div></foreignObject><text x="376" y="705" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">VBGMM</text></switch></g></g></a></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-24"><g><path d="M 475.72 647.75 L 430.97 672.08" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 423.95 675.9 L 429.06 668.56 L 432.89 675.59 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-25"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 662px; margin-left: 455px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #E5CCFF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="455" y="666" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-26"><a xlink:href="./modules/clustering.html#mini-batch-k-means"><g><rect x="191" y="645" width="90" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 670px; margin-left: 192px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">MiniBatch<div>KMeans</div></div></div></div></foreignObject><text x="236" y="675" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">MiniBatch...</text></switch></g></g></a></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-27"><g><path d="M 257.72 594.75 L 240.5 634.58" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 237.33 641.92 L 236.83 632.99 L 244.18 636.16 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-28"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 616px; margin-left: 251px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #E5CCFF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="251" y="620" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-29"><g><rect x="38.98" y="605" width="138.51" height="40" fill="none" stroke="none" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 137px; height: 1px; padding-top: 625px; margin-left: 40px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 24px; font-family: "Helvetica"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;"><span style="font-size: 24px;"><font style="font-size: 24px;" face="Georgia">clustering</font></span></div></div></div></foreignObject><text x="108" y="632" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="24px" text-anchor="middle" font-weight="bold">clustering</text></switch></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-30"><a xlink:href="./modules/clustering.html#k-means"><g><rect x="189.49" y="465" width="78.51" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 77px; height: 1px; padding-top: 480px; margin-left: 190px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">KMeans</div></div></div></foreignObject><text x="229" y="485" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">KMeans</text></switch></g></g></a></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-31"><g><path d="M 257.72 545.25 L 250.45 506.16" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 248.99 498.3 L 254.38 505.43 L 246.52 506.89 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-32"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 525px; margin-left: 252px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #E5CCFF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="252" y="529" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-33"><a xlink:href="./modules/clustering.html#spectral-clustering"><g><rect x="36" y="505" width="90" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 530px; margin-left: 37px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div>Spectral</div><div>Clustering</div></div></div></div></foreignObject><text x="81" y="535" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Spectral...</text></switch></g></g></a></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-34"><a xlink:href="./modules/mixture.html"><g><rect x="36" y="555" width="90" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 570px; margin-left: 37px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">GMM</div></div></div></foreignObject><text x="81" y="575" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">GMM</text></switch></g></g></a></g><g data-cell-id="ZhISbIufsCQTaueA5Ebt-35"><g><path d="M 189.49 487.5 L 136.27 512.65" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 129.03 516.07 L 134.56 509.03 L 137.97 516.27 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-1"><g><ellipse cx="926" cy="370" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 370px; margin-left: 887px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 16px;"><100K</font><div style=""><span style=""><font style="font-size: 10px;">samples</font></span></div></div></div></div></foreignObject><text x="926" y="375" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle"><100K...</text></switch></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-2"><g><path d="M 828.28 425.25 L 877.8 377.85" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 883.58 372.32 L 880.56 380.74 L 875.03 374.96 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-3"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 402px; margin-left: 851px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="851" y="406" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-5"><g><ellipse cx="1076" cy="380" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 380px; margin-left: 1037px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div style="font-size: 12px;">few features</div><div style="font-size: 12px;">should be</div><div style="font-size: 12px;">important</div></div></div></div></foreignObject><text x="1076" y="384" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="12px" text-anchor="middle">few features...</text></switch></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-6"><g><path d="M 966 370 L 1024.76 378.39" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1032.68 379.53 L 1024.19 382.35 L 1025.33 374.43 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-7"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 373px; margin-left: 995px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #CCE5FF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(204, 229, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="995" y="376" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-8"><a xlink:href="./modules/sgd.html#regression"><g><rect x="976" y="260" width="90" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 285px; margin-left: 977px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div>SGD</div><div>Regressor</div></div></div></div></foreignObject><text x="1021" y="290" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">SGD...</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-9"><g><path d="M 954.28 345.25 L 989.62 317.08" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 995.88 312.09 L 992.12 320.21 L 987.13 313.95 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-10"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 330px; margin-left: 972px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #CCE5FF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(204, 229, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="972" y="333" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-13"><a xlink:href="./modules/linear_model.html#lasso"><g><rect x="1106" y="230" width="90" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 245px; margin-left: 1107px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Lasso</div></div></div></foreignObject><text x="1151" y="250" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Lasso</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-14"><a xlink:href="./modules/linear_model.html#elastic-net"><g><rect x="1106" y="260" width="90" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 88px; height: 1px; padding-top: 275px; margin-left: 1107px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">ElasticNet</div></div></div></foreignObject><text x="1151" y="280" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">ElasticNet</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-15"><g><path d="M 1104.28 355.25 L 1124.55 300.64" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1127.33 293.14 L 1128.3 302.04 L 1120.8 299.25 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-16"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 329px; margin-left: 1113px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #CCE5FF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(204, 229, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="1113" y="332" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-17"><a xlink:href="./modules/linear_model.html#ridge-regression"><g><rect x="1176" y="395" width="140" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 410px; margin-left: 1177px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">RidgeRegression</div></div></div></foreignObject><text x="1246" y="415" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">RidgeRegression</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-18"><a xlink:href="./modules/svm.html#regression"><g><rect x="1176" y="425" width="140" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 440px; margin-left: 1177px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">SVR<font style="font-size: 12px;">(kernel="linear")</font></div></div></div></foreignObject><text x="1246" y="445" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">SVR(kernel="linea...</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-19"><g><path d="M 1116 380 L 1165.84 404.92" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1173 408.5 L 1164.06 408.5 L 1167.63 401.34 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-20"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 391px; margin-left: 1142px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #CCE5FF; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(204, 229, 255); white-space: nowrap;">NO</div></div></div></foreignObject><text x="1142" y="394" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-21"><a xlink:href="./modules/svm.html#regression"><g><rect x="1266" y="245" width="120" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 260px; margin-left: 1267px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">SVR<font style="font-size: 12px;">(kernel="rbf")</font></div></div></div></foreignObject><text x="1326" y="265" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">SVR(kernel="rbf...</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-23"><a xlink:href="./modules/ensemble.html"><g><rect x="1266" y="275" width="120" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 300px; margin-left: 1267px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Ensemble<div>Regressors</div></div></div></div></foreignObject><text x="1326" y="305" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Ensemble...</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-24"><g><path d="M 1281 395 L 1293.62 336.1" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1295.3 328.28 L 1297.53 336.94 L 1289.71 335.26 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-27"><g><rect x="886" y="205" width="140" height="40" fill="none" stroke="none" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 225px; margin-left: 887px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 24px; font-family: "Helvetica"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;"><span style="font-size: 24px;"><font style="font-size: 24px;" face="Georgia">regression</font></span></div></div></div></foreignObject><text x="956" y="232" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="24px" text-anchor="middle" font-weight="bold">regression</text></switch></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-28"><a xlink:href="./modules/decomposition.html#principal-component-analysis-pca"><g><rect x="901" y="535" width="110" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 108px; height: 1px; padding-top: 560px; margin-left: 902px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div><span style="background-color: initial;">Ramdomized</span><br /></div><div><span style="background-color: initial;">PCA</span></div></div></div></div></foreignObject><text x="956" y="565" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Ramdomized...</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-29"><g><path d="M 796 560 L 889.65 560" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 897.65 560 L 889.65 564 L 889.65 556 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-30"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 559px; margin-left: 840px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: rgb(255, 255, 255); "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 255); white-space: nowrap;">YES</div></div></div></foreignObject><text x="840" y="562" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-31"><g><ellipse cx="941" cy="688" rx="40" ry="35" fill="#cce5ff" stroke="#3399ff" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 688px; margin-left: 902px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><font style="font-size: 16px;"><10K</font><div style=""><span style=""><font style="font-size: 10px;">samples</font></span></div></div></div></div></foreignObject><text x="941" y="693" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle"><10K...</text></switch></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-32"><g><path d="M 956 585 L 943.45 641.91" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 941.72 649.72 L 939.54 641.05 L 947.35 642.77 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-34"><a xlink:href="./modules/kernel_approximation.html"><g><rect x="1056" y="675" width="120" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 700px; margin-left: 1057px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Kernel<div>Approximation</div></div></div></div></foreignObject><text x="1116" y="705" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Kernel...</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-35"><g><path d="M 981 688 L 1044.65 687.58" fill="none" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1052.65 687.52 L 1044.67 691.58 L 1044.62 683.58 Z" fill="#ff3333" stroke="#ff3333" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-36"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 686px; margin-left: 1011px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #FF3333; background-color: #FFFFCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 51, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 204); white-space: nowrap;">NO</div></div></div></foreignObject><text x="1011" y="690" fill="#FF3333" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">NO</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-37"><a xlink:href="./modules/manifold.html#isomap"><g><rect x="1066" y="555" width="100" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 570px; margin-left: 1067px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">IsoMap</div></div></div></foreignObject><text x="1116" y="575" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">IsoMap</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-38"><a xlink:href="./modules/manifold.html#spectral-embedding"><g><rect x="1066" y="585" width="100" height="50" rx="7.5" ry="7.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 610px; margin-left: 1067px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;"><div>Spectral</div><div>Embedding</div></div></div></div></foreignObject><text x="1116" y="615" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">Spectral...</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-39"><g><path d="M 969.28 663.25 L 1055.54 626.91" fill="none" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1062.91 623.8 L 1057.09 630.59 L 1053.98 623.22 Z" fill="#009900" stroke="#009900" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-40"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 645px; margin-left: 1009px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #FFFFCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 204); white-space: nowrap;">YES</div></div></div></foreignObject><text x="1009" y="649" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">YES</text></switch></g></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-41"><a xlink:href="./modules/manifold.html#locally-linear-embedding"><g><rect x="1246" y="615" width="50" height="30" rx="4.5" ry="4.5" fill="#ccffe6" stroke="#00cc66" stroke-width="5" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 48px; height: 1px; padding-top: 630px; margin-left: 1247px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 16px; font-family: "Georgia"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">LLE</div></div></div></foreignObject><text x="1271" y="635" fill="rgb(0, 0, 0)" font-family=""Georgia"" font-size="16px" text-anchor="middle">LLE</text></switch></g></g></a></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-42"><g><path d="M 1166 610 L 1234.99 627.25" fill="none" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1242.75 629.19 L 1234.01 631.13 L 1235.96 623.37 Z" fill="#ff9933" stroke="#ff9933" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-44"><g><rect x="1196" y="667" width="210" height="65" fill="none" stroke="none" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 208px; height: 1px; padding-top: 700px; margin-left: 1197px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 24px; font-family: "Helvetica"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;"><span style="font-size: 24px;"><font style="font-size: 24px;" face="Georgia">dimensionality</font></span><div><span style="font-size: 24px;"><font style="font-size: 24px;" face="Georgia">reduction</font></span></div></div></div></div></foreignObject><text x="1301" y="707" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="24px" text-anchor="middle" font-weight="bold">dimensionality...</text></switch></g></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-47"><g><image x="1165.5" y="14.5" width="166.92" height="90" xlink:href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjUxIiB2aWV3Qm94PSIwIDAgMTI1MSA2NzUiIGhlaWdodD0iNjc1Ij48cGF0aCBmaWxsPSIjZjg5OTM5IiBkPSJtOTU5Ljk0MDA2MyA1NzMuMDY1OTc5YzE1Mi40MTA0MDEtMTUyLjQwMTU1IDE3Ny43NDA5NjctMzc0LjE1NzAxMyA1Ni41NzM5MTQtNDk1LjMxNTA2My0xMjEuMTQ4OTg3LTEyMS4xNDQ0NzEtMzQyLjg5NTM4Ni05NS44MTg0ODItNDk1LjI5NjkzNiA1Ni41NzM5NzQtMTUyLjQwMTU1IDE1Mi4zOTcxMjUtMTA4LjMxNDk3MiA0NDMuNTU2MDkxLTU2LjU2NDk3MiA0OTUuMzE1MDAzIDQxLjgxODQ4MiA0MS44MTg1NDIgMzQyLjg5NTUzOCA5NS44MTg1NDIgNDk1LjI4Nzk5NC01Ni41NzM5MTR6Ii8+PHBhdGggZmlsbD0iIzM0OTljZCIgZD0ibTMzNC41NzUwNDMgMzUyLjg0OTU0OGMtODguNDE1OTg1LTg4LjQxNjA0Ni0yMTcuMDg5MDM1LTEwMy4xMzU1MjgtMjg3LjQwMTUzNS0zMi44Mjc1NzUtNzAuMjk0NDc2IDcwLjI5OTA0MS01NS41OTc0ODEgMTk4Ljk4OTk5IDMyLjgzNjQ4NyAyODcuMzkyNTc4IDg4LjQzNDAzNiA4OC40NDI5OTMgMjU3LjM3NzU0OCA2Mi44NjA0NzMgMjg3LjM4MzUyOSAzMi44Mjc0NTMgMjQuMjgxOTgzLTI0LjI0MTQ1NSA1NS42MjQ0ODEtMTk4Ljk2NzQ2OC0zMi44MTg0ODEtMjg3LjM5MjQ1NnoiLz48ZyBmaWxsPSIjMDEwMTAxIj48cGF0aCBkPSJtNjM5LjY0MzQ5NCA1MzUuNzExNDg3Yy0xNS42MTk1MDcgMTQuMzc3NTAyLTI5LjMyMjAyMiAyNC45ODg1MjUtNDEuMDk4NDUgMzEuODA1OTY5LTExLjc3NjU1IDYuODQwMDg4LTIzLjAwODU0NSAxMC4yNTU0OTMtMzMuNjk2MDQ1IDEwLjI1NTQ5My0xMi4yOTM5NDUgMC0yMi4yMTIwMzYtNC43NjU1MDMtMjkuNzMxNDQ1LTE0LjMwMDkwMy03LjUzMzAyLTkuNTQ0NTU2LTExLjI4NjAxMS0yMi4zNDI1MjktMTEuMjg2MDExLTM4LjQ0MzU0MyAwLTI0LjEyNDQ1IDUuMjI4OTQzLTUzLjA4NjQ4NiAxNS42ODY5NTEtODYuODU0NDYxIDEwLjQ0MDA2My0zMy43OTUwNDQgMjMuMTUyNTI3LTY0LjkzNTA4OSAzOC4wODM0OTYtOTMuNDI0NTYxbDQzLjc4MDQ1Ni0xNi4yMDg5NTRjMS4zNzI2Mi0uNDU5MTA2IDIuNDE2NTY1LS42OTI5NjIgMy4xMDk1NTgtLjY5Mjk2MiAzLjMyMTA0NSAwIDYuMDY1OTc5IDIuNDQ3ODc2IDguMTcyMDU5IDcuMzIxNDExIDIuMTI4NDE3IDQuODk2MDU3IDMuMTk5NDYyIDExLjQ3NDk0NSAzLjE5OTQ2MiAxOS43NDYwMDIgMCAyMy40NDA1ODItNS4zOTU1MDcgNDYuMTM0MDY0LTE2LjIwODkyMyA2OC4wODA1MDUtMTAuODA5MDgyIDIxLjk1NTQ3NS0yNy42OTMwNTQgNDUuMzg2OTYzLTUwLjY3MDA0NCA3MC4zMjE1MzQtLjkyMjU0NiAxMS45NTE5MDQtMS4zODE1MzEgMjAuMTU5OTEyLTEuMzgxNTMxIDI0LjY0NjQ4NCAwIDEwLjAwMzQxOCAxLjgzNTk5OSAxNy45MTg5NDUgNS41MTI1MTMgMjMuNzgyNDcxIDMuNjgwOTY5IDUuODcyNDk3IDguNTU4OTYgOC43ODg1NzQgMTQuNjUxOTc3IDguNzg4NTc0IDYuMjE0NDc4IDAgMTIuODE2MDQtMi4yMjMxNDUgMTkuODI3MDI2LTYuNzA1MTM5IDYuOTk3NTU5LTQuNDkwOTA2IDE3LjY4NTA1OS0xMy43ODc5NjQgMzIuMDQ0NDM0LTI3LjkzMTQ1OHYxOS44MTM1Mzh6bS02Ni4wMDU5ODItNjcuMzc4NDc5YzE0LjU4OTA1MS0xNi4yMjI1MzQgMjYuNDM3NS0zNC40MTYwMTYgMzUuNTA5NDYxLTU0LjU0NDQ5NSA5LjA3MjA4Mi0yMC4xMzc1MTIgMTMuNjAzNTc2LTM3LjQ1ODAwOCAxMy42MDM1NzYtNTEuOTcwNTUgMC00LjIzMDAxMS0uNjI1NTQ5LTcuNjY3OTA4LTEuODgxMDQyLTEwLjI1MDkxNi0xLjI2NDUyNy0yLjU4NzU1NS0yLjg4NDQ2MS0zLjg4ODA2MS00LjgzMzAwOC0zLjg4ODA2MS00LjIzNDQzNiAwLTEwLjQyMTkzNiAxMC41ODM5NTMtMTguNTI2NDg5IDMxLjc1NjUzLTguMTA0NDkyIDIxLjE2ODAzLTE2LjA2MDU0NyA1MC44MDUwMjQtMjMuODcyNDk4IDg4Ljg5NzQ5MnoiLz48cGF0aCBkPSJtNzY4LjU3NzU3NiA1MzUuNzExNDg3Yy0xNC41ODkwNTEgMTQuMzc3NTAyLTI3LjY4NDAyMSAyNC45ODg1MjUtMzkuMjk0MDA3IDMxLjgwNTk2OS0xMS42MTAwNDYgNi44NDAwODgtMjQuNDA4MDIgMTAuMjU1NDkzLTM4LjQzNDU3IDEwLjI1NTQ5My0xNS42Mjg0MTggMC0yOC4yMzc0MjctNC45OTk1MTEtMzcuODQ0OTcxLTE0Ljk4NDk4NS05LjU4OTQxNi0xMC4wMTI1MTItMTQuMzc3NDQxLTIzLjE1Njk4My0xNC4zNzc0NDEtMzkuNDc4NTE2IDAtMjQuMzUzOTQzIDguNDM3NS00Ni4zOTA0NzIgMjUuMzQ4NTExLTY2LjA5NTk0NyAxNi44NzUtMTkuNzE0NTY5IDM1LjYxMjk3Ni0yOS41NjUwNjMgNTYuMTc4MDM5LTI5LjU2NTA2MyAxMC42ODc1IDAgMTkuMjM3NDg4IDIuNzY3NjA4IDI1LjY4MTUxOSA4LjI3OTk5OCA2LjQzNDkzNiA1LjUyMTU3NiA5LjY1MjQwNSAxMi43NTMwODMgOS42NTI0MDUgMjEuNzE3MDcyIDAgMjMuNzkxNDQzLTI1LjI3NjQ5IDQzLjA4MzAzOC03NS44MzM5MjQgNTcuOTEwNDYxIDQuNTg5OTY2IDIyLjM5NjYwNyAxNi41OTU5NDcgMzMuNjEwNDc0IDM2LjAxODAwNiAzMy42MTA0NzQgNy41ODY4NTMgMCAxNC44MTg0ODEtMi4wMzg1MTMgMjEuNzA3ODg1LTYuMTA2NTA2IDYuOTA3NDcxLTQuMDg1OTM4IDE3LjI5ODA5Ni0xMy4xNDg5MjYgMzEuMjAzMDY0LTI3LjE1NzQ3MXYxOS44MDkwMjF6bS05MC4zMTUwNjQtMzEuODc4MDUyYzI5LjQwNzUzMi04LjI3OTk5OSA0NC4xMjI2Mi0yMy41NTI5MTcgNDQuMTIyNjItNDUuODQ1OTQ3IDAtMTEuMDI5NDgtNC4wMjc1ODgtMTYuNTQxOTkyLTEyLjA2MDEyLTE2LjU0MTk5Mi03LjU4Njk3NSAwLTE0LjgxODQ4MSA1Ljc2NDUyNi0yMS43MDgwMDggMTcuMzI1MDEyLTYuOTExOTI2IDExLjU0MjU0MS0xMC4zNTQ0OTIgMjYuNTU0NTA0LTEwLjM1NDQ5MiA0NS4wNjI5Mjd6Ii8+PHBhdGggZD0ibTk1Mi42NTQ0MTkgNTM1LjcxMTQ4N2MtMTguMzg2OTYzIDE3LjQ2NDUzOC0zMS41NDUwNDQgMjguODUzOTQzLTM5LjQ2NDkwNSAzNC4xNDYwNTctNy45MjkxMzggNS4yODI4OTgtMTUuNTExNTk3IDcuOTE5OTIyLTIyLjc1NjUzMSA3LjkxOTkyMi0xOC4xNTc1MzEgMC0yNi43MTIwMzYtMTYuMDI0NTM2LTI1LjY4MTUxOC00OC4wODcwMzYtMTEuNDg4NTI2IDE2LjQyNTExLTIyLjA5NTAzMiAyOC41NDgwOTUtMzEuODA1OTY5IDM2LjM3ODA1MS05LjcwMjAyNyA3LjgxMjAxMi0xOS43MjM1MTEgMTEuNzA4OTg1LTMwLjA3ODEyNSAxMS43MDg5ODUtMTAuMDk3OTAxIDAtMTguNjgzODk5LTQuNzI5NDkyLTI1Ljc2MjM5MS0xNC4yMTA5MzgtNy4wNzg2MTMtOS40ODE1MDYtMTAuNTkzMDE3LTIxLjEwOTU1OC0xMC41OTMwMTctMzQuOTExMDEgMC0xNy4yMjYwMTQgNC43Mjk0OTItMzMuNjYwMDM1IDE0LjIwMTkwNC00OS4yOTc1NzcgOS40OTA1NC0xNS42Mjg0NDkgMjEuNjQwNjI1LTI4LjI1NTQ2MyAzNi40NTkxMDctMzcuOTA3OTI5IDE0LjgxODQ4MS05LjY1MjU4OCAyNy45MzE1MTgtMTQuNDg1NDczIDM5LjI5Mzk0NS0xNC40ODU0NzMgMTQuMzY4NDY5IDAgMjQuNDI2MDg2IDYuNjEwNDczIDMwLjE3MjQ4NSAxOS44MTc5OTNsMzUuMjI2MDEzLTE5LjQ2NzEwMmg5LjY2NjAxNmwtMTUuMjE0NTM4IDUwLjQ5NDUzN2MtNy44MTE5NTEgMjUuNDAyNDM1LTExLjczMTUwNyA0Mi44MTMwMTktMTEuNzMxNTA3IDUyLjIzMTQ3NiAwIDkuODc3NTAyIDMuNDk2NTgyIDE0LjgxODQ4MSAxMC41MTIwMjQgMTQuODE4NDgxIDQuNDYzOTg5IDAgOS40MDQ5NjgtMi4zODA0MzIgMTQuODA5NTctNy4xNTQ5NjggNS40MDQ0MTktNC43NzQ1MzYgMTIuOTczNDUtMTIuMDQxOTkyIDIyLjczODQwNC0yMS44MDcwMDd2MTkuODEzNTM4em0tMTI2LjE2NjQ0MyA5LjQ5MDUzOWMxMS40ODg0MDMgMCAyMi4zMTU0My05Ljc5MTk5MiAzMi41MDM0NzktMjkuMzgwNjE1IDEwLjE3MDA0NC0xOS41OTc0MTIgMTUuMjUwNTQ5LTM3LjY3ODQwNiAxNS4yNTA1NDktNTQuMjIwMzk4IDAtNi40MjYwMjUtMS40NDkwOTYtMTEuNDYxNDg3LTQuMzA2NTE4LTE1LjA3NTAxMi0yLjg4NDU4My0zLjYzMTUzMS02LjczMTk5NS01LjQzMTUxOS0xMS41NDcwNTgtNS40MzE1MTktMTEuNDk3NDM3IDAtMjIuMzk2NDI0IDkuNzY1MDc2LTMyLjY2MDk1IDI5LjMwMzk1Ni0xMC4yODI1MzIgMTkuNTM5MDYyLTE1LjQzNDk5OCAzNy41MjEwNTctMTUuNDM0OTk4IDUzLjkzNzEzMyAwIDYuMjE0NDE3IDEuNTMwMDMgMTEuMjQwOTA2IDQuNTcxOTYxIDE1LjA5Mjg5NiAzLjA0MTk5MiAzLjg1MjA1MSA2LjkwMzAxNSA1Ljc3MzU1OSAxMS42MjM1MzUgNS43NzM1NTl6Ii8+PHBhdGggZD0ibTEwODEuNDEyOTY0IDUzNS43MTE0ODdjLTI4Ljg0NDk3MSAyOC4yNjQ1MjYtNTEuMDgzOTg1IDQyLjQwODAyLTY2LjcwODAwOCA0Mi40MDgwMi03LjAxNTQ0MiAwLTEyLjkzNzUtMi45NjEwNi0xNy43NTI1NjMtOC44NjA1OTYtNC44MTQ4ODEtNS45MjE4NzUtNy4yNDAzNTctMTMuMjUyMzgtNy4yNDAzNTctMjEuOTkxNDU1IDAtMTYuMjAwMDEyIDguNjg0OTM3LTM3LjkwNzg5OCAyNi4wMzI0NzEtNjUuMTQ2NDU0LTguNTA5NTgzIDQuMzY5NTM4LTE3LjgwNjQ1OCA3LjQwMjQzNi0yNy45MjI1NDcgOS4xMzA0NjMtNy40NzAwMzEgMTMuNzg3OTY0LTE5LjE5Njk2IDI4LjYxNTUzOS0zNS4xNjI5NjMgNDQuNDU1NTA1aC0zLjk1NTUwNnYtMTUuNDkzNDY5YzguOTU0OTU2LTkuMzA1OTY5IDE3LjA1OTQ0OC0xOS4zMDk1NyAyNC4yOTk5ODgtMjkuOTk3MDctOS44OTU1NjktNC4zNjk0MTYtMTQuODI3NDU0LTEwLjg2Mjg4NS0xNC44Mjc0NTQtMTkuNDY2OTggMC04Ljg2MDQ3NCAzLjAwNTk4Mi0xOC4zMDU5NyA5LjA1Mzk1NS0yOC4zNzI0MzcgNi4wMzAwMy0xMC4wNDQwMDYgMTQuMzI4MDAzLTE1LjA2NTk3OSAyNC45MDc1MzItMTUuMDY1OTc5IDguOTYzOTI4IDAgMTMuNDM2OTUxIDQuNTgwODcyIDEzLjQzNjk1MSAxMy43Nzg5MzEgMCA3LjI0MDUzOS0yLjU4MzAwOCAxNy41NzcwMjYtNy43NjI1MTIgMzEuMDI3NTg4IDE5LjA3MTA0NS0yLjA3NDUyNCAzNS43MzQ1NTgtMTYuNjU0NjAyIDQ5Ljk5MDUzOS00My43ODA1MThsMTUuNjc4MTAxLS42OTMxMTUtMTYuMDI5MDUzIDQ0LjEyMjYyYy02LjY2MDAzNCAxOC42MTY0NTUtMTAuOTcwOTQ3IDMxLjI5NzQyNC0xMi45MTk1NTYgMzguMDExNDQ0LTEuOTQ4NjA4IDYuNzE0MDE5LTIuOTM0MDgyIDEyLjY3MjAyNy0yLjkzNDA4MiAxNy44MzM1ODcgMCA0LjgzMjg4NiAxLjEyNSA4LjY5Mzg0OCAzLjM1NzA1NiAxMS41NDY4NzUgMi4yNDEwODkgMi44OTM1NTUgNS4yNjUwMTUgNC4zMTU1NTIgOS4wNTM5NTUgNC4zMTU1NTIgNC4xMzA5ODIgMCA4LjEwNDYxNC0xLjQxMjk2NCAxMS44OTM1NTUtNC4yMTIwMzYgMy43ODkwNjItMi44Mzk1MzkgMTIuMjkzOTQ1LTEwLjYxNTQ3OSAyNS41MTUwMTQtMjMuMzY4NDA4djE5LjgxNzkzMnoiLz48cGF0aCBkPSJtMTI1MC42NzYwMjUgNTM1LjcxMTQ4N2MtMjYuNTQxMDE1IDI4LjA1MzAzOS00OS4zMDY1MTggNDIuMDY1OTc5LTY4LjI1NTk4MSA0Mi4wNjU5NzktNy42OTk0NjMgMC0xMy45MDUwMjktMi43MDAwNzMtMTguNjE2NDU1LTguMTA0NDkyLTQuNzIwNTgxLTUuMzk1NTA4LTcuMDc0MDk3LTEyLjYzMTUzMS03LjA3NDA5Ny0yMS43MDgwMDggMC0xMi4yOTQwMDcgNS4wNjI1LTMxLjA4NTkzOCAxNS4xNzg1ODktNTYuMzUzNDI0IDUuMzk1NTA4LTEzLjU2MzAxOSA4LjEwNDQ5Mi0yMi4xOTQwMzEgOC4xMDQ0OTItMjUuODU3MDI1IDAtMy42ODEwOTItMS40NDg5NzQtNS41MjE1NzYtNC4zMDY1MTgtNS41MjE1NzYtMS42MDY1NjggMC0zLjc0NDAxOS44MTAwODktNi4zODA5ODIgMi40MDc1MDEtMi40MjU1MzcgMS42MDY1MDYtNS4yMzgwMzcgMy44NjU1MzktOC40NTU1NjYgNi43MzIwMjUtMi44NjY0NTUgMi42MzY5OTMtNi4wOTMwMTggNS44NTQ0NjItOS42NTI0NjYgOS42MzQ0Ni0zLjEwOTQ5NyAzLjI0NDUzOC02LjQ0Mzk3IDYuOTE2NTk2LTkuOTg1NTk2IDExLjAzODUxNGwtOS42NjU4OTMgMTEuMjE0MDE5Yy00LjI0MzQwOCA1LjE2NjA0Ny02Ljg4OTUyNyAxMC42MTU1NC03LjkyMDA0NCAxNi4zNjY0NTYtMS43MzI1NDQgOS43NjUwNzUtMi44NzU0ODggMTguNzM4MDM3LTMuNDU2MDU1IDI2LjkwNTUxNy0uMzUwOTUyIDYuMDc1MDEyLS41MTc0NTYgMTQuMjgzMDgxLS41MTc0NTYgMjQuNjQ2NjA3bC0zOC4wOTI0MDcgOC45NDU4NjFjLTEuMjU1NDkzLTE1LjUxMTQxMy0xLjg5OTA0OC0yNy4wNjI4NjYtMS44OTkwNDgtMzQuNjM2NDEzIDAtMTguNDk5NDUxIDIuMTU1NTE4LTM2LjAyNjkxNyA2LjQ3MDk0Ny01Mi41NjkwMzEgNC4zMDY1MTktMTYuNTU5OTk4IDExLjIyMzE0NS0zNS4xNjI5OTQgMjAuNzY3NDU2LTU1Ljg1Mzk0M2w0Mi4wNDgwOTYtOC4wOTU1ODFjLTguODQyNDA3IDIzLjc5MTU5Ni0xNC42NDI5NDQgNDIuNTExNTk3LTE3LjQwMTQ4OSA1Ni4xNzgwNCAxOC44NDU5NDctMjEuMDIzOTg3IDMzLjc4NjAxMS0zNS41NzcwMjcgNDQuODYwNDczLTQzLjY5MDQzIDExLjA1NjUxOS04LjEwNDYxNCAyMC45MDI0NjYtMTIuMTM2NTk3IDI5LjUwNjU5Mi0xMi4xMzY1OTcgNS44NDUzMzcgMCAxMC43MzIzIDIuMjA1MTA5IDE0LjYyNSA2LjYxOTU2OCAzLjkxMDQwMSA0LjQxODk0NSA1Ljg1NDM3IDkuOTY3NDY4IDUuODU0MzcgMTYuNjAwNDY0IDAgMTEuMDIwNTA4LTQuOTQwOTE4IDI5LjE3ODA0LTE0LjgwOTU3IDU0LjQ2ODAxOC02Ljc4NTg4OSAxNy4zNDMwMTctMTAuMTc4OTU1IDI4LjU5NzUzNC0xMC4xNzg5NTUgMzMuNzk1MDQ0IDAgNi45MTY0NDIgMi44MjE2NTUgMTAuMzcyNDk3IDguNDY0NiAxMC4zNzI0OTcgOC40MDE0ODkgMCAyMi4wMDkzOTktMTEuMDkyNTI5IDQwLjc4Nzk2My0zMy4yNjg1NTV6Ii8+PC9nPjxwYXRoIGZpbGw9Im5vbmUiIGQ9Im02OTIuNzQzNDY5IDI5NS4yNTg1MTRoMTAxMy41ODkwNTF2Mzc3Ljc2NjAyMmgtMTAxMy41ODkwNTF6Ii8+PHRleHQgeT0iMzcwIiB4PSI2ODgiIGZvbnQtc2l6ZT0iMTAzLjg1Nzc1IiBmb250LWZhbWlseT0iSGVsdmV0aWNhIiBmaWxsPSIjZmZmIj5zY2lraXQ8L3RleHQ+PHBhdGggZmlsbD0ibm9uZSIgZD0ibTEwMTUuMDU1OTY5IDYyMC45MDU1MThoMTQ2NC40NDQwMzF2MTkzLjMzMzU1N2gtMTQ2NC40NDQwMzF6Ii8+PC9zdmc+" preserveAspectRatio="none"/></g></g><g data-cell-id="ke5fKqay8JjYpE_cKGV5-48"><g><rect x="953.5" y="65" width="375" height="90" fill="none" stroke="none" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 373px; height: 1px; padding-top: 110px; margin-left: 956px;"><div style="box-sizing: border-box; font-size: 0px; text-align: left;" data-drawio-colors="color: rgb(0, 0, 0); "><div style="display: inline-block; font-size: 32px; font-family: "Helvetica"; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;"><span style="font-size: 32px;"><font style="font-size: 32px;" face="Georgia">scikit-learn</font></span><div style="font-size: 32px;"><span style="font-size: 32px;"><font style="font-size: 32px;" face="Georgia">algorithm cheat sheet</font></span></div></div></div></div></foreignObject><text x="956" y="120" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="32px" font-weight="bold">scikit-learn...</text></switch></g></g></g><g data-cell-id="pls1sffmf6aF35CQXLI_-1"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 227px; margin-left: 186px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #FFCCCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 204, 204); white-space: nowrap;"><div><font color="#ff9933">TRY</font></div><div><font color="#ff9933">NEXT<br /></font></div></div></div></div></foreignObject><text x="186" y="230" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">TRY...</text></switch></g></g></g><g data-cell-id="pls1sffmf6aF35CQXLI_-4"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 182px; margin-left: 411px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #FFCCCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 204, 204); white-space: nowrap;"><div><font color="#ff9933">TRY</font></div><div><font color="#ff9933">NEXT<br /></font></div></div></div></div></foreignObject><text x="411" y="185" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">TRY...</text></switch></g></g></g><g data-cell-id="pls1sffmf6aF35CQXLI_-6"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 337px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #FFCCCC; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 204, 204); white-space: nowrap;"><div><font color="#ff9933">TRY</font></div><div><font color="#ff9933">NEXT<br /></font></div></div></div></div></foreignObject><text x="321" y="340" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">TRY...</text></switch></g></g></g><g data-cell-id="GKrketicI9-l3KOTIM3X-1"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 502px; margin-left: 163px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #009900; background-color: #e5ccff; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(0, 153, 0); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(229, 204, 255); white-space: nowrap;"><div><font color="#ff9933">TRY</font></div><div><font color="#ff9933">NEXT<br /></font></div></div></div></div></foreignObject><text x="163" y="505" fill="#009900" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">TRY...</text></switch></g></g></g><g data-cell-id="GKrketicI9-l3KOTIM3X-2"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 364px; margin-left: 1288px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #ff9933; background-color: #cce5ff; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 153, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(204, 229, 255); white-space: nowrap;"><div><font>TRY</font></div><div><font>NEXT<br /></font></div></div></div></div></foreignObject><text x="1288" y="367" fill="#ff9933" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">TRY...</text></switch></g></g></g><g data-cell-id="GKrketicI9-l3KOTIM3X-4"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 619px; margin-left: 1205px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #ff9933; background-color: #ffffcc; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 153, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 204); white-space: nowrap;"><div><font>TRY</font></div><div><font>NEXT<br /></font></div></div></div></div></foreignObject><text x="1205" y="622" fill="#ff9933" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">TRY...</text></switch></g></g></g><g data-cell-id="GKrketicI9-l3KOTIM3X-5"><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 614px; margin-left: 948px;"><div style="box-sizing: border-box; font-size: 0px; text-align: center;" data-drawio-colors="color: #ff9933; background-color: #ffffcc; "><div style="display: inline-block; font-size: 12px; font-family: "Georgia"; color: rgb(255, 153, 51); line-height: 1.2; pointer-events: all; font-weight: bold; background-color: rgb(255, 255, 204); white-space: nowrap;"><div><font>TRY</font></div><div><font>NEXT<br /></font></div></div></div></div></foreignObject><text x="948" y="617" fill="#ff9933" font-family=""Georgia"" font-size="12px" text-anchor="middle" font-weight="bold">TRY...</text></switch></g></g></g></g></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://www.drawio.com/doc/faq/svg-export-text-problems" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Text is not SVG - cannot display</text></a></switch></svg>
</div></section>
</article>
<footer class="bd-footer-article">
<div class="footer-article-items footer-article__inner">
<div class="footer-article-item">
<div class="prev-next-area">
<a class="left-prev"
href="modules/array_api.html"
title="previous page">
<i class="fa-solid fa-angle-left"></i>
<div class="prev-next-info">
<p class="prev-next-subtitle">previous</p>
<p class="prev-next-title"><span class="section-number">11.1. </span>Array API support (experimental)</p>
</div>
</a>
<a class="right-next"
href="presentations.html"
title="next page">
<div class="prev-next-info">
<p class="prev-next-subtitle">next</p>
<p class="prev-next-title"><span class="section-number">13. </span>External Resources, Videos and Talks</p>
</div>
<i class="fa-solid fa-angle-right"></i>
</a>
</div></div>
</div>
</footer>
</div>
</div>
<footer class="bd-footer-content">
</footer>
</main>
</div>
</div>
<!-- Scripts loaded after <body> so the DOM is not blocked -->
<script defer src="_static/scripts/bootstrap.js?digest=8878045cc6db502f8baf"></script>
<script defer src="_static/scripts/pydata-sphinx-theme.js?digest=8878045cc6db502f8baf"></script>
<footer class="bd-footer">
<div class="bd-footer__inner bd-page-width">
<div class="footer-items__start">
<div class="footer-item">
<p class="copyright">
© Copyright 2007 - 2025, scikit-learn developers (BSD License).
<br/>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>