-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1344 lines (984 loc) · 46.2 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">
<head>
<meta charset="utf-8" />
<meta name="description" content="一个秘密空间" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<title> LegendLeo Chen 的空间</title>
<meta name="generator" content="hexo-theme-ayer">
<link rel="shortcut icon" href="/mylogo.ico" />
<link rel="stylesheet" href="/dist/main.css">
<link rel="stylesheet" href="/css/fonts/remixicon.css">
<link rel="stylesheet" href="/css/custom.css">
<script src="https://cdn.staticfile.org/pace/1.2.4/pace.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@sweetalert2/[email protected]/bulma.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.js"></script>
<!-- mermaid -->
<style>
.swal2-styled.swal2-confirm {
font-size: 1.6rem;
}
</style>
<!-- 封面标闪烁 -->
<link rel="stylesheet" href="/css/zhyBlogTitle.css">
<script src="https://cdn.bootcdn.net/ajax/libs/highlight.js/9.18.1/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- jquery,懒加载、统计、说说需要的jquery -->
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="/css/prism-tomorrow.css" type="text/css">
<link rel="stylesheet" href="/css/prism-line-numbers.css" type="text/css"></head>
</html>
</html>
<body>
<div id="app">
<main class="content on">
<section class="cover">
<div class="cover-frame">
<div class="bg-box">
<img src="/images/016o6v.jpg" alt="image frame" />
</div>
<div class="cover-inner text-center text-white">
<!-- 特效标题 <h1><a href="/">LegendLeo Chen 的空间</a></h1> -->
<h1 class="center-text glitch" data-text="LegendLeo Chen 的空间">LegendLeo Chen 的空间</h1>
<div id="subtitle-box">
<span id="subtitle"></span>
</div>
<div>
</div>
</div>
</div>
<div class="cover-learn-more">
<a href="javascript:void(0)" class="anchor"><i class="ri-arrow-down-line"></i></a>
</div>
</section>
<script src="https://cdn.staticfile.org/typed.js/2.0.12/typed.min.js"></script>
<!-- Subtitle -->
<script>
try {
var typed = new Typed("#subtitle", {
strings: ['你问我全世界是哪里最美?', '答案是你身边', 'You're such a Heavenly view'],
startDelay: 0,
typeSpeed: 250,
loop: true,
backSpeed: 150,
showCursor: true
});
} catch (err) {
console.log(err)
}
</script>
<div id="main">
<section class="outer">
<div class="notice" style="margin-top:50px" onclick="setTime()">
<i class="ri-heart-fill"></i>
<div class="notice-content" id="broad">Baby you are perfect!</div>
</div>
<script type="text/javascript">
function setTime(){
var broad = document.getElementById("broad");
var notice = document.getElementsByClassName("notice");
var text = 'I've gotta learn how to love without you,有一天 就是今天 今天就是有一天,成就如沙堡 生命如海浪,披头与枪花 爱情和忧伤,我不怕死亡 只害怕遗忘,终究会 有一天 我们都变成昨天,Cause you're amazing. Just the way you are,男孩和女孩都有吉他和舞鞋,Cause the drinks bring back all the memories of everything we've been through,Cause you're a sky full of stars. I'm gonna give you my heart.,I'll go everywhere you go. From Chicago to the coast.,Birds fly in different directions. I hope to see you again.,Boy it's good to know I got a bud like you.,We ain't ever getting older.,There's a light that you give me when i'm in shadows.,Nothing can be better than the two of us together now.,Be my mirror my sword and shield.,But that was when I ruled the world.,I know Saint Peter won't call my name,I won't give up cause there will be a day we'll meet again,You don't know you're beautiful.,I'm gonna tear this city down without you.,Look at the stars. Look how they shine for you.,生活中充满孩子哭声柴米和油盐,每个梦都像任意门往不同世界 而你的故事 现在正是起点,历经摧残 就要璀璨 如果爱 不只是奇幻,像诗人依赖着月亮 像海豚依赖海洋,才发现了 她的背影是 无法释怀的风景,Life is a drink and your love's about to make the stars come out,And even when the lights go down down. I could never lose you now.,I'm just a fool for you.,But it's time to face the truth. I'll never be with you,I've always liked to play with fire,I close my eyes and I can hear you say. You're not alone.,I know people say that you are a misfit. But that's the thing I like about you.,All I want to do. Is be more like me. And be less like you.,至少用力地爱着 还乌黑的头发 有你就不怕白了,如果阳光永远都炽热 如果彩虹不会掉颜色 你能不能不离开呢,美丽的泡沫 虽然一刹花火 你所有承诺 虽然都太脆弱,看看镜子里的你带着曾经的我 已走了多远,Who cares if one more light goes out -- Well I do,I can't love you in the dark.,那一天,那一刻,那个场景,你出现在我生命,苍狗又白云,身旁有了你,匆匆轮回又有何惧,某一天 某一刻 某次呼吸 我们终将再分离 而我的自传里 曾经有你 没有遗憾的诗句 诗句里充满感激,很久很久以后,时间会把回忆慢慢偷走,突然你想流星划过黑夜 摇晃我的视线 划破我的随缘,你就想突然间吹来的微风 你让我有一点颤抖 又一点感动,突然一抬头你看着我的双眼 让我在一瞬间 好像看到了永远,如果世界狂如洪流 我陪你寻觅方舟 自由在夜的尽头,想倒流眼泪 找回失去的笑脸 想倒流雨水 还我们一个晴天,这世界最远不是距离 而是昨天,I'll come and find you. Anywhere til I can find you,我想要你知道 你在我眼里多美好 你像最美丽的歌谣 每当听到 我都微笑'
var texts = text.split(",")
var rand1 = Math.floor(Math.random()*(texts.length)) //随机获取文本列表内的索引
broad.style.opacity = 0;
setTimeout(function() {
broad.innerHTML= texts[rand1] //刷新文本
broad.style.opacity = 1;
}, 500);
}
setInterval("setTime()",5000); //5s刷新一次公告栏
</script>
<style>
*{
transition: all 0.5s ease-in-out;
}
.notice {
padding: 20px;
border: 1px dashed #353535;
color: #969696;
position: relative;
display: inline-block;
width: 100%;
background: #fbfbfb50;
border-radius: 10px;
}
.notice i {
float: left;
color: #ee70e2;
font-size: 16px;
padding-right: 10px;
vertical-align: middle;
margin-top: -2px;
}
.notice-content {
display: initial;
color: #ee70e2;
vertical-align: middle;
}
body.darkmode .notice-content {
display: initial;
color: #70bcee;
vertical-align: middle;
}
body.darkmode .notice {
padding: 20px;
border: 1px dashed #e6e6e6;
color: #969696;
position: relative;
display: inline-block;
width: 100%;
background: #3e3e3e98;
border-radius: 10px;
}
</style>
<article class="articles">
<article
id="post-Hexo搭建"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2023/03/02/Hexo%E6%90%AD%E5%BB%BA/"
>Hexo搭建
<i class="article-topping">置顶</i>
</a>
</h2>
</header>
<div class="article-meta">
<a href="/2023/03/02/Hexo%E6%90%AD%E5%BB%BA/" class="article-date">
<time datetime="2023-03-02T04:54:21.000Z" itemprop="datePublished">2023-03-02</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E6%95%99%E7%A8%8B/">教程</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<h1 id="安装软件"><a href="#安装软件" class="headerlink" title="安装软件"></a>安装软件</h1><h2 id="安装git"><a href="#安装git" class="headerlink" title="安装git"></a>安装git</h2><blockquote>
<ul>
<li>官网下载git,确定好安装位置,无脑下一步即可。</li>
<li>完成后右键菜单将出现 <em>Git GUI</em> 和 <em>Git Bash</em> 两个新选项</li>
</ul>
</blockquote>
<a class="article-more-link" href="/2023/03/02/Hexo%E6%90%AD%E5%BB%BA/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Hexo/" rel="tag">Hexo</a></li></ul>
</footer>
</div>
</article>
<article
id="post-大模型SFT微调(LoRA)方案"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2025/02/06/%E5%A4%A7%E6%A8%A1%E5%9E%8BSFT%E5%BE%AE%E8%B0%83%EF%BC%88LoRA%EF%BC%89%E6%96%B9%E6%A1%88/"
>大模型SFT微调(LoRA)方案</a>
</h2>
</header>
<div class="article-meta">
<a href="/2025/02/06/%E5%A4%A7%E6%A8%A1%E5%9E%8BSFT%E5%BE%AE%E8%B0%83%EF%BC%88LoRA%EF%BC%89%E6%96%B9%E6%A1%88/" class="article-date">
<time datetime="2025-02-06T12:22:13.000Z" itemprop="datePublished">2025-02-06</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E6%95%99%E7%A8%8B/">教程</a> / <a class="article-category-link" href="/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/">深度学习</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>本次借助huggingface平台下载大模型和数据集,并在本地尝试进行微调,目的是跑通并体验微调过程。微调使用的是参数高效微调也就是PEFT,策略是有监督微调SFT,使用的具体方法是LoRA。</p>
<a class="article-more-link" href="/2025/02/06/%E5%A4%A7%E6%A8%A1%E5%9E%8BSFT%E5%BE%AE%E8%B0%83%EF%BC%88LoRA%EF%BC%89%E6%96%B9%E6%A1%88/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/LLM/" rel="tag">LLM</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/LORA/" rel="tag">LORA</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/PEFT/" rel="tag">PEFT</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Python/" rel="tag">Python</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/SFT/" rel="tag">SFT</a></li></ul>
</footer>
</div>
</article>
<article
id="post-大模型及RAG架构的本地部署"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2025/01/04/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%8F%8ARAG%E6%9E%B6%E6%9E%84%E7%9A%84%E6%9C%AC%E5%9C%B0%E9%83%A8%E7%BD%B2/"
>大模型及RAG架构的本地部署</a>
</h2>
</header>
<div class="article-meta">
<a href="/2025/01/04/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%8F%8ARAG%E6%9E%B6%E6%9E%84%E7%9A%84%E6%9C%AC%E5%9C%B0%E9%83%A8%E7%BD%B2/" class="article-date">
<time datetime="2025-01-04T03:26:56.000Z" itemprop="datePublished">2025-01-04</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E6%95%99%E7%A8%8B/">教程</a> / <a class="article-category-link" href="/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/">深度学习</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>本次在本地电脑部署离线的大模型和RAG架构,并进行初步的功能测试,以简单地入门大模型及RAG架构。</p>
<h1 id="🔥大模型部署"><a href="#🔥大模型部署" class="headerlink" title="🔥大模型部署"></a>🔥大模型部署</h1><ul>
<li>这次部署大模型使用的是<a target="_blank" rel="noopener" href="https://ollama.com/">Ollama</a>,它一个开源的LLM提供商,部署简便很适合入门使用。</li></ul>
<a class="article-more-link" href="/2025/01/04/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%8F%8ARAG%E6%9E%B6%E6%9E%84%E7%9A%84%E6%9C%AC%E5%9C%B0%E9%83%A8%E7%BD%B2/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/LLM/" rel="tag">LLM</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Python/" rel="tag">Python</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/RAG/" rel="tag">RAG</a></li></ul>
</footer>
</div>
</article>
<article
id="post-基于DQN的机器人自动走迷宫(2)"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2025/01/01/%E5%9F%BA%E4%BA%8EDQN%E7%9A%84%E6%9C%BA%E5%99%A8%E4%BA%BA%E8%87%AA%E5%8A%A8%E8%B5%B0%E8%BF%B7%E5%AE%AB%EF%BC%882%EF%BC%89/"
>基于DQN的机器人自动走迷宫(2)</a>
</h2>
</header>
<div class="article-meta">
<a href="/2025/01/01/%E5%9F%BA%E4%BA%8EDQN%E7%9A%84%E6%9C%BA%E5%99%A8%E4%BA%BA%E8%87%AA%E5%8A%A8%E8%B5%B0%E8%BF%B7%E5%AE%AB%EF%BC%882%EF%BC%89/" class="article-date">
<time datetime="2025-01-01T06:47:24.000Z" itemprop="datePublished">2025-01-01</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E5%BC%BA%E5%8C%96%E5%AD%A6%E4%B9%A0/">强化学习</a> / <a class="article-category-link" href="/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p><a target="_blank" rel="noopener" href="https://github.com/LegendLeoChen/LeoMazeRobot">github仓库</a><br>需要先阅读本文所基于的上一个工作:<a href="/2024/09/26/%E5%9F%BA%E4%BA%8EDQN%E7%9A%84%E6%9C%BA%E5%99%A8%E4%BA%BA%E8%87%AA%E5%8A%A8%E8%B5%B0%E8%BF%B7%E5%AE%AB/" title="基于DQN的机器人自动走迷宫">基于DQN的机器人自动走迷宫</a></p>
<ul>
<li>上次使用已有的库完成走迷宫任务的方案,需要通过获取全图视野来生成完美轨迹样本来进行训练,但是效果也是立竿见影。</li>
<li>但是很多时候没有办法把获取这样的完美样本,需要智能体从起点开始完全自主摸索获取轨迹样本,然后训练,所以本文尝试不使用全图视野获取来训练。</li></ul>
<a class="article-more-link" href="/2025/01/01/%E5%9F%BA%E4%BA%8EDQN%E7%9A%84%E6%9C%BA%E5%99%A8%E4%BA%BA%E8%87%AA%E5%8A%A8%E8%B5%B0%E8%BF%B7%E5%AE%AB%EF%BC%882%EF%BC%89/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/DQN/" rel="tag">DQN</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/PyQT5/" rel="tag">PyQT5</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Python/" rel="tag">Python</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Pytorch/" rel="tag">Pytorch</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C/" rel="tag">神经网络</a></li></ul>
</footer>
</div>
</article>
<article
id="post-大模型基础知识"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2024/12/27/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/"
>大模型基础知识</a>
</h2>
</header>
<div class="article-meta">
<a href="/2024/12/27/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/" class="article-date">
<time datetime="2024-12-27T08:09:30.000Z" itemprop="datePublished">2024-12-27</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/">深度学习</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<h1 id="🔥大语言模型(LLMs)是什么"><a href="#🔥大语言模型(LLMs)是什么" class="headerlink" title="🔥大语言模型(LLMs)是什么"></a>🔥大语言模型(LLMs)是什么</h1><p>大模型:一般指1亿以上参数的模型,但是这个标准一直在升级,目前万亿参数以上的模型 (eg: MinMax abab6.5)也有了。大语言模型(Large Language Models,LLMs) 是针对语言的大模型。<br>大语言模型的关键特点包括:</p>
<a class="article-more-link" href="/2024/12/27/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/LLM/" rel="tag">LLM</a></li></ul>
</footer>
</div>
</article>
<article
id="post-ROS2-ardupilot-mavros无人机仿真初步"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2024/11/16/ROS2-ardupilot-mavros%E6%97%A0%E4%BA%BA%E6%9C%BA%E4%BB%BF%E7%9C%9F%E5%88%9D%E6%AD%A5/"
>ROS2+ardupilot+mavros无人机仿真初步</a>
</h2>
</header>
<div class="article-meta">
<a href="/2024/11/16/ROS2-ardupilot-mavros%E6%97%A0%E4%BA%BA%E6%9C%BA%E4%BB%BF%E7%9C%9F%E5%88%9D%E6%AD%A5/" class="article-date">
<time datetime="2024-11-16T08:23:41.000Z" itemprop="datePublished">2024-11-16</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E4%BB%BF%E7%9C%9F/">仿真</a> / <a class="article-category-link" href="/categories/%E6%9C%BA%E5%99%A8%E4%BA%BA/">机器人</a> / <a class="article-category-link" href="/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<p>技术:ROS2(humble) + Ardupilot + mavros + gazebo11</p>
<ul>
<li><p>ArduPilot 是一个功能丰富且灵活的开源自动驾驶平台,它的广泛适用性和开源特性,使其在无人系统领域得到了广泛应用。</p></li></ul>
<a class="article-more-link" href="/2024/11/16/ROS2-ardupilot-mavros%E6%97%A0%E4%BA%BA%E6%9C%BA%E4%BB%BF%E7%9C%9F%E5%88%9D%E6%AD%A5/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Python/" rel="tag">Python</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/ROS2/" rel="tag">ROS2</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E6%97%A0%E4%BA%BA%E6%9C%BA/" rel="tag">无人机</a></li></ul>
</footer>
</div>
</article>
<article
id="post-使用语音识别结合大模型实现命令分类"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2024/10/07/%E4%BD%BF%E7%94%A8%E8%AF%AD%E9%9F%B3%E8%AF%86%E5%88%AB%E7%BB%93%E5%90%88%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%AE%9E%E7%8E%B0%E5%91%BD%E4%BB%A4%E5%88%86%E7%B1%BB/"
>使用语音识别结合大模型实现命令分类</a>
</h2>
</header>
<div class="article-meta">
<a href="/2024/10/07/%E4%BD%BF%E7%94%A8%E8%AF%AD%E9%9F%B3%E8%AF%86%E5%88%AB%E7%BB%93%E5%90%88%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%AE%9E%E7%8E%B0%E5%91%BD%E4%BB%A4%E5%88%86%E7%B1%BB/" class="article-date">
<time datetime="2024-10-07T10:21:24.000Z" itemprop="datePublished">2024-10-07</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/">深度学习</a> / <a class="article-category-link" href="/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<ul>
<li>之前用ESP32实现过用百度千帆模型进行大模型对话的功能,这次使用Python实现,并先通过麦克风输入语音,实现语音识别,再通过API调用大模型进行对话,这次让通过提示性内容引导模型输出分类,也就是完成简单的分类任务。<blockquote>
<p>可参考的链接:</p>
<a href="/2024/01/15/ESP32%E8%81%8A%E5%A4%A9%E5%8A%A9%E6%89%8B%E2%80%94%E2%80%94%E6%96%87%E5%BF%83%E4%B8%80%E8%A8%80/" title="ESP32聊天助手——文心一言">ESP32实现的文本对话——基于文心一言</a></blockquote></li></ul>
<a class="article-more-link" href="/2024/10/07/%E4%BD%BF%E7%94%A8%E8%AF%AD%E9%9F%B3%E8%AF%86%E5%88%AB%E7%BB%93%E5%90%88%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%AE%9E%E7%8E%B0%E5%91%BD%E4%BB%A4%E5%88%86%E7%B1%BB/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/API/" rel="tag">API</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/LLM/" rel="tag">LLM</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Python/" rel="tag">Python</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%AF%AD%E9%9F%B3%E8%AF%86%E5%88%AB/" rel="tag">语音识别</a></li></ul>
</footer>
</div>
</article>
<article
id="post-基于图神经网络的金融异常检测"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2024/09/26/%E5%9F%BA%E4%BA%8E%E5%9B%BE%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C%E7%9A%84%E9%87%91%E8%9E%8D%E5%BC%82%E5%B8%B8%E6%A3%80%E6%B5%8B/"
>基于图神经网络的金融异常检测</a>
</h2>
</header>
<div class="article-meta">
<a href="/2024/09/26/%E5%9F%BA%E4%BA%8E%E5%9B%BE%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C%E7%9A%84%E9%87%91%E8%9E%8D%E5%BC%82%E5%B8%B8%E6%A3%80%E6%B5%8B/" class="article-date">
<time datetime="2024-09-26T12:25:56.000Z" itemprop="datePublished">2024-09-26</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/">深度学习</a> / <a class="article-category-link" href="/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<h1 id="🔥概述"><a href="#🔥概述" class="headerlink" title="🔥概述"></a>🔥概述</h1><ul>
<li>本次任务使用图神经网络,以金融中异常检测为例,实现大规模图数据结构的分类预测。本任务基于的数据集DGraph,DGraph 是大规模动态图数据集的集合,由真实金融场景中随着时间演变事件和标签构成。</li></ul>
<a class="article-more-link" href="/2024/09/26/%E5%9F%BA%E4%BA%8E%E5%9B%BE%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C%E7%9A%84%E9%87%91%E8%9E%8D%E5%BC%82%E5%B8%B8%E6%A3%80%E6%B5%8B/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Python/" rel="tag">Python</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Pytorch/" rel="tag">Pytorch</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E5%9B%BE%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C/" rel="tag">图神经网络</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C/" rel="tag">神经网络</a></li></ul>
</footer>
</div>
</article>
<article
id="post-基于DQN的机器人自动走迷宫"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2024/09/26/%E5%9F%BA%E4%BA%8EDQN%E7%9A%84%E6%9C%BA%E5%99%A8%E4%BA%BA%E8%87%AA%E5%8A%A8%E8%B5%B0%E8%BF%B7%E5%AE%AB/"
>基于DQN的机器人自动走迷宫</a>
</h2>
</header>
<div class="article-meta">
<a href="/2024/09/26/%E5%9F%BA%E4%BA%8EDQN%E7%9A%84%E6%9C%BA%E5%99%A8%E4%BA%BA%E8%87%AA%E5%8A%A8%E8%B5%B0%E8%BF%B7%E5%AE%AB/" class="article-date">
<time datetime="2024-09-26T09:55:44.000Z" itemprop="datePublished">2024-09-26</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E5%BC%BA%E5%8C%96%E5%AD%A6%E4%B9%A0/">强化学习</a> / <a class="article-category-link" href="/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<h1 id="🔥概述"><a href="#🔥概述" class="headerlink" title="🔥概述"></a>🔥概述</h1><ul>
<li>本次任务是使用DQN算法,训练一个机器人自动走迷宫。<br>Maze类会生成如下的随机迷宫</li></ul>
<a class="article-more-link" href="/2024/09/26/%E5%9F%BA%E4%BA%8EDQN%E7%9A%84%E6%9C%BA%E5%99%A8%E4%BA%BA%E8%87%AA%E5%8A%A8%E8%B5%B0%E8%BF%B7%E5%AE%AB/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/DQN/" rel="tag">DQN</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Python/" rel="tag">Python</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Pytorch/" rel="tag">Pytorch</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E7%A5%9E%E7%BB%8F%E7%BD%91%E7%BB%9C/" rel="tag">神经网络</a></li></ul>
</footer>
</div>
</article>
<article
id="post-文本转语音模块SNR9816TTS——结合语言模型进行对话"
class="article article-type-post"
itemscope
itemprop="blogPost"
data-scroll-reveal
>
<div class="article-inner">
<header class="article-header">
<h2 itemprop="name">
<a class="article-title" href="/2024/01/19/%E6%96%87%E6%9C%AC%E8%BD%AC%E8%AF%AD%E9%9F%B3%E6%A8%A1%E5%9D%97SNR9816TTS%E2%80%94%E2%80%94%E7%BB%93%E5%90%88%E8%AF%AD%E8%A8%80%E6%A8%A1%E5%9E%8B%E8%BF%9B%E8%A1%8C%E5%AF%B9%E8%AF%9D/"
>文本转语音模块SNR9816TTS——结合语言模型进行对话</a>
</h2>
</header>
<div class="article-meta">
<a href="/2024/01/19/%E6%96%87%E6%9C%AC%E8%BD%AC%E8%AF%AD%E9%9F%B3%E6%A8%A1%E5%9D%97SNR9816TTS%E2%80%94%E2%80%94%E7%BB%93%E5%90%88%E8%AF%AD%E8%A8%80%E6%A8%A1%E5%9E%8B%E8%BF%9B%E8%A1%8C%E5%AF%B9%E8%AF%9D/" class="article-date">
<time datetime="2024-01-19T04:12:26.000Z" itemprop="datePublished">2024-01-19</time>
</a>
<div class="article-category">
<a class="article-category-link" href="/categories/%E5%B5%8C%E5%85%A5%E5%BC%8F/">嵌入式</a> / <a class="article-category-link" href="/categories/%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0/">机器学习</a> / <a class="article-category-link" href="/categories/%E7%A1%AC%E4%BB%B6/">硬件</a> / <a class="article-category-link" href="/categories/%E7%BC%96%E7%A8%8B/">编程</a>
</div>
</div>
<div class="article-entry" itemprop="articleBody">
<blockquote>
<p>本文基于的工作:<a href="/2024/01/15/ESP32%E8%81%8A%E5%A4%A9%E5%8A%A9%E6%89%8B%E2%80%94%E2%80%94%E6%96%87%E5%BF%83%E4%B8%80%E8%A8%80/" title="ESP32聊天助手——文心一言">ESP32实现的文本对话——基于文心一言</a><br>模块的资料:<a target="_blank" rel="noopener" href="https://pan.baidu.com/s/1SYjj6a_ruBu_QVHq4mydgg?from=init&_at_=1705638174409#list/path=%2F">https://pan.baidu.com/s/1SYjj6a_ruBu_QVHq4mydgg?from=init&_at_=1705638174409#list/path=%2F</a><br>提取码:0000</p>
</blockquote>
<ul>
<li>我们将使用 SNR9816TTS 模块将大语言模型输出的文本转为语音后进行播放。</li></ul>
<a class="article-more-link" href="/2024/01/19/%E6%96%87%E6%9C%AC%E8%BD%AC%E8%AF%AD%E9%9F%B3%E6%A8%A1%E5%9D%97SNR9816TTS%E2%80%94%E2%80%94%E7%BB%93%E5%90%88%E8%AF%AD%E8%A8%80%E6%A8%A1%E5%9E%8B%E8%BF%9B%E8%A1%8C%E5%AF%B9%E8%AF%9D/"
>阅读更多...</a
>
<!-- reward -->
</div>
<!-- copyright -->
<footer class="article-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/C/" rel="tag">C++</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/ESP32/" rel="tag">ESP32</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/LLM/" rel="tag">LLM</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/TTS/" rel="tag">TTS</a></li></ul>
</footer>
</div>
</article>
</article>
<nav class="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><span class="space">…</span><a class="page-number" href="/page/6/">6</a><a class="extend next" rel="next" href="/page/2/">下一页</a>
</nav>
</section>
</div>
<footer class="footer">
<div class="outer">
<ul>
<li>
Copyrights ©
2023-2025
<i class="ri-heart-fill heart_icon"></i> LegendLeo Chen
</li>
</ul>
<ul>
<li>
</li>
</ul>
<ul>
<li>
<span>
<span><i class="ri-user-3-fill"></i>访问人数:<span id="busuanzi_value_site_uv"></span></span>
<span class="division">|</span>
<span><i class="ri-eye-fill"></i>浏览次数:<span id="busuanzi_value_page_pv"></span></span>
</span>
</li>
</ul>
<ul>
</ul>
<ul>
</ul>
<ul>
<li>
<!-- cnzz统计 -->
<script type="text/javascript" src='https://s9.cnzz.com/z_stat.php?id=1278069914&web_id=1278069914'></script>
</li>
</ul>
</div>
</footer>
</main>
<div class="float_btns">
<div class="totop" id="totop">
<i class="ri-arrow-up-line"></i>
</div>
<div class="todark" id="todark">
<i class="ri-moon-line"></i>
</div>
</div>
<aside class="sidebar on">
<button class="navbar-toggle"></button>
<nav class="navbar">
<div class="logo">
<a href="/"><img src="/images/mylogo.png" alt="LegendLeo Chen 的空间"></a>
</div>
<ul class="nav nav-main">
<li class="nav-item">
<a class="nav-item-link" href="/">🚀主页</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/archives">💾归档</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/categories">🧭分类</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/tags">🏷️标签</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/about">🛸关于</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/analytics">📊统计</a>
</li>
<li class="nav-item">
<a class="nav-item-link" href="/secret">🔐秘密</a>
</li>
</ul>
</nav>
<nav class="navbar navbar-bottom">
<ul class="nav">
<li class="nav-item">
<a class="nav-item-link nav-item-search" title="搜索">
<i class="ri-search-line"></i>
</a>
</li>
</ul>
</nav>
<div class="search-form-wrap">
<div class="local-search local-search-plugin">
<input type="search" id="local-search-input" class="local-search-input" placeholder="Search...">
<div id="local-search-result" class="local-search-result"></div>
</div>
</div>
</aside>
<div id="mask"></div>
<!-- #reward -->
<div id="reward">
<span class="close"><i class="ri-close-line"></i></span>
<p class="reward-p"><i class="ri-cup-line"></i>请我喝杯咖啡吧~</p>
<div class="reward-box">
<div class="reward-item">
<img class="reward-img" src="/images/alipay.jpg">
<span class="reward-type">支付宝</span>
</div>
<div class="reward-item">
<img class="reward-img" src="/images/wechat.jpg">
<span class="reward-type">微信</span>
</div>
</div>
</div>
<script src="/js/jquery-3.6.0.min.js"></script>
<script src="/js/lazyload.min.js"></script>
<!-- Tocbot -->
<script src="https://cdn.staticfile.org/jquery-modal/0.9.2/jquery.modal.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.staticfile.org/jquery-modal/0.9.2/jquery.modal.min.css"
/>
<script src="https://cdn.staticfile.org/justifiedGallery/3.8.1/js/jquery.justifiedGallery.min.js"></script>
<script src="/dist/main.js"></script>
<!-- ImageViewer -->
<!-- Root element of PhotoSwipe. Must have class pswp. -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<!-- Background of PhotoSwipe.
It's a separate element as animating opacity is faster than rgba(). -->
<div class="pswp__bg"></div>
<!-- Slides wrapper with overflow:hidden. -->
<div class="pswp__scroll-wrap">
<!-- Container that holds slides.
PhotoSwipe keeps only 3 of them in the DOM to save memory.
Don't modify these 3 pswp__item elements, data is added later on. -->
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<!-- Controls are self-explanatory. Order can be changed. -->
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" style="display:none" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->
<!-- element will get class pswp__preloader--active when preloader is running -->
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">