-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAI-terms.html
More file actions
2144 lines (1726 loc) · 128 KB
/
AI-terms.html
File metadata and controls
2144 lines (1726 loc) · 128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="10 Must AI aspects - ">
<link rel="profile" href="http://gmpg.org/xfn/11">
<meta name='robots' content='noindex, nofollow' />
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<!-- <script data-cfasync="false" data-pagespeed-no-defer>
var gtm4wp_datalayer_name = "dataLayer";
var dataLayer = dataLayer || [];
</script> -->
<link rel='preload' href='?ver=3.7.0' as='script' />
<link rel='preload' href='js/jquery.js?ver=2.0.8' as='script' />
<link rel='preload' href='js/dismis.js?ver=1698884316' as='script' />
<link rel='preload' href='//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js?ver=2.1.6' as='script' />
<link rel='preload' href='https://unpkg.com/infinite-scroll@4/dist/infinite-scroll.pkgd.min.js?ver=2.1.6'
as='script' />
<!-- <link rel='preload' href='js/footer.js?ver=2.1.6' as='script' /> -->
<link rel='preload' href='js/header.js?ver=2.1.6' as='script' />
<link rel='preload' href='js/new-tab.js?ver=3.3.6' as='script' />
<!-- <link rel='preload' href='https://news.microsoft.com/10-ai-terms/wp-content/plugins/microsoft-oembeds/cookie-consent.js?ver=1.0.0' as='script'/>
<link rel='preload' href='https://news.microsoft.com/10-ai-terms/wp-content/plugins/microsoft-uhf/assets/microsoft-uhf.js?ver=1.0.1' as='script'/>
<link rel='preload' href='https://news.microsoft.com/10-ai-terms/wp-content/plugins/microsoft-uhf/assets/microsoft-cookie-updates.js?ver=1.0.1' as='script'/> -->
<!-- This site is optimized with the Yoast SEO plugin v21.5 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Source: 10 Must AI aspects everyone should know - 10 Must AI aspects </title>
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="10 Must AI aspects everyone should know" />
<meta property="og:description"
content="We help break down some AI buzzwords so you can better understand artificial intelligence and be part of the global conversation." />
<meta property="og:url" content="https://genislab.com/10-ai-terms/" />
<meta property="og:site_name" content="10 Must AI aspects " />
<meta property="article:modified_time" content="2023-11-10T16:45:58+00:00" />
<meta property="og:image" content="https://genislab.com/assets/brand/cropped-genislab-logo-s-e1699302606301.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="10 Must AI aspects everyone should know" />
<meta name="twitter:description"
content="We help break down some AI buzzwords so you can better understand artificial intelligence and be part of the global conversation." />
<!-- / Yoast SEO plugin. -->
<!--
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/news.microsoft.com\/10-ai-terms\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.3.2"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script> -->
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='genesis-blocks-style-css-css' href='assets/css/style-blocks.build.css' type='text/css'
media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='assets/css/style.min.css?ver=6.3.2' type='text/css'
media='all' />
<link rel='stylesheet' id='mssrc-style-css' href='assets/css/theme.css?ver=2.1.6' type='text/css' media='all' />
<link rel='stylesheet' id='mssrc-blocks-css' href='blocks.css?ver=2.1.6' type='text/css' media='' />
<style id='global-styles-inline-css' type='text/css'>
body {
--wp--preset--color--black: #000000;
--wp--preset--color--cyan-bluish-gray: #abb8c3;
--wp--preset--color--white: #ffffff;
--wp--preset--color--pale-pink: #f78da7;
--wp--preset--color--vivid-red: #cf2e2e;
--wp--preset--color--luminous-vivid-orange: #ff6900;
--wp--preset--color--luminous-vivid-amber: #fcb900;
--wp--preset--color--light-green-cyan: #7bdcb5;
--wp--preset--color--vivid-green-cyan: #00d084;
--wp--preset--color--pale-cyan-blue: #8ed1fc;
--wp--preset--color--vivid-cyan-blue: #0693e3;
--wp--preset--color--vivid-purple: #9b51e0;
--wp--preset--color--primary: #0067B8;
--wp--preset--color--secondary: #626262;
--wp--preset--color--tertiary: #CACACA;
--wp--preset--color--quarternary: #F4F4F4;
--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
--wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
--wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
--wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
--wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
--wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
--wp--preset--font-size--small: 13px;
--wp--preset--font-size--medium: 20px;
--wp--preset--font-size--large: 36px;
--wp--preset--font-size--x-large: 42px;
--wp--preset--spacing--20: 0.44rem;
--wp--preset--spacing--30: 0.67rem;
--wp--preset--spacing--40: 1rem;
--wp--preset--spacing--50: 1.5rem;
--wp--preset--spacing--60: 2.25rem;
--wp--preset--spacing--70: 3.38rem;
--wp--preset--spacing--80: 5.06rem;
--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}
body {
margin: 0;
}
.wp-site-blocks>.alignleft {
float: left;
margin-right: 2em;
}
.wp-site-blocks>.alignright {
float: right;
margin-left: 2em;
}
.wp-site-blocks>.aligncenter {
justify-content: center;
margin-left: auto;
margin-right: auto;
}
:where(.is-layout-flex) {
gap: 0.5em;
}
:where(.is-layout-grid) {
gap: 0.5em;
}
body .is-layout-flow>.alignleft {
float: left;
margin-inline-start: 0;
margin-inline-end: 2em;
}
body .is-layout-flow>.alignright {
float: right;
margin-inline-start: 2em;
margin-inline-end: 0;
}
body .is-layout-flow>.aligncenter {
margin-left: auto !important;
margin-right: auto !important;
}
body .is-layout-constrained>.alignleft {
float: left;
margin-inline-start: 0;
margin-inline-end: 2em;
}
body .is-layout-constrained>.alignright {
float: right;
margin-inline-start: 2em;
margin-inline-end: 0;
}
body .is-layout-constrained>.aligncenter {
margin-left: auto !important;
margin-right: auto !important;
}
body .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
max-width: var(--wp--style--global--content-size);
margin-left: auto !important;
margin-right: auto !important;
}
body .is-layout-constrained>.alignwide {
max-width: var(--wp--style--global--wide-size);
}
body .is-layout-flex {
display: flex;
}
body .is-layout-flex {
flex-wrap: wrap;
align-items: center;
}
body .is-layout-flex>* {
margin: 0;
}
body .is-layout-grid {
display: grid;
}
body .is-layout-grid>* {
margin: 0;
}
body {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
a:where(:not(.wp-element-button)) {
text-decoration: underline;
}
.wp-element-button,
.wp-block-button__link {
background-color: #32373c;
border-width: 0;
color: #fff;
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: calc(0.667em + 2px) calc(1.333em + 2px);
text-decoration: none;
}
.has-black-color {
color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-color {
color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-color {
color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-color {
color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-color {
color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-color {
color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-color {
color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-color {
color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-color {
color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-color {
color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-color {
color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-color {
color: var(--wp--preset--color--vivid-purple) !important;
}
.has-primary-color {
color: var(--wp--preset--color--primary) !important;
}
.has-secondary-color {
color: var(--wp--preset--color--secondary) !important;
}
.has-tertiary-color {
color: var(--wp--preset--color--tertiary) !important;
}
.has-quarternary-color {
color: var(--wp--preset--color--quarternary) !important;
}
.has-black-background-color {
background-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-background-color {
background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-background-color {
background-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-background-color {
background-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-background-color {
background-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-background-color {
background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-background-color {
background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-background-color {
background-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-background-color {
background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-background-color {
background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-background-color {
background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-background-color {
background-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-primary-background-color {
background-color: var(--wp--preset--color--primary) !important;
}
.has-secondary-background-color {
background-color: var(--wp--preset--color--secondary) !important;
}
.has-tertiary-background-color {
background-color: var(--wp--preset--color--tertiary) !important;
}
.has-quarternary-background-color {
background-color: var(--wp--preset--color--quarternary) !important;
}
.has-black-border-color {
border-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-border-color {
border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-border-color {
border-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-border-color {
border-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-border-color {
border-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-border-color {
border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-border-color {
border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-border-color {
border-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-border-color {
border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-border-color {
border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-border-color {
border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-border-color {
border-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-primary-border-color {
border-color: var(--wp--preset--color--primary) !important;
}
.has-secondary-border-color {
border-color: var(--wp--preset--color--secondary) !important;
}
.has-tertiary-border-color {
border-color: var(--wp--preset--color--tertiary) !important;
}
.has-quarternary-border-color {
border-color: var(--wp--preset--color--quarternary) !important;
}
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}
.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}
.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}
.has-luminous-vivid-orange-to-vivid-red-gradient-background {
background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}
.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}
.has-cool-to-warm-spectrum-gradient-background {
background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}
.has-blush-light-purple-gradient-background {
background: var(--wp--preset--gradient--blush-light-purple) !important;
}
.has-blush-bordeaux-gradient-background {
background: var(--wp--preset--gradient--blush-bordeaux) !important;
}
.has-luminous-dusk-gradient-background {
background: var(--wp--preset--gradient--luminous-dusk) !important;
}
.has-pale-ocean-gradient-background {
background: var(--wp--preset--gradient--pale-ocean) !important;
}
.has-electric-grass-gradient-background {
background: var(--wp--preset--gradient--electric-grass) !important;
}
.has-midnight-gradient-background {
background: var(--wp--preset--gradient--midnight) !important;
}
.has-small-font-size {
font-size: var(--wp--preset--font-size--small) !important;
}
.has-medium-font-size {
font-size: var(--wp--preset--font-size--medium) !important;
}
.has-large-font-size {
font-size: var(--wp--preset--font-size--large) !important;
}
.has-x-large-font-size {
font-size: var(--wp--preset--font-size--x-large) !important;
}
.wp-block-navigation a:where(:not(.wp-element-button)) {
color: inherit;
}
:where(.wp-block-post-template.is-layout-flex) {
gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
gap: 1.25em;
}
:where(.wp-block-columns.is-layout-flex) {
gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
gap: 2em;
}
.wp-block-pullquote {
font-size: 1.5em;
line-height: 1.6;
}
</style>
<link rel='stylesheet' id='wp-smart-crop-renderer-css' href='image-renderer.css?ver=2.0.8' type='text/css'
media='all' />
<link rel='stylesheet' id='slick-base-css'
href='//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css?ver=2.1.6' type='text/css' media='all' />
<link rel='stylesheet' id='slick-theme-css'
href='//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css?ver=2.1.6' type='text/css'
media='all' />
<!-- <link rel='stylesheet' id='mssrc-style-print-css'
href='https://news.microsoft.com/10-ai-terms/wp-content/themes/stories-source/assets/css/print.css?ver=2.1.6'
type='text/css' media='all' /> -->
<!-- <link rel='stylesheet' id='ms-cookie-content-css' href='https://news.microsoft.com/10-ai-terms/wp-content/plugins/microsoft-oembeds/cookie-consent.css?ver=1.0.0' type='text/css' media='screen' /> -->
<script type='text/javascript' src='https://code.jquery.com/jquery-3.7.1.min.js' id='jquery-core-js'></script>
<script type='text/javascript' src='https://releases.jquery.com/git/jquery-migrate-git.min.js'
id='jquery-migrate-js'></script>
<!-- <script type='text/javascript' src='https://js.monitor.azure.com/scripts/c/ms.analytics-web-3.min.js?ver=1' id='1ds-application-insights-js'></script> -->
<!-- <script id="microsoft-1ds-metrics-js-js-before" type="text/javascript">
var oneds_object = { "tenant_key": "02b8b033c936448088ba2769c37bfca7-db7a82b5-6cee-4095-b663-08de34ae93c0-7335", "market": "en-us", "pagetype": "Homepage", "name": "Microsoft Source: 10 Must AI aspects everyone should know" }
</script> -->
<!-- <script type='text/javascript' src='https://news.microsoft.com/10-ai-terms/wp-content/plugins/microsoft-1ds-metrics/assets/microsoft-1ds-metrics-js.js?ver=1' id='microsoft-1ds-metrics-js-js'></script>
<script type='text/javascript' src='https://news.microsoft.com/10-ai-terms/wp-content/themes/stories-source/assets/js/header.js?ver=2.1.6' id='mssrc-header-js'></script>
<script type='text/javascript' id='microsoft-uhf-js-extra'>
/* <![CDATA[ */
var microsoftUhfSettings = {"homePath":"\/10-ai-terms\/","loginUrl":"https:\/\/www.microsoft.com\/en-us\/signin.aspx","logoutUrl":"https:\/\/www.microsoft.com\/en-us\/signout.aspx","scripts":[],"inline":[]};
/* ]]> */
</script>
<script type='text/javascript' src='https://news.microsoft.com/10-ai-terms/wp-content/plugins/microsoft-uhf/assets/microsoft-uhf.js?ver=1.0.1' id='microsoft-uhf-js'></script>
<link rel="https://api.w.org/" href="https://news.microsoft.com/10-ai-terms/index.php?rest_route=/" /><link rel="alternate" type="application/json" href="https://news.microsoft.com/10-ai-terms/index.php?rest_route=/wp/v2/pages/8" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://news.microsoft.com/10-ai-terms/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://news.microsoft.com/10-ai-terms/' />
<link rel="alternate" type="application/json+oembed" href="https://news.microsoft.com/10-ai-terms/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fnews.microsoft.com%2F10-ai-terms%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://news.microsoft.com/10-ai-terms/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fnews.microsoft.com%2F10-ai-terms%2F&format=xml" /> -->
<!-- <link rel="stylesheet"
href="https://www.microsoft.com/onerfstatics/marketingsites-wcus-prod/west-european/shell/_scrf/css/themes=default.device=uplevel_web_pc/79-4cdd0a/33-ae3d41/a5-4bf7a2/13-8e1ceb/81-32f0c0/5c-b7b685/92-14707b/74-888e54?ver=2.0&_cf=20210618"
type="text/css" media="all" /> -->
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<!-- GTM Container placement set to off -->
<script data-cfasync="false" data-pagespeed-no-defer>
var dataLayer_content = { "pagePostType": "frontpage", "pagePostType2": "single-page", "pagePostAuthor": "nico" };
dataLayer.push(dataLayer_content);
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<link rel="icon"
href="https://genislab.com/assets/brand/cropped-genislab-logo-s-e1699302606301.png"
sizes="32x32" />
<!-- <link rel="icon" href="https://news.microsoft.com/10-ai-terms/wp-content/uploads/2023/11/cropped-cropped-Microsoft_logo-192x192.webp" sizes="192x192" />
<link rel="apple-touch-icon" href="https://news.microsoft.com/10-ai-terms/wp-content/uploads/2023/11/cropped-cropped-Microsoft_logo-180x180.webp" />
<meta name="msapplication-TileImage" content="https://news.microsoft.com/10-ai-terms/wp-content/uploads/2023/11/cropped-cropped-Microsoft_logo-270x270.webp" />
<script src="https://wcpstatic.microsoft.com/mscc/lib/v2/wcp-consent.js"></script><script src="https://www.microsoft.com/onerfstatics/marketingsites-wcus-prod/shell/_scrf/js/themes=default/8e-e88b64/82-2a4f02/49-a00ab0/92-02e55d/7c-dcea75/75-fca72d/ed-e77ee7/d5-bf34c0/a9-078595/7a-7ea8cc/2d-40bdad/23-e8cd2b/96-eb5423/e6-6b0cce/d1-98d78a/c6-082272/a7-f7a340/1e-addbef/2e-ca165a/fc-169dd8/8e-60935c/87-fecbed/96-6ed6eb/c3-eb62e0/ad-ffd6bf/35-621acc/5b-6eff60/b0-07f293/1e-9d9d16/52-f0367f/af-abd754/bf-517249/e1-ed258e/20-0b10e2/6b-0f1117/fb-5e9831/a2-598841?ver=2.0&_cf=20210618&iife=1"></script> </head> -->
<body class="home page-template-default page page-id-8 wp-embed-responsive microsoft-uhf">
<div id="page-header">
<div class="sticky-header" role="banner" id="stickyHeader">
<div class="sticky-header__container">
<div class="sticky-header__left">
<a class="sticky-header__logo" href="https://genislab.com" target="_self"
aria-label="microsoft.com">
<img alt="" itemprop="logo" class="c-image"
src="https://genislab.com/assets/brand/cropped-genislab-logo-s-e1699302606301.png"
role="presentation" aria-hidden="false" style="overflow-x: visible;">
</a>
<a class="sticky-header__logo-link" href="https://genislab.com/10-ai-terms/" target="_self"
aria-label="">
<span class="title">10 Must know AI terms by Muhammad Farhan</span>
</a>
</div>
<div class="sticky-header__right">
<!-- <ul class="social-share-networks">
<li class="social-share-networks__item">
<a class="social-share-networks__anchor" href="https://www.facebook.com/sharer/sharer.php?u=https://news.microsoft.com/10-ai-terms/" target="_blank" title="Share on Facebook">
<svg viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.071.286H1.93A1.929 1.929 0 0 0 0 2.214v14.143c0 1.085.844 1.929 1.929 1.929h5.504v-6.107H4.902V9.286h2.531v-2.17c0-2.491 1.487-3.897 3.737-3.897 1.125 0 2.25.2 2.25.2v2.452h-1.246c-1.245 0-1.647.763-1.647 1.566v1.849h2.772l-.442 2.893h-2.33v6.107h5.544A1.929 1.929 0 0 0 18 16.357V2.214C18 1.17 17.116.286 16.071.286Z" fill="#777"/></svg> </a>
</li>
<li class="social-share-networks__item">
<a class="social-share-networks__anchor" href="https://www.twitter.com/share?url=https://news.microsoft.com/10-ai-terms/" target="_blank" title="Share on Twitter">
<svg viewBox="0 0 21 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.442 5.107c.803-.603 1.527-1.326 2.09-2.17a7.907 7.907 0 0 1-2.412.643 4.121 4.121 0 0 0 1.849-2.33 8.91 8.91 0 0 1-2.652 1.045A4.22 4.22 0 0 0 14.223.969a4.218 4.218 0 0 0-4.219 4.218c0 .322.04.643.121.965a12.24 12.24 0 0 1-8.719-4.42c-.361.603-.562 1.326-.562 2.13a4.15 4.15 0 0 0 1.888 3.495c-.683-.04-1.366-.2-1.928-.522v.04a4.224 4.224 0 0 0 3.375 4.138c-.322.08-.724.161-1.085.161-.281 0-.523-.04-.804-.08.522 1.687 2.09 2.893 3.938 2.933a8.482 8.482 0 0 1-5.224 1.808c-.361 0-.683-.04-1.004-.08 1.848 1.205 4.058 1.888 6.469 1.888 7.754 0 11.973-6.389 11.973-11.973v-.563Z" fill="#777"/></svg> </a>
</li>
<li class="social-share-networks__item">
<a class="social-share-networks__anchor" href="https://www.linkedin.com/sharing/share-offsite/?url=https://news.microsoft.com/10-ai-terms/" target="_blank" title="Share on LinkedIn">
<svg viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.714.286H1.246C.563.286 0 .888 0 1.612V17c0 .723.563 1.286 1.246 1.286h15.468c.683 0 1.286-.563 1.286-1.286V1.612c0-.724-.603-1.326-1.286-1.326ZM5.424 15.714H2.772V7.156h2.652v8.558ZM4.098 5.951c-.884 0-1.567-.683-1.567-1.527 0-.844.683-1.567 1.567-1.567.844 0 1.527.723 1.527 1.567s-.683 1.527-1.527 1.527Zm11.33 9.763h-2.691v-4.178c0-.965 0-2.25-1.367-2.25-1.406 0-1.607 1.085-1.607 2.21v4.218H7.112V7.156h2.53v1.165h.041c.362-.683 1.246-1.406 2.531-1.406 2.692 0 3.215 1.808 3.215 4.098v4.701Z" fill="#777"/></svg> </a>
</li>
<li class="social-share-networks__item">
<a class="social-share-networks__anchor" href="https://www.reddit.com/submit?url=https://news.microsoft.com/10-ai-terms/&title=Microsoft Source: 10 Must AI aspects everyone should know" target="_blank" title="Share on Reddit">
<svg viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.37 12.902c-.12-.08-.28-.08-.361 0-.804.803-3.295.763-4.058 0-.08-.08-.241-.08-.362 0-.08.12-.08.281 0 .361 1.005 1.005 3.777 1.005 4.781 0 .08-.08.08-.24 0-.361Zm-3.696-2.17c0-.602-.442-1.085-1.045-1.085a1.08 1.08 0 0 0-1.084 1.085 1.08 1.08 0 0 0 1.084 1.085c.603 0 1.045-.482 1.045-1.085Zm3.656-1.085c-.562 0-1.044.482-1.044 1.085s.482 1.085 1.044 1.085a1.08 1.08 0 0 0 1.085-1.085 1.08 1.08 0 0 0-1.085-1.085ZM18 2.214C18 1.17 17.116.286 16.071.286H1.93A1.929 1.929 0 0 0 0 2.214v14.143c0 1.085.844 1.929 1.929 1.929H16.07A1.929 1.929 0 0 0 18 16.357V2.214ZM13.982 7.88c1.487 0 2.01 2.01.643 2.692.04.242.08.483.08.684 0 2.29-2.571 4.138-5.705 4.138s-5.705-1.848-5.705-4.139c0-.2.04-.441.08-.642-1.406-.724-.884-2.733.603-2.733.401 0 .803.161 1.044.442.965-.683 2.25-1.084 3.697-1.165l.844-3.736c0-.12.16-.201.28-.161l2.652.562c.161-.361.523-.602.925-.602a1.08 1.08 0 0 1 1.085 1.085 1.08 1.08 0 0 1-1.085 1.084c-.563 0-1.045-.482-1.045-1.084l-2.41-.523-.724 3.375c1.447.04 2.732.482 3.697 1.165a1.459 1.459 0 0 1 1.044-.442Z" fill="#777"/></svg> </a>
</li>
</ul> -->
</div>
</div>
</div> <!--/#page header-->
<!--main-->
</div>
<main>
<section id="main">
<div class="wp-block-columns">
<div class="wp-block-column">
<h1 class="sr-only">10 Must AI aspects </h1>
<section mks-block class="mssrc-block-content-block">
<div class="mks-debug-guides"></div>
<div class="rel w:fit | | ">
<div id="block-655d4a792745f" class="max-w:1700px m-x:auto w:fit" data-bg-fade="#134675"
data-color-fade="#ffffff" style="
background-color:#134675; color:#ffffff ">
<div class="
| rel flex items:center just:between rel p-x:94fxx __p-x:68fxx p-t:6.5vr p-b:8.5vr
| dir:row-reverse | d:block@m p-x:6.26%@m p-b:5vr@m p-t:4vr@m
">
<div class="group w:45% w:fit@m rel">
<div scroll-object
class="m-b:30px@m m-x:auto rel w:fit before before:p-t:100%">
<div class="abs tl:0 fit mask radius:0px " id="">
<img decoding="async" src="assets/11_intro-2-683x683.png"
alt="3d isometric illustration representing AI"
class="radius:0! abs tl:0 fit object:contain o:0 transform scale:0.8 (.in-view):scale:1! (.in-view):o:1! (.in-view):tween:all,1.6s,0.8s,easeOutSlow" />
</div>
</div>
</div>
<article class="__w:60% rel w:fit@m">
<div scroll-object class="max-w:788fxx __m-x:auto max-w:100%@m! ">
<h1 class="m-b:1vr font-h0 lh:1! fw:900 w:fit">
<split-text2>10 Must AI aspects everyone should know</split-text2>
</h1>
<div class="font-t3 lh:1.57! m-b:1vr w:fit mks-wysiwyg"
role="paragraph">
<split-text2 delay="0.3" debug>By Muhammad Farhan <br />
<br />
The term “AI” has been used in computer science since the 1950s,
but most people outside the industry didn’t start talking about
it until the end of 2022. That’s because recent advances in
machine learning led to big breakthroughs that are beginning to
have a profound impact on nearly every aspect of our lives.
We’re here to help break down some of the buzzwords so you can
better understand AI terms and be part of the global
conversation.</split-text2>
</div>
</div>
</article>
<button scroll-indicator
class="cursor:pointer border:none iblock font-t7 radius:20px p:10px,20px
tween:0.6s,easeOut prop:color,background
p:8px,16px,9px@m fs:14px@m fixed b:20px l:50% transform shift-x:-50%
bg:#fff border:solid,1px,#fff c:#000 hover:bg:transparent hover:c:#fff hover:border:solid,1px,#fff ">
Scroll to start
</button>
</div>
</div>
</div>
</section>
<script type="text/javascript">
(() => {
const $player = document.getElementById('player-655d4a792745f')
function initIframe(e) {
let $iframe = document.createElement('iframe')
$iframe.style.position = 'absolute'
$iframe.style.top = 0
$iframe.style.left = 0
$iframe.style.width = '100%'
$iframe.style.height = '100%'
$iframe.style.height = '100%'
$iframe.setAttribute('frameborder', 0)
$iframe.setAttribute('tabindex', 0)
$iframe.setAttribute('allow', 'autoplay; fullscreen')
$iframe.setAttribute('title', 'Ana Gonzalez animated stor')
$iframe.setAttribute('src', 'https://www.youtube-nocookie.com/embed/?autoplay=1&autohide=1&fs=1&modestbranding=1&showinfo=0&controls=2&autoplay=1&rel=0&theme=light&vq=hd720')
const $player = e.currentTarget
$player.appendChild($iframe)
$player.removeEventListener('click', initIframe)
}
$player && $player.addEventListener('click', initIframe)
const $scrollIndicator = document.querySelector('[scroll-indicator]');
if ($scrollIndicator) {
$scrollIndicator.addEventListener('click', (e) => {
window.scrollTo(0, window.innerHeight);
});
function onScroll(e) {
$scrollIndicator.style.opacity = 0;
document.removeEventListener('scroll', onScroll);
}
document.addEventListener('scroll', onScroll);
}
})()
</script>
<script>
(() => {
if (window.acf) {
const $block = document.getElementById('block-655d4a792745f');
if ($block.hasAttribute('data-bg-fade')) {
$block.style.backgroundColor = $block.getAttribute('data-bg-fade');
if ($block.getAttribute('data-color-fade')) {
$block.style.color = $block.getAttribute('data-color-fade');
}
console.log('ADMIN:set background fade color in preview blocks', $block)
}
}
})();
</script>
<section mks-block class="mssrc-block-content-block">
<!-- <iframe src="https://onedrive.live.com/embed?resid=1ABE3D24809C75C4%212641&authkey=%21ACi4A7xfbE9mgcE&em=2&wdAr=1.7777777777777777" width="100%" height="691px" frameborder="0">This is an embedded <a target="_blank" href="https://office.com">Framwork to identify Usecases for Generative AI Landscape, powered by <a target="_blank" href="https://office.com/webapps">muhammad.farhan</a>.</iframe> <div class="mks-debug-guides"></div>
-->
<div class="rel w:fit | | ">
<div id="block-655d4a79284e0" class="max-w:1700px m-x:auto w:fit" data-bg-fade="#f6f6f8"
data-color-fade="#0a0a0a" style="
background-color:#f6f6f8; color:hsl(30, 100%, 51%) ">
<div class="
| rel flex items:center just:between rel p-x:94fxx __p-x:68fxx p-t:6.5vr p-b:8.5vr
| | d:block@m p-x:6.26%@m p-b:5vr@m p-t:4vr@m
">
<div class="group w:45% w:fit@m rel">
<div scroll-object
class="m-b:30px@m m-x:auto rel w:fit before before:p-t:100%">
<div class="abs tl:0 fit mask radius:0px " id="">
<img decoding="async"
src="assets/01_artificial_intelligence-683x683.png"
alt="3d isometric illustration representing AI"
class="radius:0! abs tl:0 fit object:contain o:0 transform scale:0.8 (.in-view):scale:1! (.in-view):o:1! (.in-view):tween:all,1.6s,0.8s,easeOutSlow" />
</div>
</div>
</div>
<article class="__w:60% rel w:fit@m">
<div scroll-object class="max-w:788fxx __m-x:auto max-w:100%@m! ">
<h2 class="m-b:1vr font-h3 w:fit">
<split-text2>1. Artificial intelligence</split-text2>
</h2>
<div class="font-t3 lh:1.57! m-b:1vr w:fit mks-wysiwyg"
role="paragraph">
<split-text2 delay="0.3" debug>Artificial intelligence is basically
a super-smart computer system that can imitate humans in some
ways, like comprehending what people say, making decisions,
translating between languages, analyzing if something is
negative or positive, and even learning from experience. It’s
artificial in that its intellect was created by humans using
technology. Sometimes people say AI systems have digital brains,
but they’re not physical machines or robots — they’re programs
that run on computers. They work by putting a vast collection of
data through algorithms, which are sets of instructions, to
create models that can automate tasks that typically require
human intelligence and time. Sometimes people specifically
engage with an AI system — like asking Bing Chat for help with
something — but more often the AI is happening in the background
all around us, suggesting words as we type, recommending songs
in playlists and providing more relevant information based on
our preferences.</split-text2>
</div>
</div>
</article>
</div>
</div>
</div>
</section>
<script type="text/javascript">
(() => {
const $player = document.getElementById('player-655d4a79284e0')
function initIframe(e) {
let $iframe = document.createElement('iframe')
$iframe.style.position = 'absolute'
$iframe.style.top = 0
$iframe.style.left = 0
$iframe.style.width = '100%'
$iframe.style.height = '100%'
$iframe.style.height = '100%'
$iframe.setAttribute('frameborder', 0)
$iframe.setAttribute('tabindex', 0)
$iframe.setAttribute('allow', 'autoplay; fullscreen')
$iframe.setAttribute('title', 'Ana Gonzalez animated stor')
$iframe.setAttribute('src', 'https://www.youtube-nocookie.com/embed/?autoplay=1&autohide=1&fs=1&modestbranding=1&showinfo=0&controls=2&autoplay=1&rel=0&theme=light&vq=hd720')
const $player = e.currentTarget
$player.appendChild($iframe)
$player.removeEventListener('click', initIframe)
}
$player && $player.addEventListener('click', initIframe)
const $scrollIndicator = document.querySelector('[scroll-indicator]');
if ($scrollIndicator) {
$scrollIndicator.addEventListener('click', (e) => {
window.scrollTo(0, window.innerHeight);
});
function onScroll(e) {
$scrollIndicator.style.opacity = 0;
document.removeEventListener('scroll', onScroll);
}
document.addEventListener('scroll', onScroll);
}
})()
</script>
<script>
(() => {
if (window.acf) {
const $block = document.getElementById('block-655d4a79284e0');
if ($block.hasAttribute('data-bg-fade')) {
$block.style.backgroundColor = $block.getAttribute('data-bg-fade');
if ($block.getAttribute('data-color-fade')) {
$block.style.color = $block.getAttribute('data-color-fade');
}
console.log('ADMIN:set background fade color in preview blocks', $block)
}
}
})();
</script>
<section mks-block class="mssrc-block-content-block">
<div class="mks-debug-guides"></div>
<div class="rel w:fit | | ">
<div id="block-655d4a792996a" class="max-w:1700px m-x:auto w:fit" data-bg-fade="#7acaeb"
data-color-fade="#0a0a0a" style="
background-color:#7acaeb; color:#0a0a0a ">
<div class="
| rel flex items:center just:between rel p-x:94fxx __p-x:68fxx p-t:6.5vr p-b:8.5vr
| dir:row-reverse | d:block@m p-x:6.26%@m p-b:5vr@m p-t:4vr@m
">
<div class="group w:45% w:fit@m rel">
<div scroll-object
class="m-b:30px@m m-x:auto rel w:fit before before:p-t:100%">
<div class="abs tl:0 fit mask radius:0px " id="">
<img decoding="async" src="assets/02_machine_learning-683x683.png"
alt="3d isometric illustration representing Machine Learning"
class="radius:0! abs tl:0 fit object:contain o:0 transform scale:0.8 (.in-view):scale:1! (.in-view):o:1! (.in-view):tween:all,1.6s,0.8s,easeOutSlow" />
</div>
</div>
</div>
<article class="__w:60% rel w:fit@m">
<div scroll-object class="max-w:788fxx __m-x:auto max-w:100%@m! ">
<h2 class="m-b:1vr font-h3 w:fit">
<split-text2>2. Machine learning</split-text2>
</h2>
<div class="font-t3 lh:1.57! m-b:1vr w:fit mks-wysiwyg"
role="paragraph">
<split-text2 delay="0.3" debug>If artificial intelligence is the
goal, machine learning is how we get there. It’s a field of
computer science, under the umbrella of AI, where people teach a
computer system how to do something by training it to identify
patterns and make predictions based on them. Data is run through
algorithms over and over, with different input and feedback each
time to help the system learn and improve during the training
process — like practicing piano scales 10 million times in order
to sight-read music going forward. It’s especially helpful with
problems that would otherwise be difficult or impossible to
solve using traditional programming techniques, such as
recognizing images and translating languages. It takes a huge
amount of data, and that’s something we’ve only been able to
harness in recent years as more information has been digitized
and as computer hardware has become faster, smaller, more
powerful and better able to process all that information. That’s
why large language models that use machine learning — such as
Bing Chat and ChatGPT — have suddenly arrived on the
scene.</split-text2>
</div>
</div>
</article>
</div>
</div>
</div>
</section>
<script type="text/javascript">
(() => {
const $player = document.getElementById('player-655d4a792996a')
function initIframe(e) {
let $iframe = document.createElement('iframe')
$iframe.style.position = 'absolute'
$iframe.style.top = 0
$iframe.style.left = 0
$iframe.style.width = '100%'
$iframe.style.height = '100%'
$iframe.style.height = '100%'
$iframe.setAttribute('frameborder', 0)
$iframe.setAttribute('tabindex', 0)
$iframe.setAttribute('allow', 'autoplay; fullscreen')
$iframe.setAttribute('title', 'Ana Gonzalez animated stor')
$iframe.setAttribute('src', 'https://www.youtube-nocookie.com/embed/?autoplay=1&autohide=1&fs=1&modestbranding=1&showinfo=0&controls=2&autoplay=1&rel=0&theme=light&vq=hd720')
const $player = e.currentTarget
$player.appendChild($iframe)
$player.removeEventListener('click', initIframe)
}
$player && $player.addEventListener('click', initIframe)
const $scrollIndicator = document.querySelector('[scroll-indicator]');
if ($scrollIndicator) {
$scrollIndicator.addEventListener('click', (e) => {
window.scrollTo(0, window.innerHeight);
});
function onScroll(e) {
$scrollIndicator.style.opacity = 0;
document.removeEventListener('scroll', onScroll);
}
document.addEventListener('scroll', onScroll);
}
})()
</script>
<script>
(() => {
if (window.acf) {
const $block = document.getElementById('block-655d4a792996a');
if ($block.hasAttribute('data-bg-fade')) {
$block.style.backgroundColor = $block.getAttribute('data-bg-fade');
if ($block.getAttribute('data-color-fade')) {
$block.style.color = $block.getAttribute('data-color-fade');
}
console.log('ADMIN:set background fade color in preview blocks', $block)
}
}
})();
</script>
<section mks-block class="mssrc-block-content-block">