-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
2269 lines (1841 loc) · 109 KB
/
index.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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Chinese NLP Course | For You</title>
<meta name="description"
content="Natural Language Processing course with interactive lectures-blogs, research thinking exercises and related papers with summaries. Also a lot of fun inside!">
<link rel="stylesheet" href="./css/main.css">
<link rel="canonical" href="http://lena-voita.github.io/nlp_course.html">
<!-- diff from head.html begin -->
<link rel="mask-icon" href="./resources/lectures/ico/course_logo.png">
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="./resources/lectures/ico/course_logo.png">
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="./resources/lectures/ico/course_logo.png">
<!-- diff from head.html end -->
<!--<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>-->
</head>
<body>
<header class="site-header">
<div class="wrapper">
<div id="title-image" style="display:inline">
<img class="site-img" src="./img/ico/logo.jpeg" />
</div>
<div id="title-texts" style="display:inline">
<a class="site-title" href="https://github.com/MLNLP-World" target="_blank">MLNLP</a>
</div>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242"
d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z" />
<path fill="#424242"
d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z" />
<path fill="#424242"
d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z" />
</svg>
</a>
<div class="trigger">
<a class="page-link" href="https://lena-voita.github.io/" target="_blank">原作者:Lena Voita</a>
<a class="page-link" href="https://lena-voita.github.io/nlp_course.html" target="_blank">原始英文版本</a>
<a class="page-link" href="./about.html" target="_blank">关于我们</a>
<a class="page-link" href="https://github.com/MLNLP-World/NLP-Course-Chinese" target="_blank">
<img height="18" src="./img/ico/github.png" style="vertical-align:middle;" />Github
</a>
</div>
</nav>
</div>
</header>
<!-- the next two lines are inserted once per page even if there are several shtukovinas,
the rest is one-per-shtukovina; read more: https://flickity.metafizzy.co/options.html -->
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css" media="screen">
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<!-- MathJax -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.demo_sidebar {
margin: 0;
padding: 0;
background-color: white;
position: relative;
height: auto;
width: 290px;
}
.demo_sidebar_text {
font-size: 18px;
}
.demo_sidebar_comment {
font-size: 15px;
margin-left: 10px;
font-family: "Comic Neue", "Arial";
}
.demo_sidebar a {
display: block;
color: black;
padding: 8px;
text-decoration: none;
}
.demo_sidebar a li {
margin-left: 5px;
padding: 0px;
}
.demo_sidebar a:hover {
box-shadow: 0 3px 6px #6e8f27, 0 1px 1px #6e8f27;
}
.demo_sidebar a:hover:not(.active) {
background-color: #f3f3f3;
}
.demo_sidebar .main_components {
background-color: #f3f3f3;
}
.demo_sidebar .extra_components {
background-color: #eaeaea;
}
#demo_sidebar_research_thinking:hover {
box-shadow: 0 3px 6px #a68305, 0 1px 1px #a68305;
}
#demo_sidebar_related_papers:hover {
box-shadow: 0 3px 6px #8a4972, 0 1px 1px #8a4972;
}
#demo_sidebar_fun:hover {
box-shadow: 0 3px 6px #377b94, 0 1px 1px #377b94;
}
</style>
<style>
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comic+Neue&display=swap");
#main_page_content {
margin-left: 300px;
padding: 30px;
padding-left: 70px;
text-align: justify;
}
.sidebar {
margin: 0;
padding: 0;
width: 270px;
background-color: #fafafa;
position: fixed;
height: 100%;
overflow: auto;
z-index: 1;
}
.sidebar a,
.dropdown-btn {
display: block;
color: black;
padding: 8px;
text-decoration: none;
border-right: 5px solid #b7db67;
}
.sidebar a li {
margin-left: 10px;
padding: 0px;
}
.dropdown-container {
display: none;
background-color: #f4f4f4;
}
.active_caret .fa-caret-down {
color: #b7db67;
font-size: 30px;
}
.fa-caret-down {
float: right;
padding-right: 8px;
}
.sidebar a.active {
background-color: #e3e3e3;
color: black;
}
.sidebar a:hover {
box-shadow: 0 3px 6px #6e8f27, 0 1px 1px #6e8f27;
}
.sidebar a:hover:not(.active) {
background-color: #f3f3f3;
}
.sidebar .extra_components {
background-color: #eaeaea;
}
#sidebar_analysis {
padding: 10px;
}
#sidebar_research_thinking {
padding: 10px;
border-right: 5px solid #fad400;
}
#sidebar_research_thinking:hover {
box-shadow: 0 3px 6px #a68305, 0 1px 1px #a68305;
}
#sidebar_related_papers {
padding: 10px;
border-right: 5px solid #d192ba;
}
#sidebar_related_papers:hover {
box-shadow: 0 3px 6px #8a4972, 0 1px 1px #8a4972;
}
#sidebar_fun {
padding: 10px;
border-right: 5px solid #6fb7d1;
}
#sidebar_fun:hover {
box-shadow: 0 3px 6px #377b94, 0 1px 1px #377b94;
}
.sidebar_ico {
float: right;
height: 20;
}
div.content {
margin-left: 200px;
padding: 1px 16px;
height: 1000px;
}
#sidebar_small {
width: 60px;
}
@media screen and (max-width: 1000px) {
.sidebar {
width: 200px;
}
#main_page_content {
margin-left: 200px;
padding-left: 50px;
}
#for_you_in_sidebar {
display: none;
}
}
@media screen and (max-width: 800px) {
div.content {
margin-left: 0;
}
#main_page_content {
margin-left: 80px;
padding: 15px;
}
#demo_sidebar {}
}
.softmax_tau_bokeh {
font-size: 16px;
}
.card_with_ico {
position: relative;
padding: 10px;
margin: 10px;
}
.card_with_ico p {
padding: 10px;
}
.card_with_ico ul {
padding: 10px;
}
.card_with_ico .text_box_green {
border: 1px solid #d8e8b5;
border-radius: 5px;
margin-left: 30px;
}
.card_with_ico .text_box_pink {
border: 1px solid #dec8d6;
border-radius: 5px;
margin-left: 30px;
}
.card_with_ico .text_box_yellow {
border: 1px solid #f0e4a5;
border-radius: 5px;
margin-left: 30px;
}
.card_with_ico .ico {
float: left;
width: 25px;
}
.text_box_green {
border: 1px solid #d8e8b5;
border-radius: 5px;
display: table;
margin-left: 20px;
}
.text_box_green p {
padding: 10px;
padding-bottom: 0px;
}
.green_left_thought {
border-left: 5px solid #b7db67;
margin: 10px;
margin-left: 20px;
padding: 0px;
background-color: #fafcf5;
}
.green_left_thought p {
margin-left: 10px;
padding: 5px;
}
.box_green_left {
border-left: 2px solid #79a123;
margin-left: 10px;
padding: 10px;
}
.box_green_right {
border-right: 2px solid #79a123;
margin-right: 10px;
padding: 10px;
}
.box_violet_right {
border-right: 2px solid #67468f;
margin-right: 10px;
padding: 10px;
}
.box_pink_left {
border-left: 2px solid #7a3160;
margin-left: 5px;
padding: 10px;
}
.box_yellow_left {
border-left: 2px solid #d6b000;
margin-left: 5px;
padding: 10px;
}
.box_blue_left {
border-left: 2px solid #0278a1;
margin-left: 5px;
padding: 10px;
}
.paper_title {
text-align: center;
padding: 5px;
padding-top: 0px;
font-size: 16px;
}
.paper_authors {
font-size: 14px;
text-align: center;
margin-bottom: 10px;
}
p {
text-align: justify;
}
.greenCard {
width: 100%;
border: 1px solid #ccc;
border-radius: 1px;
margin: 10px 5px;
padding: 3px;
display: grid;
grid-template-rows: auto auto;
}
#thumbnail_green {
box-shadow: 0 2px 4px #6e8f27, 0 1px 1px #6e8f27;
}
#thumbnail_green:hover {
box-shadow: 0 6px 12px #6e8f27, 0 4px 4px #6e8f27;
}
#thumbnail_violet {
box-shadow: 0 2px 4px #655578, 0 1px 1px #655578;
}
#thumbnail_violet:hover {
box-shadow: 0 6px 12px #655578, 0 4px 4px #655578;
}
#thumbnail_paper {
box-shadow: 0 2px 4px #ab859e, 0 1px 1px #ab859e;
}
#thumbnail_paper:hover {
box-shadow: 0 6px 12px #ab859e, 0 4px 4px #ab859e;
}
#thumbnail_blue {
box-shadow: 0 2px 4px #377b94, 0 1px 1px;
}
#thumbnail_blue:hover {
box-shadow: 0 6px 12px #377b94, 0 4px 4px #377b94;
}
.paperCard {
width: 100%;
border: 1px solid #ccc;
border-radius: 1px;
margin: 10px 5px;
padding: 3px;
display: grid;
grid-template-rows: auto auto;
}
.paperIntro {
display: grid;
grid-template-columns: 70% 30%;
}
.showMePaper {
box-shadow: 0 2px 4px #a68305, 0 2px 1px #a68305;
}
.showMePaper:hover {
box-shadow: 0 3px 6px #ab859e, 0 4px 4px #ab859e;
}
.cardContent {
padding: 10px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.conf_name {
float: right;
font-family: sans-serif;
font-size: 13px;
margin-bottom: 0px;
background-color: #f7edf4;
border: 1px solid #d1a1c3;
border-radius: 1px;
padding: 0px 4px 0px 4px;
}
.paper_circle {
height: 10px;
width: 10px;
background-color: #cf99be;
border: 1px solid #8c2b6e;
border-radius: 50%;
}
.research_circle {
height: 10px;
width: 10px;
background-color: #ffda00;
border: 1px solid #998300;
border-radius: 50%;
}
.fun_circle {
height: 10px;
width: 10px;
background-color: #68c7e8;
border: 1px solid #0278a1;
border-radius: 50%;
}
.green_circle {
height: 10px;
width: 10px;
background-color: #b7db67;
border: 1px solid #598005;
border-radius: 50%;
}
.violet_circle {
height: 10px;
width: 10px;
background-color: #b59fcf;
border: 1px solid #67468f;
border-radius: 50%;
}
.data_text {
font-family: "Comic Neue", "Arial";
}
.researchCard {
width: 100%;
border: 1px solid #ccc;
border-radius: 1px;
margin: 10px 5px;
padding: 3px;
display: grid;
grid-template-rows: auto auto;
}
.researchIntro {
display: grid;
grid-template-columns: 70% 30%;
}
#thumbnail_research {
box-shadow: 0 2px 4px #a68305, 0 1px 1px #a68305;
}
#thumbnail_research:hover {
box-shadow: 0 6px 12px #a68305, 0 4px 4px #a68305;
}
.research_title {
text-align: center;
padding: 5px;
font-size: 18px;
font-family: "Comic Neue", "Arial";
background-color: #fafaf5;
}
.research_tag {
float: right;
font-family: sans-serif;
font-size: 13px;
margin-bottom: 0px;
background-color: #f5f0d5;
border: 1px solid #fad400;
border-radius: 1px;
padding: 0px 4px 0px 4px;
}
.research_question {
font-weight: bold;
font-size: 18px;
background-color: #fff4b3;
margin-right: 15px;
padding-left: 5px;
padding-right: 5px;
}
.research_summary {
padding: 5px;
font-size: 18px;
font-family: "Comic Neue", "Arial";
background-color: #fafaf5;
margin-left: 10px;
}
.text_table td,
.text_table th {
text-align: center;
padding-left: 10px;
padding-right: 10px;
padding-top: 2px;
padding-bottom: 2px;
}
</style>
<!--##################################################-->
<div>
<div class="sidebar" id="sidebar">
<a href="javascript:void(0)" id="close_sidebar_btn" onclick="closeNav()"
style="text-align:center;font-size:30px;padding:0px;">⇤</a>
<a class="active" href="#main_page_content" style="font-weight: bold;">
<img height="18" class='sidebar_ico' src="./resources/lectures/ico/course_logo.png"
style="margin-right: 8px;margin-left: 8px;margin-top: 4px;" />
NLP Course <font color="#92bf32" id="for_you_in_sidebar">| 专属定制</font></a>
<a href="#whats_inside"><b>本课程包含什么?</b></a>
<div class="dropdown-scope">
<a class="dropdown-btn active_caret"><b>课程</b>
<i class="fa fa-caret-down"></i>
</a>
<div class="dropdown-container" style="display:block;">
<a href="#preview_word_emb"><span style="margin-right:15px;font-size:14px;">•</span>
词嵌入</a>
<a href="#preview_text_clf"><span style="margin-right:15px;font-size:14px;">•</span>
文本分类</a>
<a href="#preview_lang_models"><span style="margin-right:15px;font-size:14px;">•</span>
语言模型</a>
<a href="#preview_seq2seq_attn"><span style="margin-right:15px;font-size:14px;">•</span>
序列到序列与注意力机制</a>
<a href="#preview_transfer"><span style="margin-right:15px;font-size:14px;">•</span>
迁移学习</a>
<a href="#coming_soon_main_course"><span style="margin-right:15px;font-size:14px;">•</span>
<font color="#888"> ...未完待续</font>
</a>
</div>
</div>
<div class="dropdown-scope">
<a class="dropdown-btn active_caret"><b>补充资料</b>
<i class="fa fa-caret-down"></i>
</a>
<div class="dropdown-container" style="display:block;">
<a href="#supplementary"><span style="margin-right:15px;font-size:14px;">•</span>
卷积网络</a>
</div>
</div>
<a href="./change_log.html"><b>更新记录</b></a>
<a href="./about.html"><b>关于我们</b></a>
</div>
<div class="sidebar" id="sidebar_small" style="background-color: #f5f5f5;">
<a class="active" onclick="openNav()" style="text-align:center;">☰</a>
<a href="#main_page_content" style="text-align:center; font-size:20px;color:#7ca81e"> <i
class="fa fa-home"></i></a>
<!--<a href="#whats_inside" style="text-align:center; font-size:20px;color:#7ca81e"> <i class="fa fa-search"></i></a>-->
<!--<a href="#whats_inside_lectures" id="sidebar_analysis"> <img height="25" src="./resources/lectures/ico/analysis_empty.png"/></a>
<div class="extra_components">
<a href="#whats_inside_research_thinking" id="sidebar_research_thinking"><img height="30" src="./resources/lectures/ico/bulb_empty.png"/></a>
<a href="#whats_inside_related_papers" id="sidebar_related_papers"><img height="22" src="./resources/lectures/ico/book_empty.png"/></a>
<a href="#whats_inside_fun" id="sidebar_fun"><img height="30" src="./resources/lectures/ico/fun_empty.png" /></a>-->
<a href="#lectures" style="text-align:center; font-size:20px;color:#7ca81e"> <i
class="fa fa-list-ul"></i></a>
</div>
</div>
<script>
function openNav() {
document.getElementById("sidebar").style.display = "block";
document.getElementById("sidebar_small").style.display = "none";
document.getElementById("close_sidebar_btn").style.display = "block";
}
function closeNav() {
document.getElementById("sidebar").style.display = "none";
document.getElementById("sidebar_small").style.display = "block";
document.getElementById("close_sidebar_btn").style.display = "none";
}
</script>
<script>
function onResize() {
if (window.innerWidth >= 800) {
document.getElementById("sidebar").style.display = "block";
document.getElementById("sidebar_small").style.display = "none";
document.getElementById("close_sidebar_btn").style.display = "none";
} else {
document.getElementById("sidebar").style.display = "none";
document.getElementById("sidebar_small").style.display = "block";
}
}
window.onresize = onResize;
onResize();
</script>
<script>
/* Loop through all dropdown buttons to toggle between hiding and showing its dropdown content - This allows the user to have multiple dropdowns without any conflict */
var dropdown = document.getElementsByClassName("dropdown-btn");
var i;
for (i = 0; i < dropdown.length; i++) {
dropdown[i].addEventListener("click", function (event) {
this.classList.toggle("active_caret");
var dropdownButton = event.target || event.srcElement;
while (dropdownButton.className != "dropdown-scope")
dropdownButton = dropdownButton.parentElement;
var dropdownContent = dropdownButton.getElementsByClassName("dropdown-container")[0];
if (dropdownContent.style.display === "block") {
dropdownContent.style.display = "none";
} else {
dropdownContent.style.display = "block";
}
});
}
</script>
<div class="wrapper" id="main_page_content">
<div class="header">
<h1>Letter from Lena</font>
</h1>
</div>
<div class="main_content">
<p>To me, this course is something very personal and truly loved. I'm still surprised it turned out the way
it is, making my feelings about NLP public and for everyone to see. I'm very happy and grateful now the
course is available to many more people. Hope you enjoy it the way I did :)</p>
<p> For you.</p>
</div>
<div class="header">
<h1>NLP Course <font color="#92bf32">| 专属定制</font>
</h1>
</div>
<div class="main_content">
<p class="data_text">
这是<a href="https://lena-voita.github.io/">Lena Voita</a>从2018年秋季开始在<a
href="https://yandexdataschool.com" target="_blank">Yandex数据分析学院(YSDA)</a>教授的<a
href="https://github.com/yandexdataschool/nlp_course"
target="_blank">自然语言处理课程</a>的延伸。到目前为止,这里可能只涉及部分主题。
</p>
<div style="display: grid;
grid-template-columns: auto 290px;">
<div style="margin-right: 30px;">
<h3>这种新的课程形式是为了:</h3>
<ul>
<li><span style="font-size:18px;"><b>便捷</b></span><br>
<span class="data_text">
便于查找、学习和回顾(包括基础内容和高阶内容)并在实践中尝试。
</span>
</li>
<li style="margin-top:10px;"><span style="font-size:18px; "><b>清晰</b></span><br>
<span class="data_text">
每个部分,从前到后,不仅包括讲述的内容,更重要的是讲述和展示的方式,都是我深思熟虑之后的结果。
</span>
</li>
<li style="margin-top:10px;"><span style="font-size:18px; "><b>你(专属)</b></span> <br>
<span class="data_text">
我制作这些学习资料,以便你(是的,你!)可以自学。也就是说,你可以按照你自己的速度,学习你喜欢的内容。而我的主要目的是帮助你进入你自己的学习冒险之旅。
<strong>
<font color="#92bf32">专属定制</font>
</strong>
</span>
</li>
</ul>
</div>
<div class="demo_sidebar" style="font-family:helvetica;">
<div class="main_components">
<a href="#whats_inside_lectures">
课程博客
<span class="demo_sidebar_comment">包含</span>
<br><span style="padding:5px;" class="demo_sidebar_comment">
交互学习部分 & 练习
<img height="18" src="./resources/lectures/ico/paw_empty.png" class="sidebar_ico" />
<img height="20" src="./resources/lectures/ico/dumpbell_empty.png" class="sidebar_ico"
style="margin-right:10px;" />
</span>
<br><span style="padding:5px;" class="demo_sidebar_comment">
分析与解释<img height="25" src="./resources/lectures/ico/analysis_empty.png"
class="sidebar_ico" />
</span>
</a>
<a href="#whats_inside_lectures">
研讨会 & 作业
<br><span class="demo_sidebar_comment">资料位于我们的7.7k-☆课程仓库</span>
</a>
</div>
<div class="extra_components">
<a href="#whats_inside_research_thinking" id="demo_sidebar_research_thinking">
研究思考
<img height="30" src="./resources/lectures/ico/bulb_empty.png" class="sidebar_ico"
style="margin-top:10px;" />
<br><span class="demo_sidebar_comment">学习提出正确的问题</span>
</a>
<a href="#whats_inside_related_papers" id="demo_sidebar_related_papers">
相关论文
<img height="22" src="./resources/lectures/ico/book_empty.png" class="sidebar_ico"
style="margin-top:15px;" />
<br><span class="demo_sidebar_comment">包含总结和解释</span>
</a>
<a href="#whats_inside_fun" id="demo_sidebar_fun">
Have Fun!
<img height="35" src="./resources/lectures/ico/fun_empty.png" class="sidebar_ico"
style="margin-top:8px;" />
<br><span class="demo_sidebar_comment">just fun</span>
</a>
</div>
</div>
</div>
<hr style="height:2px; margin-bottom:15px;" color="#92bf32">
<p>
<span class="data_text">
如果你想要在你的论文、报告等材料中引用这些学习资料(例如:图片),你可以采用下述BibTex:
</span>
</p>
<div style="border: 1px solid #ccc;border-radius:15px;margin: 10px; padding: 4px;
background-color: #f5f5f5;width:80%;font-family:Courier;font-size:12px;">
<div style="margin-left:20px;">
@misc{voita2020nlpCourse,</br>
<div style="margin-left:15px;">
title={ {NLP} {C}ourse {F}or {Y}ou},</br>
url={https://lena-voita.github.io/nlp_course.html},</br>
author={Elena Voita},</br>
year={2020},</br>
month={Sep}</br>
</div>
}
</div>
</div>
<hr style="height:5px" color="#92bf32">
<br>
<div id="whats_inside">
<h1>本课程包含什么?你的冒险指南</h1>
<br>
<div style="border: 0px solid #ccc;border-radius:15px;margin: 10px; padding: 4px;
background-color: #f5f5f5;">
<div style="display: grid; grid-template-columns: 45% 55%; margin:10px;" id="whats_inside_lectures">
<div style="margin-right: 15px;">
<h2 style="margin-bottom:5px;">课程-博客</h2>
<p class="data_text" style="margin-bottom:2px;">
我尽可能使其:</p>
<ul class="data_text">
<li>直观、清晰、具有吸引力;</li>
<li>全面: 完整的课程甚至更多内容;</li>
<li>与时俱进,包含该领域最新内容。</li>
</ul>
<h3 style="margin-bottom:2px;">福利:</h3>
<ul class="data_text">
<li><a href="#whats_inside_research_thinking">研究思考</a>,</li>
<li><a href="#whats_inside_related_papers">相关论文</a>,</li>
<li><a href="#whats_inside_fun">Have Fun!</a></li>
</ul>
<h2 style="margin-bottom:2px;">研讨会 & 作业</h2>
<p class="data_text">
对于每个主题,你可以从我们的<a href="https://github.com/yandexdataschool/nlp_course"
target="_blank">7.7k-☆课程仓库</a>中获得资料。
</p>
<p class="data_text" style="margin-top:-7px;">
从2020年起,我们支持PyTorch和Tensorflow!
</p>
</div>
<div>
<!--############## begin of right part ####################################-->
<div class="green_circle" style="float:left; margin-left: 10px;"></div>
<div class="box_green_left" style="margin-left: 15px;">
<div class="greenCard" id="thumbnail_green" style="background-color:white;">
<div class="cardContent">
<img height="18" src="./resources/lectures/ico/paw_empty.png"
style="float:left; padding-right:10px; " />
<img height="20" src="./resources/lectures/ico/dumpbell_empty.png"
style="float:left; padding-right:20px; " />
<h3>交互部分 & 练习</h3>
<p class="data_text" style="font-size:14px;">
我经常会让你浏览一些包含可视化过程的“幻灯片”,操作一些东西或只是思考。
</p>
</div>
</div>
<div class="greenCard" id="thumbnail_green" style="background-color:white;">
<div class="cardContent">
<img height="30" src="./resources/lectures/ico/analysis_empty.png"
style="float:left; padding-right:20px; " />
<h3>分析与解释</h3>
<p class="data_text" style="font-size:14px;">
自2020年以来,顶级NLP会议(ACL、EMNLP)都设有"分析和可解释性"Track:这再次印证了分析是NLP不可或缺的一部分。
</p>
<p class="data_text" style="font-size:14px;">
每节课都有一小节是关于"模型、方法内部运作相关结果"的阐述。
</p>
</div>
</div>
</div>
<div class="green_circle" style="float:left; margin-left: 10px;"></div>
<!--######################### end of right part #########################-->
</div>
</div>
</div>
<br>
<div style="border: 0px solid #ccc;border-radius:15px;margin: 10px; padding: 4px;
background-color: #f5f5f5;">
<div style="display: grid; grid-template-columns: 45% 55%; margin:10px;"
id="whats_inside_research_thinking">
<div style="margin-right: 15px;">