-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1160 lines (648 loc) · 34.9 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 lang="zh-CN" data-default-color-scheme=auto>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://npm.elemecdn.com/lxgw-wenkai-screen-webfont/style.css" media="print" onload="this.media='all'">
<link rel="apple-touch-icon" sizes="76x76" href="/img/ucas.webp">
<link rel="icon" href="/img/ucas.webp">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="theme-color" content="#2f4154">
<meta name="author" content="Munger Yang">
<meta name="keywords" content="">
<meta property="og:type" content="website">
<meta property="og:title" content="munger写字的地方">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:site_name" content="munger写字的地方">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="Munger Yang">
<meta name="twitter:card" content="summary_large_image">
<meta name="referrer" content="no-referrer-when-downgrade">
<title>munger写字的地方</title>
<link rel="stylesheet" href="https://lib.baomitu.com/twitter-bootstrap/4.6.1/css/bootstrap.min.css" />
<!-- 主题依赖的图标库,不要自行修改 -->
<!-- Do not modify the link that theme dependent icons -->
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_1749284_5i9bdhy70f8.css">
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_1736178_k526ubmyhba.css">
<link rel="stylesheet" href="/css/main.css" />
<link id="highlight-css" rel="stylesheet" href="/css/highlight.css" />
<link id="highlight-css-dark" rel="stylesheet" href="/css/highlight-dark.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/bynotes/texiao/source/css/shubiao.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/bynotes/texiao/source/css/gundongtiao.css">
<script id="fluid-configs">
var Fluid = window.Fluid || {};
Fluid.ctx = Object.assign({}, Fluid.ctx)
var CONFIG = {"hostname":"example.com","root":"/","version":"1.9.8","typing":{"enable":true,"typeSpeed":75,"cursorChar":"_","loop":true,"scope":[]},"anchorjs":{"enable":true,"element":"h1,h2,h3,h4,h5,h6","placement":"left","visible":"hover","icon":""},"progressbar":{"enable":true,"height_px":3,"color":"#29d","options":{"showSpinner":false,"trickleSpeed":100}},"code_language":{"enable":true,"default":"TEXT"},"copy_btn":true,"image_caption":{"enable":true},"image_zoom":{"enable":true,"img_url_replace":["",""]},"toc":{"enable":true,"placement":"right","headingSelector":"h1,h2,h3,h4,h5,h6","collapseDepth":0},"lazyload":{"enable":true,"loading_img":"/img/loading.gif","onlypost":false,"offset_factor":2},"web_analytics":{"enable":true,"follow_dnt":true,"baidu":null,"google":{"measurement_id":null},"tencent":{"sid":null,"cid":null},"leancloud":{"app_id":null,"app_key":null,"server_url":null,"path":"window.location.pathname","ignore_local":false},"umami":{"src":null,"website_id":null,"domains":null,"start_time":"2024-01-01T00:00:00.000Z","token":null,"api_server":null}},"search_path":"/local-search.xml","include_content_in_search":true};
if (CONFIG.web_analytics.follow_dnt) {
var dntVal = navigator.doNotTrack || window.doNotTrack || navigator.msDoNotTrack;
Fluid.ctx.dnt = dntVal && (dntVal.startsWith('1') || dntVal.startsWith('yes') || dntVal.startsWith('on'));
}
</script>
<script src="/js/utils.js" ></script>
<script src="/js/color-schema.js" ></script>
<meta name="generator" content="Hexo 7.3.0"></head>
<body>
<header>
<div class="header-inner" style="height: 100vh;">
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar">
<div class="container">
<a class="navbar-brand" href="/">
<strong>Munger Yang's Blog</strong>
</a>
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<div class="animated-icon"><span></span><span></span><span></span></div>
</button>
<!-- Collapsible content -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto text-center">
<li class="nav-item">
<a class="nav-link" href="/about" target="_self">
<i class="iconfont icon-addrcard"></i>
<span>主页</span>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" target="_self" href="javascript:;" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="iconfont icon-books"></i>
<span>博客</span>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="/" target="_self">
<i class="iconfont icon-pen"></i>
<span>文章</span>
</a>
<a class="dropdown-item" href="/archives/" target="_self">
<i class="iconfont icon-archive-fill"></i>
<span>总览</span>
</a>
<a class="dropdown-item" href="/categories/" target="_self">
<i class="iconfont icon-category-fill"></i>
<span>分类</span>
</a>
<a class="dropdown-item" href="/tags/" target="_self">
<i class="iconfont icon-tags-fill"></i>
<span>标签</span>
</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="/picture" target="_self">
<i class="iconfont icon-image"></i>
<span>时刻</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/self/" target="_self">
<i class="iconfont icon-user-fill"></i>
<span>简历</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/links/" target="_self">
<i class="iconfont icon-link-fill"></i>
<span>友链</span>
</a>
</li>
<li class="nav-item" id="search-btn">
<a class="nav-link" target="_self" href="javascript:;" data-toggle="modal" data-target="#modalSearch" aria-label="Search">
<i class="iconfont icon-search"></i>
</a>
</li>
<li class="nav-item" id="color-toggle-btn">
<a class="nav-link" target="_self" href="javascript:;" aria-label="Color Toggle">
<i class="iconfont icon-dark" id="color-toggle-icon"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="banner" class="banner" parallax=true
style="background: url('/img/bg/background4.png') no-repeat center center; background-size: cover;">
<div class="full-bg-img">
<div class="mask flex-center" style="background-color: rgba(0, 0, 0, 0.3)">
<div class="banner-text text-center fade-in-up">
<div class="h2">
<span id="subtitle" data-typed-text="slow is fast! 健健康康 内心阳光"></span>
</div>
</div>
<div class="scroll-down-bar">
<i class="iconfont icon-arrowdown"></i>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<div class="container nopadding-x-md">
<div id="board"
style="margin-top: 0">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 m-auto">
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/02/05/%E5%BC%80%E5%B7%A5%E5%A4%A7%E5%90%89/" target="_self">
<img src="https://pic.rmb.bdstatic.com/84a301bfe903ca9eee3f9c416136c09e.jpeg" srcset="/img/loading.gif" lazyload alt="开工大吉">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/02/05/%E5%BC%80%E5%B7%A5%E5%A4%A7%E5%90%89/" target="_self">
开工大吉
</a>
</h2>
<a class="index-excerpt " href="/2025/02/05/%E5%BC%80%E5%B7%A5%E5%A4%A7%E5%90%89/" target="_self">
<div>
2025年2月5日,乙巳年正月初八,星期三,晴,第49篇博客/2025年第8篇博客,正式开工!!! 关于DeepSeek以及未来1年有关LLM的一些观点和思考 观点整理自刘焕勇老师,转发切记注明出处! 明天就开工了,针对deepseek,我们静下心来看看,这波造神热度迟早要消散或者翻车。LLM帮大家解决落地问题,让大家有饭吃,有活干,才能
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-02-05 05:25" pubdate>
2025-02-05
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%8A%A8%E6%9C%BA/" class="category-chain-item">动机</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/%E7%94%9F%E6%B4%BB%E9%9A%8F%E7%AC%94/">#生活随笔</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/01/30/2025%E5%B9%B41%E6%9C%88%E6%80%BB%E7%BB%93%E4%B8%8E%E5%B1%95%E6%9C%9B/" target="_self">
<img src="https://www.kaigo-antenna.jp/uploads/illustration/main_image/479/webp_20074_s.webp" srcset="/img/loading.gif" lazyload alt="2025年1月总结与展望">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/01/30/2025%E5%B9%B41%E6%9C%88%E6%80%BB%E7%BB%93%E4%B8%8E%E5%B1%95%E6%9C%9B/" target="_self">
2025年1月总结与展望
</a>
</h2>
<a class="index-excerpt " href="/2025/01/30/2025%E5%B9%B41%E6%9C%88%E6%80%BB%E7%BB%93%E4%B8%8E%E5%B1%95%E6%9C%9B/" target="_self">
<div>
2025年1月30日,星期四,阴天,这是写的第48篇博客文章。 这个月很忙,主旋律是考试与春节·过年。咱中华文化就是博大精深,按理说,每年的1月、2月都应该是一年的开端,事情的开始阶段所有人的状态都应该鼓足干劲的。但是我们中国人不然,每年的1月、2月,中国人都要过自己的节日——春节。对于全体中国人来说,春节正式一年当中为数不多的放下手里工作回家团聚、休息调整的时光~ 只有过了春节,才真正意味着中国
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-01-30 09:17" pubdate>
2025-01-30
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%8A%A8%E6%9C%BA/" class="category-chain-item">动机</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/%E7%A7%91%E7%A0%94%E5%BF%83%E8%B7%AF/">#科研心路</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/01/29/%E6%A2%81%E6%96%87%E9%94%8B%E4%B8%93%E8%AE%BF/" target="_self">
<img src="https://ichef.bbci.co.uk/ace/ws/660/cpsprodpb/64cf/live/3e8dddc0-dd58-11ef-902e-cf9b84dc1357.jpg.webp" srcset="/img/loading.gif" lazyload alt="梁文锋专访">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/01/29/%E6%A2%81%E6%96%87%E9%94%8B%E4%B8%93%E8%AE%BF/" target="_self">
梁文锋专访
</a>
</h2>
<a class="index-excerpt " href="/2025/01/29/%E6%A2%81%E6%96%87%E9%94%8B%E4%B8%93%E8%AE%BF/" target="_self">
<div>
暗涌Waves专访DeepSeek创始人梁文锋暗涌:互联网和移动互联网时代留给大部分人的惯性认知是,美国擅长搞技术创新,中国更擅长做应用。 梁文锋:我们认为随着经济发展,中国也要逐步成为贡献者,而不是一直搭便车。过去三十多年 IT 浪潮里,我们基本没有参与到真正的技术创新里。我们已经习惯摩尔定律从天而降,躺在家里 18 个月就会出来更好的硬件和软件。Scaling Law 也在被如此对待。 但其实
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-01-29 22:33" pubdate>
2025-01-29
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%8A%A8%E6%9C%BA/" class="category-chain-item">动机</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/%E7%A7%91%E7%A0%94%E5%BF%83%E8%B7%AF/">#科研心路</a>
<a href="/tags/LLM/">#LLM</a>
<a href="/tags/%E5%89%8D%E6%B2%BF%E8%AE%B2%E5%BA%A7/">#前沿讲座</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/01/27/DeepSeek-YYDS/" target="_self">
<img src="https://i.bstr.es/drivingeco/2025/01/Deepseek-r1-logo.webp" srcset="/img/loading.gif" lazyload alt="DeepSeek YYDS">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/01/27/DeepSeek-YYDS/" target="_self">
DeepSeek YYDS
</a>
</h2>
<a class="index-excerpt " href="/2025/01/27/DeepSeek-YYDS/" target="_self">
<div>
DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement LearningDeepSeek-AI https://arxiv.org/pdf/2501.12948 多看论文原文,少看自媒体公众号文章的鼓吹宣传! 与普通LLM相比,推理LLM倾向于在回答之前讲问题分解为更小的步骤(推理步骤和思维链),这
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-01-27 11:18" pubdate>
2025-01-27
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E7%9B%B8%E5%85%B3/" class="category-chain-item">大模型相关</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/LLM/">#LLM</a>
<a href="/tags/MLLM/">#MLLM</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/01/24/Graph-RAG-A-Survey/" target="_self">
<img src="https://blog.langchain.dev/content/images/2024/03/ragbased.webp" srcset="/img/loading.gif" lazyload alt="Graph RAG">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/01/24/Graph-RAG-A-Survey/" target="_self">
Graph RAG
</a>
</h2>
<a class="index-excerpt " href="/2025/01/24/Graph-RAG-A-Survey/" target="_self">
<div>
Graph Retrieval-Augmented Generation: A Survey https://www.arxiv.org/pdf/2408.08921 论文更多侧重理论概念层面,实践落地过程中需要自行体会各个阶段的实现过程。 Abstract通过引用外部知识库,RAG改进了LLM输出,有效地减轻了诸如“幻觉”、缺乏特定领域的知识和过时的信息等问题。但是,数据库中不同实
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-01-24 23:04" pubdate>
2025-01-24
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E7%9B%B8%E5%85%B3/" class="category-chain-item">大模型相关</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/LLM/">#LLM</a>
<a href="/tags/RAG/">#RAG</a>
<a href="/tags/%E5%A4%9A%E6%A8%A1%E6%80%81/">#多模态</a>
<a href="/tags/Agentic-RAG/">#Agentic RAG</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/01/20/Agentic-RAG-A-Survey/" target="_self">
<img src="https://mlrwd9rnffxq.i.optimole.com/cb:641c.2be21/w:1883/h:1332/q:90/f:best/sm:0/https://vectorize.io/wp-content/uploads/2024/09/Agentic-RAG-1.png" srcset="/img/loading.gif" lazyload alt="Agentic RAG:A Survey">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/01/20/Agentic-RAG-A-Survey/" target="_self">
Agentic RAG:A Survey
</a>
</h2>
<a class="index-excerpt " href="/2025/01/20/Agentic-RAG-A-Survey/" target="_self">
<div>
AGENTIC RETRIEVAL-AUGMENTED GENERATION: A SURVEY ON AGENTIC RAG Aditi Singh | Abul Ehtesham | Saket Kumar | Tala Talaei Khoei https://arxiv.org/abs/2501.09136 论文更多侧重于理论概念层面,实践中还会遇到很多问题和bug,需要自
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-01-20 20:55" pubdate>
2025-01-20
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E7%9B%B8%E5%85%B3/" class="category-chain-item">大模型相关</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/LLM/">#LLM</a>
<a href="/tags/RAG/">#RAG</a>
<a href="/tags/%E5%A4%9A%E6%A8%A1%E6%80%81/">#多模态</a>
<a href="/tags/Agentic-RAG/">#Agentic RAG</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/01/19/%E5%AF%92%E5%81%87%E9%98%85%E8%AF%BB%E4%B9%A6%E5%8D%95/" target="_self">
<img src="https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/37/ad/d0/37add097-e740-b971-5e64-215408506319/AppIcon-0-0-1x_U007emarketing-0-7-0-0-85-220.png/1200x630wa.png" srcset="/img/loading.gif" lazyload alt="寒假阅读书单">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/01/19/%E5%AF%92%E5%81%87%E9%98%85%E8%AF%BB%E4%B9%A6%E5%8D%95/" target="_self">
寒假阅读书单
</a>
</h2>
<a class="index-excerpt " href="/2025/01/19/%E5%AF%92%E5%81%87%E9%98%85%E8%AF%BB%E4%B9%A6%E5%8D%95/" target="_self">
<div>
2025年第一个月的大部分时间都干了个啥2024年12月31号在湖里度过了难忘的跨年晚会,进入2025年1月就完全进入了期末复习周,1月10号完成了期末考试,10-16号留校、回所和导师们汇报完这学期的进度以及后续安排,14号完成了晓飞老师《机器学习》课程的实验报告,16号离校去房山舅舅家住了两天,18号回家。忙忙碌碌地度过了2025年的1月份多半时光,伴随而来的寒假(大概率也是学生时代的最后一个
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-01-19 21:21" pubdate>
2025-01-19
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%8A%A8%E6%9C%BA/" class="category-chain-item">动机</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/%E7%AC%94%E8%AE%B0/">#笔记</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2025/01/15/Attention-is-all-you-need/" target="_self">
<img src="https://victorleungtw.com/assets/2024-05-13.webp" srcset="/img/loading.gif" lazyload alt="Attention is all you need">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2025/01/15/Attention-is-all-you-need/" target="_self">
Attention is all you need
</a>
</h2>
<a class="index-excerpt " href="/2025/01/15/Attention-is-all-you-need/" target="_self">
<div>
攻坚克难,务必拿下Transformer,彻底搞懂原理 参考教程: [1] 动手学深度学习 [2] Data Whale训练营-手撕Transformer Transformer名字的由来论文的第一作者最喜欢的电影是《变形金刚》 论文的创新点:提出了一个新的简单的网络结构——Transformer,完全依赖于注意力机制而省
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2025-01-15 16:10" pubdate>
2025-01-15
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E7%9B%B8%E5%85%B3/" class="category-chain-item">大模型相关</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/GPT/">#GPT</a>
<a href="/tags/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/">#深度学习</a>
<a href="/tags/NLP/">#NLP</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2024/12/31/2024%E5%B9%B4%E5%BA%A6%E6%80%BB%E7%BB%93/" target="_self">
<img src="https://cdnv2.ruguoapp.com/FtwhP5bICelEIUZWWcJbhEnlIXLwv3.heic?imageMogr2/auto-orient/heic-exif/1/format/jpeg/thumbnail/1500x2000%3E/interlace/1" srcset="/img/loading.gif" lazyload alt="2024年度总结">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2024/12/31/2024%E5%B9%B4%E5%BA%A6%E6%80%BB%E7%BB%93/" target="_self">
2024年度总结
</a>
</h2>
<a class="index-excerpt " href="/2024/12/31/2024%E5%B9%B4%E5%BA%A6%E6%80%BB%E7%BB%93/" target="_self">
<div>
永远相信美好的事情即将发生 2025年 务必谦虚谨慎 艰苦奋斗 戒骄戒躁写每一篇文章前都要牢牢把握好一个目的:写这个东西的动机是什么,要解决什么问题?毛主席讲过,做文章是要解决问题的。 终点和起点,分别和相聚 - 2024大事记2024年主要经历了两件大事:本科毕业、研究生生涯开启,分别和相聚是这一年的主旋律。 2024年开始认真经营
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2024-12-31 23:59" pubdate>
2024-12-31
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%8A%A8%E6%9C%BA/" class="category-chain-item">动机</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/%E7%A7%91%E7%A0%94%E5%BF%83%E8%B7%AF/">#科研心路</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2024/12/31/12%E6%9C%88%E6%80%BB%E7%BB%93%E4%B8%8E%E5%B1%95%E6%9C%9B/" target="_self">
<img src="https://hips.hearstchina.com/hmg-prod/images/%E5%9B%BE%E7%89%871-65af6a5382828.png?resize=640:*" srcset="/img/loading.gif" lazyload alt="2024年12月总结与展望">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2024/12/31/12%E6%9C%88%E6%80%BB%E7%BB%93%E4%B8%8E%E5%B1%95%E6%9C%9B/" target="_self">
2024年12月总结与展望
</a>
</h2>
<a class="index-excerpt " href="/2024/12/31/12%E6%9C%88%E6%80%BB%E7%BB%93%E4%B8%8E%E5%B1%95%E6%9C%9B/" target="_self">
<div>
11月任务回顾2024年最后一个月,主要任务就一个:把之前深度学习所有相关知识整合、查漏补缺、复现Coding 今天5号了,这个月的任务除了复习最后的三门课之外,更多的精力要分配给如下任务: 卷积神经网络学习(还剩VGG、ResNet没有实现) 语言神经网络学习 多读经典论文、多复现代码(循环神经网络、Attention、Transformer、BERT掌握) 精进python、C+
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2024-12-31 10:56" pubdate>
2024-12-31
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/%E5%8A%A8%E6%9C%BA/" class="category-chain-item">动机</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/%E7%A7%91%E7%A0%94%E5%BF%83%E8%B7%AF/">#科研心路</a>
</div>
</div>
</article>
</div>
<nav aria-label="navigation">
<span class="pagination" id="pagination">
<span class="page-number current">1</span><a class="page-number" href="/page/2/#board">2</a><a class="page-number" href="/page/3/#board">3</a><span class="space">…</span><a class="page-number" href="/page/5/#board">5</a><a class="extend next" rel="next" href="/page/2/#board"><i class="iconfont icon-arrowright"></i></a>
</span>
</nav>
</div>
</div>
</div>