-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAI-trainer-match.html
2455 lines (1871 loc) · 154 KB
/
AI-trainer-match.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<!-- Head -->
<head>
<title>人工智比赛 - 我叫史迪奇</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="keywords" content="这是我的博客" />
<meta name="description" content="这是我的窝">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> -->
<link rel="shortcut icon" href="https://s1.ax1x.com/2023/08/10/pPm8TPO.png" type="image/png" />
<link rel="stylesheet" type="text/css" href="//at.alicdn.com/t/font_2419798_axdw2lrqtkc.css">
<link rel="stylesheet" type="text/css" href="/css/bootstrap-3.3.4.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="/css/social/social.css">
<link rel="stylesheet" type="text/css" href="/css/navEffect.css">
<link rel="stylesheet" type="text/css" href="/css/post_content.css">
<script src="/js/jquery1.10.2.min.js"></script>
<script src="/js/app.js"></script>
<script src="/js/bootstrap-3.3.4.js"></script>
<script src="/js/s.js"></script>
<script src="/js/jquery.slimscroll.min.js"></script>
<script src="/js/waline.js"></script>
<link href='https://unpkg.com/@waline/[email protected]/dist/waline.css' rel='stylesheet' />
<script src="/resources/loadingBar/pace.min.js"></script>
<script src="/js/headBand.min.js"></script>
<link rel="stylesheet" href="/resources/loadingBar/flash.css">
<script src="/js/highlight.min.js"></script>
<link rel="stylesheet" href="/css/code-style.css">
<link rel="stylesheet" href="/css/code-styles/sdqlightfair.min.css">
<script src="/js/mermaid.min.js"></script>
<script src="/js/katex.min.js"></script>
<link rel="stylesheet" href="/css/katex.min.css">
<link rel="stylesheet" href="/css/avatar_user.css">
<meta name="generator" content="Hexo 5.3.0"></head>
<!--
<link rel="stylesheet" type="text/css" href="/css/avatar_user.css"> -->
<!-- <script src='https://unpkg.com/@waline/[email protected]/dist/waline.js'></script> -->
<body class="pace-done layout-fullwidth">
<div id="sdq" style= "display:none" >
<!-- Header -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="brand">
<a>
<i id="sdq-logo" style="font-size:50px;vertical-align: middle;"
class=""></i>
</a>
<a href="/">
<span style="font-size: 20px;">我叫史迪奇</span>
</a>
</div>
<div class="nav-list">
<a href="/" title="首页">
<span>
首页
</span>
</a>
<a href="/about.html" title="关于">
<span>
关于
</span>
</a>
<a href="/valine.html" title="留言">
<span>
留言
</span>
</a>
<a href="/link.html" title="友链">
<span>
友链
</span>
</a>
</div>
<div class="mobile">
<div class="mobile-inner">
<div class="mobile-inner-header">
<div class="mobile-inner-header-icon mobile-inner-header-icon-out">
<span></span><span></span>
</div>
</div>
<div class="mobile-inner-nav">
<a href="/" title="首页">
<span>
首页
</span>
</a>
<a href="/about.html" title="关于">
<span>
关于
</span>
</a>
<a href="/valine.html" title="留言">
<span>
留言
</span>
</a>
<a href="/link.html" title="友链">
<span>
友链
</span>
</a>
</div>
</div>
</div>
<script>
$(window).load(function () {
$(".mobile-inner-header-icon").click(function(){
$(this).toggleClass("mobile-inner-header-icon-click mobile-inner-header-icon-out");
$(".mobile-inner-nav").slideToggle(250);
});
$(".mobile-inner-nav a").each(function( index ) {
$( this ).css({'animation-delay': (index/10)+'s'});
});
});
</script>
<div class="container-fluid">
<div class="navbar-btn" style="padding: 0; padding-top: 10px;">
<button type="button" class="btn-toggle-fullwidth btn-toggle-mx">
<i class="sdqMsDanIconFont"></i>
</button>
</div>
</div>
</nav>
<div id="sidebar-nav" class="sidebar">
<div class="sidebar-scroll">
<div class="sidebar-author">
<a href="/">
<img src="https://s1.ax1x.com/2023/08/10/pPm8IIK.jpg">
<img src="">
</a>
</div>
<nav>
<div class="sdq-count">
<span>文章</span>156
<span>标签</span>0
<span>分类</span>27
</div>
<div class="social-btns">
<a target="_blank" class="btn GitHub" href="https://github.com/sdqOS/">
<i class="sdqMsDanIconFont sdq3 sdqgithub"></i>
</a>
<a target="_blank" class="btn qq" href="https://wpa.qq.com/msgrd?v=3&uin=3083329400&site=qq&menu=yes">
<i class="sdqMsDanIconFont sdq3 sdqqq1"></i>
</a>
</div>
<div class="social-search">
<input id="local-search-input" />
<!-- <button class="sdq3 sdqfeiji"></button> -->
</div>
<style>
.search-result{
display: none;
}
.search-result-list li {
list-style: none;
line-height: 32px;
margin-bottom: 15px;
}
</style>
<div id="local-search-result"></div>
<script>
var search_path = "search.xml";
if (search_path.length == 0) {
search_path = "/search.xml";
}
var path = "/" + search_path;
searchFunc(path, 'local-search-input', 'local-search-result');
</script>
<ul class="nav">
<li>
<a target="_self" href="/" class="iframe_link active"><span>首页</span>
</a>
</li>
<li>
<a id="axis" target="_self" href="/axis.html" class="nav-togg">
<span>时间轴</span>
</a>
</li>
<li>
<a href="javascript:;" class="nav-togg" target="_self" ><span>文章分类</span>
</a>
<div>
<ul>
<li>
<a href="/categories/Android/">Android</a>
<span>4</span>
</li>
<li>
<a href="/categories/CSS/">CSS</a>
<span>11</span>
</li>
<li>
<a href="/categories/C语/">C语</a>
<span>11</span>
</li>
<li>
<a href="/categories/EJS/">EJS</a>
<span>1</span>
</li>
<li>
<a href="/categories/ES6/">ES6</a>
<span>2</span>
</li>
<li>
<a href="/categories/Git/">Git</a>
<span>1</span>
</li>
<li>
<a href="/categories/HTML/">HTML</a>
<span>3</span>
</li>
<li>
<a href="/categories/Java/">Java</a>
<span>7</span>
</li>
<li>
<a href="/categories/JavaScript/">JavaScript</a>
<span>13</span>
</li>
<li>
<a href="/categories/Linux/">Linux</a>
<span>5</span>
</li>
<li>
<a href="/categories/Python/">Python</a>
<span>5</span>
</li>
<li>
<a href="/categories/React/">React</a>
<span>20</span>
</li>
<li>
<a href="/categories/Three-js/">Three.js</a>
<span>3</span>
</li>
<li>
<a href="/categories/TypeScript/">TypeScript</a>
<span>13</span>
</li>
<li>
<a href="/categories/Vue-js/">Vue.js</a>
<span>4</span>
</li>
<li>
<a href="/categories/人工智能/">人工智能</a>
<span>2</span>
</li>
<li>
<a href="/categories/大数据/">大数据</a>
<span>3</span>
</li>
<li>
<a href="/categories/实用软件/">实用软件</a>
<span>1</span>
</li>
<li>
<a href="/categories/小程序开发/">小程序开发</a>
<span>6</span>
</li>
<li>
<a href="/categories/搭建博客/">搭建博客</a>
<span>1</span>
</li>
<li>
<a href="/categories/数据库/">数据库</a>
<span>3</span>
</li>
<li>
<a href="/categories/数据结构/">数据结构</a>
<span>2</span>
</li>
<li>
<a href="/categories/游戏/">游戏</a>
<span>1</span>
</li>
<li>
<a href="/categories/爬虫/">爬虫</a>
<span>23</span>
</li>
<li>
<a href="/categories/算法/">算法</a>
<span>1</span>
</li>
<li>
<a href="/categories/需求分析图/">需求分析图</a>
<span>1</span>
</li>
<li>
<a href="/categories/鲲鹏云/">鲲鹏云</a>
<span>4</span>
</li>
</ul>
</div>
</li>
<li>
<a href="javascript:;" class="nav-togg" target="_self" ><span>最新文章</span>
</a>
<div>
<ul>
<li>
<a href="/photo-video.html">手机照片视频恢复工具</a>
</li>
<li>
<a href="/Dad-n-Me.html">游戏篇 狂扁小朋友修仙版(攻略)</a>
</li>
<li>
<a href="/Spark.html">大数据 Spark</a>
</li>
<li>
<a href="/CSS-Flex.html">CSS Flex样式</a>
</li>
<li>
<a href="/CSS-Static-Relative-Absolute-Fixed-Sticky.html">CSS 定位布局</a>
</li>
</ul>
</div>
</li>
</ul>
</nav>
</div>
</div>
<style>
/* CSS */
.canvas {
position:fixed;
width: 1920px;
height: 862px;
left: -360px;
top: 0;
z-index: -1;
}
</style>
<div class="sdq-bg">
<div class="div_bg"></div>
</div>
<!-- Scripts -->
<script>
// 在这里写你的代码...
(function() {
"use strict";
var $body = document.querySelector('body');
/*$('body').addClass('is-preload'); 添加灰面遮罩,可能存在问题
//$('.sdq-bg').css('background','none'); */
// Methods/polyfills.
// classList | (c) @remy | github.com/remy/polyfills | rem.mit-license.org
!function(){function t(t){this.el=t;for(var n=t.className.replace(/^\s+|\s+$/g,"").split(/\s+/),i=0;i<n.length;i++)e.call(this,n[i])}function n(t,n,i){Object.defineProperty?Object.defineProperty(t,n,{get:i}):t.__defineGetter__(n,i)}if(!("undefined"==typeof window.Element||"classList"in document.documentElement)){var i=Array.prototype,e=i.push,s=i.splice,o=i.join;t.prototype={add:function(t){this.contains(t)||(e.call(this,t),this.el.className=this.toString())},contains:function(t){return-1!=this.el.className.indexOf(t)},item:function(t){return this[t]||null},remove:function(t){if(this.contains(t)){for(var n=0;n<this.length&&this[n]!=t;n++);s.call(this,n,1),this.el.className=this.toString()}},toString:function(){return o.call(this," ")},toggle:function(t){return this.contains(t)?this.remove(t):this.add(t),this.contains(t)}},window.DOMTokenList=t,n(Element.prototype,"classList",function(){return new t(this)})}}();
// canUse
window.canUse=function(p){if(!window._canUse)window._canUse=document.createElement("div");var e=window._canUse.style,up=p.charAt(0).toUpperCase()+p.slice(1);return p in e||"Moz"+up in e||"Webkit"+up in e||"O"+up in e||"ms"+up in e};
// window.addEventListener
(function(){if("addEventListener"in window)return;window.addEventListener=function(type,f){window.attachEvent("on"+type,f)}})();
// 在页面加载时播放初始动画。
window.addEventListener('load', function() {
window.setTimeout(function() {
$body.classList.remove('is-preload');
}, 100);
});
// Slideshow Background.
if (window.addEventListener) { window.addEventListener("load",sdqimgbg, false);}
else if (window.attachEvent) {window.attachEvent("onload",sdqimgbg); }
else{ window.onload =sdqimgbg; }
function sdqimgbg(){
(function() {
// Settings.
var settings = {
// Images (in the format of 'url': 'alignment').
images: {
'': 'center',
'': 'center',
'': 'center',
'': 'center'
},
// Delay.
delay: 6000
};
// Vars.
var pos = 0, lastPos = 0,
$wrapper, $bgs = [], $bg,
k, v;
var $sidebar = document.querySelector('#sidebar-nav');
var $main = document.querySelector('.main');
// Create BG wrapper, BGs.
$wrapper = document.createElement('div');
$wrapper.id = 'bg';
$sidebar.appendChild($wrapper);
//$main.appendChild($wrapper);
for (k in settings.images) {
// Create BG.
$bg = document.createElement('div');
$bg.style.backgroundImage = 'url("' + k + '")';
$bg.style.backgroundPosition = settings.images[k];
$wrapper.appendChild($bg);
// Add it to array.
$bgs.push($bg);
}
// Main loop.
$bgs[pos].classList.add('visible');
$bgs[pos].classList.add('top');
// Bail if we only have a single BG or the client doesn't support transitions.
if ($bgs.length == 1
|| !canUse('transition'))
return;
window.setInterval(function() {
lastPos = pos;
pos++;
// Wrap to beginning if necessary.
if (pos >= $bgs.length)
pos = 0;
// Swap top images.
$bgs[lastPos].classList.remove('top');
$bgs[pos].classList.add('visible');
$bgs[pos].classList.add('top');
}, settings.delay);
})(); // end
}
})();
</script>
<style>
body {
background-color: #000;
}
body.is-preload *, body.is-preload *:before, body.is-preload *:after {
-moz-animation: none !important;
-webkit-animation: none !important;
-ms-animation: none !important;
animation: none !important;
-moz-transition: none !important;
-webkit-transition: none !important;
-ms-transition: none !important;
transition: none !important;
}
/* BG */
#bg {
-moz-transition: opacity 2s ease-in-out;
-webkit-transition: opacity 2s ease-in-out;
-ms-transition: opacity 2s ease-in-out;
transition: opacity 2s ease-in-out;
height: 100%;
left: 0;
opacity: 0.2;
position: fixed;
top: 0;
width: 100%;
z-index: -1;
}
#bg div {
-moz-transition: opacity 3s ease, visibility 3s;
-webkit-transition: opacity 3s ease, visibility 3s;
-ms-transition: opacity 3s ease, visibility 3s;
transition: opacity 3s ease, visibility 3s;
background-size: cover;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
width: 150%;
}
#bg div.visible {
-moz-animation: bg 45s linear infinite;
-webkit-animation: bg 45s linear infinite;
-ms-animation: bg 45s linear infinite;
animation: bg 45s linear infinite;
opacity: 1;
visibility: visible;
z-index: 1;
}
#bg div.visible.top {
z-index: 2;
}
@media screen and (max-width: 1280px) {
#bg div.visible {
-moz-animation: bg 29.25s linear infinite;
-webkit-animation: bg 29.25s linear infinite;
-ms-animation: bg 29.25s linear infinite;
animation: bg 29.25s linear infinite;
}
}
@media screen and (max-width: 736px) {
#bg div.visible {
-moz-animation: bg 18s linear infinite;
-webkit-animation: bg 18s linear infinite;
-ms-animation: bg 18s linear infinite;
animation: bg 18s linear infinite;
}
}
#bg div:only-child {
-moz-animation-direction: alternate !important;
-webkit-animation-direction: alternate !important;
-ms-animation-direction: alternate !important;
animation-direction: alternate !important;
}
body.is-preload #bg {
opacity: 0;
}
@-moz-keyframes bg {
0% {
-moz-transform: translateX(0);
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
-moz-transform: translateX(-25%);
-webkit-transform: translateX(-25%);
-ms-transform: translateX(-25%);
transform: translateX(-25%);
}
}
@-webkit-keyframes bg {
0% {
-moz-transform: translateX(0);
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
-moz-transform: translateX(-25%);
-webkit-transform: translateX(-25%);
-ms-transform: translateX(-25%);
transform: translateX(-25%);
}
}
@-ms-keyframes bg {
0% {
-moz-transform: translateX(0);
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
-moz-transform: translateX(-25%);
-webkit-transform: translateX(-25%);
-ms-transform: translateX(-25%);
transform: translateX(-25%);
}
}
@keyframes bg {
0% {
-moz-transform: translateX(0);
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
-moz-transform: translateX(-25%);
-webkit-transform: translateX(-25%);
-ms-transform: translateX(-25%);
transform: translateX(-25%);
}
}
</style>
<div class="main">
<div class="main-content">
<style>
#sdqPost:hover{
background-color: rgba(255, 255, 255, 0.5)!important;
}
</style>
<div class="sdq">
<div class="sdq-post" id="sdqPost">
<div class="sdq-title">
<h1>人工智比赛</h1>
</div>
<div id="post" class="sdq-post-Statistics">
<a>2021年08月05日</a>
<a class="post-count">99 字</a>
<a class=" -link" href="/categories/%E4%BA%BA%E5%B7%A5%E6%99%BA%E8%83%BD/">人工智能</a>
</div>
<div id="modal" style="display:none">
<aside id="article-toc" class="fixed-toc">
<div id="article-toc-inner">
<strong class="sidebar-title">目录</strong>
<ol class="toc"><li class="toc-item toc-level-1"><a class="toc-link" href="#%E4%BA%BA%E5%B7%A5%E6%99%BA%E8%83%BD%E8%AE%AD%E7%BB%83%E5%B8%88-%E5%88%9D%E8%B5%9B%E5%A4%8D%E4%B9%A0%E8%B5%84%E6%96%99"><span class="toc-text">人工智能训练师 初赛复习资料</span></a></li></ol>
</div>
</aside>
</div>
<a href="#modal" class="second">
<div class="i">
<i style="font-size:20px" class="sdq3 sdqfasong">
<span style="font-size:0px">
</i>
</div>
</a>
<script>
$(".second .i").mouseover(function(){
$(".second .i span").css("font-size","18px");
});
$(".second .i").mouseleave(function(){
$(".second .i span").css("font-size","0px");
});
</script>
<div>
<article>
<p><strong>人工智能训练师个人整理</strong></p>
<a id="more"></a>
<h1 id="人工智能训练师-初赛复习资料"><a href="#人工智能训练师-初赛复习资料" class="headerlink" title="人工智能训练师 初赛复习资料"></a>人工智能训练师 初赛复习资料</h1><p><strong>2021.8.12</strong></p>
<p><strong>1. JavaScript Object Notation(JavaScript 对象表示法, JSON是一种基于文本的数据交换格式) (考判断题+多选题)</strong></p>
<p><strong>2. JSON有两种表示结构, 对象和数组 (考判断题+多选题)</strong></p>
<p><strong>3. JSON对象结构以”{“开始, 以”}”结束中间部分由0或多个以”,”分隔的”key(关键字)/value(值)”对构成, 关键字和值之间以”:”分隔 (考判断题)</strong></p>
<p><strong>4. JSON数组结构以”[“开始, “]”结束中间由0或多个以”,”分隔的值列表组成 (考判断题)</strong></p>
<p><strong>5. Extensible Markup Language(可扩展标记语言, XML), 是一种允许用户对自己的标记进行定义的源语言, 可以用来标记数据, 定义数据类型 (考单选题+判断题+多选题)</strong></p>
<p><strong>6. XML格式的文件由标签对组成 (考判断题)</strong></p>
<p><strong>7. XML格式的文件必须有根元素 (考判断题)</strong></p>
<p><strong>8. XML格式的文件必须有关闭标签 (考判断题)</strong></p>
<p><strong>9. XML格式的文件标签中区分大小写字母 (考判断题)</strong></p>
<p><strong>10. XML属性必须加引号 (考判断题)</strong></p>
<p><strong>11. TXT是微软在操作系统上附带的一种文本格式, 主要存储文本信息(文字信息) (考判断题)</strong></p>
<p><strong>12. Executable File(可执行文件, EXE File)可以加载到内存中, 并由操作系统加载程序执行, 是可以在操作系统存储空间中浮动定位的可执行程序 (考判断题)</strong></p>
<p><strong>13. DOC是电脑文件常见文件扩展名的一种, 该格式原是纯文字文件使用的, 多见于不同的操作系统中软硬件的使用说明至20世纪90年代, 微软在Office Word中使用了.doc作为扩展名, 并成为了流行的格式 (考单选题+判断题)</strong></p>
<p><strong>14. MOV即QuickTime封装格式(也叫影片格式), 它是Apple公司开发的一种音频, 视频文件封装, 用于存储常用数字媒体类型 (考单选题+判断题)</strong></p>
<p><strong>15. Audio Video Interleaved(音频视频交错格式, AVI)由微软公司于1992年11月推出, 并作为其Windows视频软件一部分的一种多媒体容器格式 (考单选题+判断题)</strong></p>
<p><strong>16. Joint Photographic Experts Group(JPEG)是JPEG标准的产物该标准国际标准化组织制订, 是面向连续色调静止图像的一种压缩标准JPEG格式是最常用的图像文件格式, 后缀名为.jpg或.jpeg (考单选题+判断题)</strong></p>
<p><strong>17. 逗号分隔值(Comma-Separated Values, CSV)有时也称为字符分隔值, 其文件以纯文本形式存储表格数据(数字和文本) (考单选题+判断题)</strong></p>
<p><strong>18. CSV文件开头不留空, 以行为单位 (考判断题)</strong></p>
<p><strong>19. CSV文件可含或不含列名, 含列名则居文件第一行 (考单选题+判断题)</strong></p>
<p><strong>20. CSV文件一行数据不跨行, 无空行 (考判断题)</strong></p>
<p><strong>21. CSV文件列内容如存在半角引号(即”), 应替换成半角双引号(“”)转义, 即用半角双引号(即””)将该字段值包含起来 (考单选题+判断题)</strong></p>
<p><strong>22. CSV文件内码格式不限, 可为 ASCII, Unicode 或者其他 (考单选题+判断题)</strong></p>
<p><strong>24. FLASH VIDEO(FLV)流媒体格式是随着Flash MX的推出发展而来的视频格式 (考单选题+判断题)</strong></p>
<p><strong>25. WPS指WPS OFFICEWPS Office是由北京金山办公软件股份有限公司自主研发的一款办公软件套件, 可以实现办公软件最常用的文字, 表格, 演示, PDF阅读等多种功能 (考单选题+判断题+多选题)</strong></p>
<p><strong>26. BLP是一种图片压缩格式, 体积小, 不能直接编辑, 是游戏中模型贴图的应用格式 (考判断题)</strong></p>
<p><strong>27. XLS指Microsoft Excel工作表, 是一种常用的电子表格的格式 (考判断题)</strong></p>
<p><strong>28. 在同一台计算机中, 内存比外存存取速度快 (考判断题)</strong></p>
<p><strong>29. 32位微处理器中的32表示的技术指标是字长 (考判断题)</strong></p>
<p><strong>30. 目前制造计算机所采用的电子器件是超大规模集成电路 (考判断题)</strong></p>
<p><strong>31. Microsoft Office PowerPoint是微软公司的演示文稿软件用户可以在投影仪或者计算机上进行演示, 也可以将演示文稿打印出来, 制作成胶片, 以便应用到更广泛的领域中 (考判断题)</strong></p>
<p><strong>32. 计算机中常用的文本编码类型有ASCII, GB2312, Unicode, UTF-8 (考判断题+多选题)</strong></p>
<p><strong>33. 二进制文件按二进制编码方式来存储文件 (考判断题)</strong></p>
<p><strong>34. 数据以二进制编码方式存储在计算机文件中 (考判断题)</strong></p>
<p><strong>35. 机器学习是一门多领域交叉学科, 涉及概率论, 统计学, 逼近论, 凸分析, 算法复杂度理论等多个领域机器学习专门研究计算机怎样模拟或实现人类的学习行为, 以获取新的知识或技能, 重新组织已有的知识结构使之不断改善自身的性能 (考判断题+多选题)</strong></p>
<p><strong>36. 深度学习是通过建立人工神经网络, 用层次化机制来表示客观世界, 并解释所获取的知识, 例如图像, 声音和文本 (考判断题+多选题)</strong></p>
<p><strong>37. 深度学习的主要方式是监督学习, 无监督学习, 半监督学习和强化学习</strong></p>
<p><strong>38. 监督学习是利用一组已知类别的样本来调整分类器的参数, 使其达到所要求性能的过程, 也称为监督训练或有教师学习 (考判断题)</strong></p>
<p><strong>39. 无监督学习根据类别未知(没有被标记)的训练样本解决模式识别中的各种问题 (考判断题)</strong></p>
<p><strong>40. 半监督学习是监督学习与无监督学习相结合的一种学习方法半监督学习同时使用未标记数据和已标记数据来进行模式识别工作 (考判断题)</strong></p>
<p><strong>41. 强化学习又称再励学习, 评价学习或增强学习, 用于描述和解决智能体在与环境的交互过程中通过学习策略以达成回报最大化或实现特定目标的问题 (考判断题)</strong></p>
<p><strong>42. 智能语音处理技术包括身份识别, 语种识别, 情感识别, 语音分离, 语音合成等 (考多选题)</strong></p>
<p><strong>43. 生物特征识别技术包括步态识别, 声纹识别, 虹膜识别等 (考多选题)</strong></p>
<p><strong>44. 立体视觉是计算机视觉领域的一个重要课题, 它的目的在于重构场景的三维几何信息 (考判断题)</strong></p>
<p><strong>45. 目前的自然语言处理技术未完全达到人类智能 (考判断题)</strong></p>
<p><strong>46. 自然语言处理不一定以经过标注过的数据作为输入 (考判断题)</strong></p>
<p><strong>47. 自然语言处理不一定以有监督学习的方式实现 (考判断题)</strong></p>
<p><strong>48. 自然语言处理可以通过无监督学习的方式实现 (考判断题)</strong></p>
<p><strong>49. 数据预处理是一种数据挖掘技术, 包括数据清洗, 数据集成, 数据归约, 数据变换等多种方法 (考多选题)</strong></p>
<p><strong>50. 在数据挖掘之前使用数据预处理技术先对数据进行一定的处理, 将极大提高数据挖掘的质量, 降低实际数据挖掘所需的时间 (考判断题)</strong></p>
<p><strong>51. 数据变换方法包括数据平滑, 数据聚集, 数据泛化, 数据规范化等 (考多选题)</strong></p>
<p><strong>52. 训练有监督学习模型时会将数据集划分为训练集, 验证集和测试集 (考多选题)</strong></p>
<p><strong>53. 数据分析方法包括聚类分析, 因子分析, 相关分析, 方差分析, 回归分析等 (考多选题)</strong></p>
<p><strong>54. 缺失数据处理方法包括删除含有缺失值的记录, 均值插补, 同类均值插补等 (考多选题)</strong></p>
<p><strong>55. 数据治理是指对于数据采集, 数据清洗, 数据标注到数据交付整个项目生命周期每个阶段进行识别, 度量, 监控, 预警等一系列管理措施 (考多选题)</strong></p>
<p><strong>56. 数据分割是指把逻辑上是统一整体的数据分割成较小的, 可以独立管理的物理单元进行存储, 以便于重构, 重组和恢复, 以提高创建索引和顺序扫描的效率 (考多选题)</strong></p>
<p><strong>57. 数据清洗是指发现并纠正数据文件中可识别错误的最后一道程序, 包括检查数据一致性, 处理无效值和缺失值等 (考单选题+判断题)</strong></p>
<p><strong>58. 为了避免在数据传输过程中数据被窃取, 被复制等, 应对数据传输过程进行压缩, 加密等操作 (考单选题+判断题)</strong></p>
<p><strong>59. 数据一致性检查是根据每个变量的合理取值范围和相互关系, 检查数据是否合乎要求, 以及发现超出正常范围, 逻辑不合理或者相互矛盾的数据, 便于进一步核对和纠正 (考单选题+判断题)</strong></p>
<p><strong>60. 采用区块链的数据标注平台采用强加密算法和分布式技术来保证数据安全 (考单选题+判断题)</strong></p>
<p><strong>61. True Positive(TP) 是指某(些)个正样本被预测判定为正, 此种情况可以称作判断为真的正确情况 (考判断题)</strong></p>
<p><strong>62. True Negative(TN)是指某(些)个负样本被预测判定为负, 此种情况可以称作判断为假的正确情况 (考判断题)</strong></p>