-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
1083 lines (884 loc) · 53.5 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>
<!--[if lt IE 9 ]><html class="no-js oldie" lang="zh-hant-tw"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="zh-hant-tw"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="zh-hant-tw">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="author" content="Lee Meng" />
<title>LeeMeng - All About DataScience </title>
<!--- article-specific meta data
================================================== -->
<meta name="description" content="現居東京的資料科學家 L 在數據世界裡頭的所想、所學以及所感。這個網站紀錄了所有我的個人資訊,包含工作經歷、做過的專案以及與資料科學相關的文章。透過分享自己的學習心得以及業界經驗,我希望能讓更多人接觸到資料科學的奧秘。此部落格主要會提及資料科學、資料工程、機器學習及資料視覺化技巧。" />
<meta name="keywords" content="部落格, 資料科學, 數據科學, Python, R, 機器學習, 資料分析, 深度學習, 資料視覺化, 軟體工程, 資料工程, 雲端運算, 台灣, blog, data science, machine learning, deep learning, data analysis, data visualization, data engineering, taiwan, tensorflow, tensorflow.js, keras, pytorch, transformer, bert, gpt" />
<!--- Open Graph Object metas
================================================== -->
<meta property="og:image" content="https://leemeng.tw/theme/images/hero-bg4.jpg" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://leemeng.tw" />
<meta property="og:title" content="All About DataScience" />
<meta property="og:description" content="現居東京的資料科學家 L 在數據世界裡頭的所想、所學以及所感。這個網站紀錄了所有我的個人資訊,包含工作經歷、做過的專案以及與資料科學相關的文章。透過分享自己的學習心得以及業界經驗,我希望能讓更多人接觸到資料科學的奧秘。此部落格主要會提及資料科學、資料工程、機器學習及資料視覺化技巧。" />
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<!--for customized css in individual page-->
<!--for showing toc navigation which slide in from left-->
<!--for responsive embed youtube video-->
<!--for prettify dark-mode result-->
<link rel="stylesheet" type="text/css" href="https://leemeng.tw/theme/css/base.css">
<link rel="stylesheet" type="text/css" href="https://leemeng.tw/theme/css/vendor.css">
<link rel="stylesheet" type="text/css" href="https://leemeng.tw/theme/css/main.css">
<link rel="stylesheet" type="text/css" href="https://leemeng.tw/theme/css/ipython.css">
<link rel="stylesheet" type="text/css" href='https://leemeng.tw/theme/css/progress-bar.css' />
<!--TiqueSearch-->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400">
<link rel="stylesheet" href="https://leemeng.tw/theme/tipuesearch/css/normalize.css">
<link rel="stylesheet" href="https://leemeng.tw/theme/tipuesearch/css/tipuesearch.css">
<!-- script
================================================== -->
<script src="https://leemeng.tw/theme/js/modernizr.js"></script>
<script src="https://leemeng.tw/theme/js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="../theme/images/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="../theme/images/favicon.ico" type="image/x-icon"/>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-106559980-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-106559980-1');
</script>
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="../index.html"><img src="https://leemeng.tw/theme/images/logo.png" alt="Homepage"></a>
</div>
<!--navigation bar ref: http://jinja.pocoo.org/docs/2.10/tricks/-->
<nav class="header-nav-wrap">
<ul class="header-nav">
<li class="current">
<a class="smoothscroll" href="#home">Home</a>
</li>
<li>
<a class="smoothscroll" href="#about">About</a>
</li>
<li>
<a class="smoothscroll" href="#projects">Projects</a>
</li>
<li>
<a class="smoothscroll" href="#blog">Blog</a>
</li>
<li>
<a href="https://demo.leemeng.tw">Demo</a>
</li>
<li>
<a href="../books.html">Books</a>
</li>
<li>
<a class="smoothscroll" href="#contact">Contact</a>
</li>
</ul>
<!--<div class="search-container">-->
<!--<form action="../search.html">-->
<!--<input type="text" placeholder="Search.." name="search">-->
<!--<button type="submit"><i class="im im-magnifier" aria-hidden="true"></i></button>-->
<!--</form>-->
<!--</div>-->
</nav>
<a class="header-menu-toggle" href="#0"><span>Menu</span></a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home page-hero target-section" data-parallax="scroll" data-image-src="https://leemeng.tw/theme/images/hero-bg4.jpg" data-natural-width=1100 data-natural-height=1100 data-position-y=center>
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h3>Hello There</h3>
<h1>
I am Meng Lee, <br>
a ML engineer / data <br>
scientist based in Tokyo.
</h1>
<div class="home-content__buttons">
<a href="#blog" class="smoothscroll btn btn--stroke">
Blog
</a>
<a href="#projects" class="smoothscroll btn btn--stroke">
Projects
</a>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
</div>
</div> <!-- end home-content -->
<ul class="home-social">
<li><a href="https://github.com/leemengtaiwan" target="_blank">
<i class="im im-github" aria-hidden="true"></i>
<span>Github</span>
</a></li>
<li><a href="https://www.facebook.com/LeeMengTaiwan" target="_blank">
<i class="im im-facebook" aria-hidden="true"></i>
<span>Facebook</span>
</a></li>
<li><a href="https://www.instagram.com/leemengtaiwan/" target="_blank">
<i class="im im-instagram" aria-hidden="true"></i>
<span>Instagram</span>
</a></li>
<li><a href="https://www.linkedin.com/in/leemeng1990/" target="_blank">
<i class="im im-linkedin" aria-hidden="true"></i>
<span>LinkedIn</span>
</a></li> </ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section" style="padding-bottom: 1rem">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full text-center">
<h3>About</h3>
<h1>More About Me</h1>
<p class="lead">
現居東京的機器學習工程師 / 資料科學家。喜歡分析數據並做做有趣的 AI 實驗 <i class="im im-flask" aria-hidden="true"></i><br/>
假日在東京市區騎著腳踏車冒險、尋找美食。懶得動時就待在咖啡廳寫寫程式 <i class="im im-coffee" aria-hidden="true"></i><br/>
</p>
</div>
</div>
<div class="row about-content">
<div class="col-six tab-full left">
<h3>All of us are unique.</h3>
<p>
依照不同業界與環境需求,一個機器學習工程師或是資料科學家所需的經驗以及點的技能都會有所不同。
更遑論是一個像我一樣在軟體工程、資料工程、資料科學以及機器學習領域打滾的人了。
</p>
<p>
資料科學是透過理解資料,從資料中萃取有意義的價值與洞見。而為了達到這目的,
有很多領域需要了解:大數據、BI、程式設計、資料分析、統計概念、資料視覺化、機器學習、雲端運算 ... 族繁不及備載。
</p>
<p>
要客觀且定量地衡量一個資料科學家在以上各領域的專業程度不容易。我試著以自己目前最為熟悉的深度學習為基準,
設置熟悉度為 100 %,則在與其他領域比較之後,可以得到對應的相對分數。最後就成了右邊(或者下面)這個超級主觀的衡量表,博君一笑。
</p>
<p>
歡迎跟我說說你在各領域的熟悉程度
<a href="#contact" class="smoothscroll">
<i class="im im-paperplane" aria-hidden="true"></i>
</a>
</p>
</div>
<div class="col-six tab-full right">
<h3>I'm familiar with..</h3>
<ul class="skill-bars">
<li>
<div class="progress percent100"><span>100%</span></div>
<strong>深度學習</strong>
</li>
<li>
<div class="progress percent75"><span>75%</span></div>
<strong>資料視覺化</strong>
</li>
<li>
<div class="progress percent60"><span>60%</span></div>
<strong>資料工程</strong>
</li>
<li>
<div class="progress percent65"><span>65%</span></div>
<strong>程式設計</strong>
</li>
<li>
<div class="progress percent70"><span>70%</span></div>
<strong>資料分析</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>機器學習</strong>
</li>
</ul>
</div>
</div> <!-- end about-content -->
<!--start about-content buttons-->
<!--<div class="row about-content about-content--buttons">-->
<!--<div class="col-six tab-full left">-->
<!--<a href="#0" class="btn btn--primary full-width">Download My CV</a>-->
<!--</div>-->
<!--<div class="col-six tab-full right">-->
<!--<a href="#0" class="btn full-width">Hire Me Now</a>-->
<!--</div>-->
<!--</div> -->
<!-- end about-content buttons -->
<!--start about-content timeline-->
<div class="row about-content about-content--timeline">
<div class="col-full text-center">
<h3>My Work Experience.</h3>
</div>
<div class="col-six tab-full left">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2018/06 - 現在</p>
<h3>SmartNews</h3>
<h5>Data Scientist</h5>
</div>
<div class="timeline__desc">
<p>「成為完美結合資料工程與資料科學的資料科學家」。<br/>
分析部分專注在建立預測顧客價值(Life Time Value)、每日活躍使用者人數等重要 KPI 的預測模型。
資料工程則包含改善並維護資料管理平台,以建立一個更有效率且可簡單共享分析結果的資料科學環境。
</p>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2017/01 - 2018/06</p>
<h3>MarketEnterprise Co</h3>
<h5>Data Scientist</h5>
</div>
<div class="timeline__desc">
<p>分析銷售資料以及實作資料工程。依不同專案進行 ad hoc 分析並直接提供洞見與建議給決策管理者,以增加營收或改善員工生產力;
實作企業用儀表板(Dashboard)背後所需的資料匯總、套用商業邏輯以及資料處理排程;建立非技術人員也能使用的 SQL 分析平台;
設計並實作預測模型以評估顧客成交率等 KPI。</p>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end left -->
<div class="col-six tab-full right">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2016/06 - 2017/01</p>
<h3>MarketEnterprise Co</h3>
<h5>Software Engineer</h5>
</div>
<div class="timeline__desc">
<p>主要專注在利用 Python 以及 <a href="https://aws.amazon.com/tw/">AWS</a> 來設計資訊系統以及開發企業內部系統所需的 API 。 如使用 <a href="https://aws.amazon.com/tw/lambda/">AWS Lambda</a>
進行資料流的處理(ETL)、開發並改善電子商務網站的搜尋引擎(主要使用 <a href="https://www.mongodb.com/cloud/atlas/lp/general">MongoDB</a>、<a href="https://www.elastic.co/products/elasticsearch">ElasticSearch</a> )。</p>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2013/09 - 2015/06</p>
<h3>National Taiwan University</h3>
<h5>Master of Information Management</h5>
</div>
<div class="timeline__desc">
<p>研究領域包含資料探勘以及推薦系統。
論文 <a href="http://aisel.aisnet.org/cgi/viewcontent.cgi?article=1014&context=pacis2015">An Effective Friend Recommendation Method Using Learning to Rank and Social Influence</a> 的共同作者,
該論文被登錄在 <a href="http://aisel.aisnet.org/pacis2015/index.3.html">Pacific Asia Conference on Information Systems (PACIS)</a>。另擔任演算法、資料結構以及資料探勘等課程之助教。</p>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end right -->
</div> <!-- end about-content timeline -->
</section> <!-- end about -->
<!-- works
================================================== -->
<section id="projects" class="s-works target-section" style="text-align: initialb.">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Portfolio</h3>
<h1>See My Latest Projects.</h1>
<p class="lead">
一些閒暇時間做的小玩意兒,你或許會有興趣瞧瞧:)<br/>
點擊各圖片來查看細節或是利用各圖左上角的傳送門 <i class="im im-link" aria-hidden="true"></i><br/>
</p>
</div>
</div>
<div class="row masonry-wrap">
<div class="masonry">
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-covid-19.jpg" class="thumb-link" title="從 COVID-19 看台灣與世界" data-size="1050x700">
<img src="theme/images/portfolio/covid-19.jpg"
srcset="theme/images/portfolio/covid-19.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
從 COVID-19 看台灣與世界
</h3>
<p class="item-folio__cat">
了解如何開始使用 Python 視覺化並分析台灣與世界的 COVID-19 疫情
</p>
</div>
<a href="https://covid19.leemeng.tw/" target="_blank" class="item-folio__project-link" title="專案連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p><a href="https://covid19.leemeng.tw/" target="_blank">在這個專案裡頭</a>,我透過一系列專欄文章引領讀者存取 COVID-19 的公開數據並了解如何繪製如衛福部疾管署首頁所呈現的疫情趨勢。 每篇專欄都有對應的 Colab 並包含用來生成圖表的 Python 程式碼,希望能鼓勵更多人深入探索數據,進而發現對社會有用的新洞見。</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-deep-learning-resources.jpg" class="thumb-link" title="由淺入深的 AI 與深度學習資源" data-size="1050x700">
<img src="theme/images/portfolio/deep-learning-resources.jpg"
srcset="theme/images/portfolio/deep-learning-resources.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
由淺入深的 AI 與深度學習資源
</h3>
<p class="item-folio__cat">
大量優質的 AI 與深度學習的線上資源,適合各個學習階段的你進一步探索
</p>
</div>
<a href="https://leemeng.tw/deep-learning-resources.html" target="_blank" class="item-folio__project-link" title="專案介紹連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>我將線上的深度學習資源做些整理並逐一介紹。你可以在<a href="https://leemeng.tw/deep-learning-resources.html">由淺入深的深度學習資源整理</a>了解細節,或者直接去專屬的 <a href="https://github.com/leemengtaiwan/deep-learning-resources" target="_blank">Github Repo</a> 關注並查看所有資源。</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-gapminder.jpg" class="thumb-link" title="GapMinder 中文版" data-size="1050x700">
<img src="theme/images/portfolio/gapminder.jpg"
srcset="theme/images/portfolio/gapminder.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
GapMinder 中文版
</h3>
<p class="item-folio__cat">
利用公開數據來探索全世界以及台灣的動態資料視覺化工具
</p>
</div>
<a href="https://leemeng.tw/gapminder.html" target="_blank" class="item-folio__project-link" title="專案介紹連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>這是一個利用各國公開數據來探索世界以及台灣的資料視覺化工具。你可以在<a href="https://leemeng.tw/gapminder.html">如何用 30 秒了解台灣發展與全球趨勢:用 GapMinder 培養正確世界觀</a>實際使用此工具並了解細節</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-cartoongan.jpg" class="thumb-link" title="用 CartoonGAN 畫日本動漫" data-size="1050x700">
<img src="theme/images/portfolio/cartoongan.jpg"
srcset="theme/images/portfolio/cartoongan.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
用 CartoonGAN 畫日本動漫
</h3>
<p class="item-folio__cat">
讓任何人都可以使用對抗生成網路 GAN 來生成動漫的一個 TensorFlow 2 專案
</p>
</div>
<a href="https://leemeng.tw/generate-anime-using-cartoongan-and-tensorflow2.html" target="_blank" class="item-folio__project-link" title="專案介紹連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>閱讀<a href="https://leemeng.tw/generate-anime-using-cartoongan-and-tensorflow2.html">用 CartoonGAN 及 TensorFlow 2 生成新海誠與宮崎駿動畫</a>或前往 <a href="https://github.com/mnicnc404/CartoonGan-tensorflow" target="_blank">Github</a> 了解細節。</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-airflow-comic.jpg" class="thumb-link" title="漫畫連載通知 App" data-size="1050x700">
<img src="theme/images/portfolio/airflow-comic.jpg"
srcset="theme/images/portfolio/airflow-comic.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
漫畫連載通知 App
</h3>
<p class="item-folio__cat">
透過 Airflow 以及 Slack 來通知最新漫畫連載的應用
</p>
</div>
<a href="https://leemeng.tw/a-story-about-airflow-and-data-engineering-using-how-to-use-python-to-catch-up-with-latest-comics-as-an-example.html" target="_blank" class="item-folio__project-link" title="專案介紹連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>這是一個透過 Airflow 以及 Slack 來通知最新漫畫連載的 App。你可以在<a href="https://leemeng.tw/a-story-about-airflow-and-data-engineering-using-how-to-use-python-to-catch-up-with-latest-comics-as-an-example.html">一段 Airflow 與資料工程的故事:談如何用 Python 追漫畫連載</a>了解細節,或者直接去 <a href="https://github.com/leemengtaiwan/airflow-tutorials" target="_blank">Github</a> 查看程式碼。</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-gist-evernote.jpg" class="thumb-link" title="Gist x Evernote 同步工具" data-size="1050x700">
<img src="theme/images/portfolio/gist-evernote.jpg"
srcset="theme/images/portfolio/gist-evernote.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Gist x Evernote 同步工具
</h3>
<p class="item-folio__cat">
利用 Selenium 將 Github Gists 同步到 Evernote 的生產工具
</p>
</div>
<a href="https://github.com/leemengtaiwan/gist-evernote" target="_blank" class="item-folio__project-link" title="Github Repo 連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>這是一個利用 Selenium 將 Github Gists 同步到 Evernote 的生產工具。你可以在 <a href="https://github.com/leemengtaiwan/gist-evernote" target="_blank">Github</a> 查看細節。</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-text-generation.jpg" class="thumb-link" title="天龍八部小說生成器" data-size="1050x700">
<img src="theme/images/portfolio/text-generation.jpg"
srcset="theme/images/portfolio/text-generation.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
天龍八部小說生成器
</h3>
<p class="item-folio__cat">
利用 TensorFlow 2.0 及 TensorFlow.js 生成似真似假的武俠小說
</p>
</div>
<a href="https://leemeng.tw/how-to-generate-interesting-text-with-tensorflow2-and-tensorflow-js.html" target="_blank" class="item-folio__project-link" title="文章連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>展示一個由 TensorFlow 2.0 以及 TensorFlow.js 實現的線上文本生成應用。你可以前往<a href="https://leemeng.tw/how-to-generate-interesting-text-with-tensorflow2-and-tensorflow-js.html" target="_blank">讓 AI 寫點金庸:如何用 TensorFlow 2.0 及 TensorFlow.js 寫天龍八部</a>了解詳情。</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<div href="theme/images/portfolio/gallery/g-cat-recognizer.jpg" class="thumb-link" title="AI 如何找出你的喵" data-size="1050x700">
<img src="theme/images/portfolio/cat-recognizer.jpg"
srcset="theme/images/portfolio/cat-recognizer.jpg 1x, theme/images/portfolio/[email protected] 2x" alt="">
<span class="shadow-overlay" style="cursor: pointer"></span>
</div>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
AI 如何找出你的喵
</h3>
<p class="item-folio__cat">
一個利用 TensorFlow 以及 Flask 實做的貓狗辨識應用
</p>
</div>
<a href="https://demo.leemeng.tw/" target="_blank" class="item-folio__project-link" title="Github Repo 連結">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>這是一個利用 TensorFlow 以及 Flask 來分辨貓咪以及狗狗的圖片辨識應用,使用 Docker 封裝並部署在 Heroku 上。你可以閱讀 <a href="https://demo.leemeng.tw/" target="_blank">AI 如何找出你的喵:直觀理解卷積神經網路</a> 來了解細節並實際使用該神經網路。</p>
</div>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
</div>
</div> <!-- end masonry -->
</section> <!-- end works -->
<!-- testimonials
================================================== -->
<!--<div class="s-testimonials">-->
<!--<div class="overlay"></div>-->
<!--<div class="row testimonials-header">-->
<!--<div class="col-full">-->
<!--<h1 class="h02">What People Say.</h1>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row testimonials">-->
<!--<div class="col-full testimonials__slider">-->
<!--<div class="testimonials__slide">-->
<!--<img src="theme/images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">-->
<!--<p>Qui ipsam temporibus quisquam velMaiores eos cumque distinctio nam accusantium ipsum.-->
<!--Laudantium quia consequatur molestias delectus culpa facere hic dolores aperiam. Accusantium quos qui praesentium corpori.</p>-->
<!--<div class="testimonials__author h06">-->
<!--Tim Cook-->
<!--<span>CEO, Apple</span>-->
<!--</div>-->
<!--</div>-->
<!--<div class="testimonials__slide">-->
<!--<img src="theme/images/avatars/user-05.jpg" alt="Author image" class="testimonials__avatar">-->
<!--<p>Excepturi nam cupiditate culpa doloremque deleniti repellat. Veniam quos repellat voluptas animi adipisci.-->
<!--Nisi eaque consequatur. Quasi voluptas eius distinctio. Atque eos maxime. Qui ipsam temporibus quisquam vel.</p>-->
<!--<div class="testimonials__author h06">-->
<!--Sundar Pichai-->
<!--<span>CEO, Google</span>-->
<!--</div>-->
<!--</div>-->
<!--<div class="testimonials__slide">-->
<!--<img src="theme/images/avatars/user-02.jpg" alt="Author image" class="testimonials__avatar">-->
<!--<p>Repellat dignissimos libero. Qui sed at corrupti expedita voluptas odit. Nihil ea quia nesciunt. Ducimus aut sed ipsam.-->
<!--Autem eaque officia cum exercitationem sunt voluptatum accusamus. Quasi voluptas eius distinctio.</p>-->
<!--<div class="testimonials__author h06">-->
<!--Satya Nadella-->
<!--<span>CEO, Microsoft</span>-->
<!--</div>-->
<!--</div>-->
<!--</div> <!– end testimonials__slider –>-->
<!--</div> <!– end testimonials –>-->
<!--</div> <!– end s-testimonials –>-->
<!-- blog
================================================== -->
<section id="blog" class="s-blog target-section" style="padding-top:14rem">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Journal</h3>
<h1><a href="blog.html" title="前往部落格專屬頁面">Latest From The Blog.</a></h1>
<p class="lead">
不只是資料科學家,處在資訊時代的各行各業都需要能活用資料科學的人才。</br>
透過分享自己的學習心得以及業界經驗,我希望讓更多人接觸到資料科學的奧秘。</br>
<a href="../blog.html" title="前往部落格專屬頁面">部落格</a>主要會提及<a href="../tag/zi-liao-ke-xue.html" title="查看所有標籤為「資料科學」的文章">資料科學</a>、<a href="../tag/zi-liao-gong-cheng.html" title="查看所有標籤為「資料工程」的文章">資料工程</a>、<a href="../tag/ji-qi-xue-xi.html" title="查看所有標籤為「機器學習」的文章">機器學習</a>及<a href="../tag/zi-liao-shi-jue-hua.html" title="查看所有標籤為「資料視覺化」的文章">資料視覺化</a>技巧 <i class="im im-heart" aria-hidden="true"></i><br/>
</p>
</div>
</div>
<div class="row blog-content">
<div class="col-full">
<div class="blog-list block-1-2 block-tab-full">
<article class="col-block">
<div class="blog-date">
<a href="https://leemeng.tw/data-science-ai-and-our-digital-future-in-the-age-of-surveillance-capitalism.html">2021-01-25 (Mon)</a>
<br>
6,405 views
</div>
<h2 class="h01">
<a href="https://leemeng.tw/data-science-ai-and-our-digital-future-in-the-age-of-surveillance-capitalism.html" rel="bookmark" title="Permalink to 監控資本主義時代下的資料科學、AI 與你我的數位未來">監控資本主義時代下的資料科學、AI 與你我的數位未來</a>
</h2>
<div>
<a href="https://leemeng.tw/data-science-ai-and-our-digital-future-in-the-age-of-surveillance-capitalism.html" rel="bookmark" title="Permalink to 監控資本主義時代下的資料科學、AI 與你我的數位未來">
<img src="https://leemeng.tw/theme/images/background/maxim-hopman-IayKLkmz6g0-unsplash.jpg">
</a>
</div>
<p><p>這是一篇講述監控資本主義的驚悚輕小說與科普文。處在數位時代的每個人都需要了解谷歌、臉書與推特等科技巨頭如何形塑我們的數位現實以及其背後運作的商業邏輯與經濟誘因。文中也會清晰地呈現資料科學與監控資本主義之間的緊密關係。閱讀完本文的讀者將能重新找回數位時代中最重要的注意力並專注在真正重要的事情。</p></p>
<div class="blog-cat">
<a href="https://leemeng.tw/tag/jian-kong-zi-ben-zhu-yi.html" rel="tag">監控資本主義</a>
<a href="https://leemeng.tw/tag/zi-liao-ke-xue.html" rel="tag">資料科學</a>
<a href="https://leemeng.tw/tag/ren-gong-zhi-hui.html" rel="tag">人工智慧</a>
<a href="https://leemeng.tw/tag/shen-du-xue-xi.html" rel="tag">深度學習</a>
<a href="https://leemeng.tw/tag/tui-jian-xi-tong.html" rel="tag">推薦系統</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="https://leemeng.tw/essence-of-principal-component-analysis.html">2020-01-06 (Mon)</a>
<br>
137,554 views
</div>
<h2 class="h01">
<a href="https://leemeng.tw/essence-of-principal-component-analysis.html" rel="bookmark" title="Permalink to 世上最生動的 PCA:直觀理解並應用主成分分析">世上最生動的 PCA:直觀理解並應用主成分分析</a>
</h2>
<div>
<a href="https://leemeng.tw/essence-of-principal-component-analysis.html" rel="bookmark" title="Permalink to 世上最生動的 PCA:直觀理解並應用主成分分析">
<img src="https://leemeng.tw/theme/images/background/pca-league-of-legend-champions.jpg">
</a>
</div>
<p><p>這篇文章用世上最生動且實務的方式帶你直觀理解機器學習領域中十分知名且強大的線性降維技巧:主成分分析 PCA。我們將重新回顧你所學過的重要線性代數概念,並實際應用這些概念將數據有效地降維並去除特徵間的關聯。你也將學會如何使用 NumPy 和 scikit-learn 等 Python 函式庫自己實作 PCA。文中也分享使用 PCA 分析線上遊戲《英雄聯盟》公開數據的有趣案例。</p></p>
<div class="blog-cat">
<a href="https://leemeng.tw/tag/pca.html" rel="tag">PCA</a>
<a href="https://leemeng.tw/tag/zhu-cheng-fen-fen-xi.html" rel="tag">主成分分析</a>
<a href="https://leemeng.tw/tag/ji-qi-xue-xi.html" rel="tag">機器學習</a>
<a href="https://leemeng.tw/tag/xian-xing-dai-shu.html" rel="tag">線性代數</a>
<a href="https://leemeng.tw/tag/python.html" rel="tag">Python</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="https://leemeng.tw/deep-learning-for-everyone-understand-neural-net-and-linear-algebra.html">2019-10-13 (Sun)</a>
<br>
50,523 views
</div>
<h2 class="h01">
<a href="https://leemeng.tw/deep-learning-for-everyone-understand-neural-net-and-linear-algebra.html" rel="bookmark" title="Permalink to 給所有人的深度學習入門:直觀理解神經網路與線性代數">給所有人的深度學習入門:直觀理解神經網路與線性代數</a>
</h2>
<div>
<a href="https://leemeng.tw/deep-learning-for-everyone-understand-neural-net-and-linear-algebra.html" rel="bookmark" title="Permalink to 給所有人的深度學習入門:直觀理解神經網路與線性代數">
<img src="https://leemeng.tw/theme/images/background/CoverSymbolicTwoByThreeMatrixAndNN.png">
</a>
</div>
<p><p>這是篇透過大量動畫幫助你直觀理解神經網路的科普文。我們將介紹基礎的神經網路與線性代數概念,以及兩者之間的緊密關係。我們也將實際透過神經網路解決二元分類任務,了解神經網路的運作原理。讀完本文,你將能夠深刻地體會神經網路與線性代數之間的緊密關係,奠定 AI 之旅的基礎。</p></p>
<div class="blog-cat">
<a href="https://leemeng.tw/tag/shen-du-xue-xi.html" rel="tag">深度學習</a>
<a href="https://leemeng.tw/tag/manim.html" rel="tag">Manim</a>
<a href="https://leemeng.tw/tag/tensorflow.html" rel="tag">TensorFlow</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="https://leemeng.tw/gpt2-language-model-generate-chinese-jing-yong-novels.html">2019-09-07 (Sat)</a>
<br>
43,024 views
</div>
<h2 class="h01">
<a href="https://leemeng.tw/gpt2-language-model-generate-chinese-jing-yong-novels.html" rel="bookmark" title="Permalink to 直觀理解 GPT-2 語言模型並生成金庸武俠小說">直觀理解 GPT-2 語言模型並生成金庸武俠小說</a>
</h2>
<div>
<a href="https://leemeng.tw/gpt2-language-model-generate-chinese-jing-yong-novels.html" rel="bookmark" title="Permalink to 直觀理解 GPT-2 語言模型並生成金庸武俠小說">
<img src="https://leemeng.tw/theme/images/background/godslar-zboO0K1WfY4-unsplash.jpg">
</a>
</div>
<p><p>這篇文章將簡單向讀者介紹 OpenAI 的知名語言模型 GPT-2,並展示能夠生成金庸小說的 GPT-2 模型。文中也將透過視覺化工具 BertViz 來帶讀者直觀了解基於 Transformer 架構的 NLP 模型背後的自注意力機制。讀者也能透過文中提供的 GPT-2 模型及 Colab 筆記本自行生成全新的金庸橋段。</p></p>
<div class="blog-cat">
<a href="https://leemeng.tw/tag/zi-ran-yu-yan-chu-li.html" rel="tag">自然語言處理</a>
<a href="https://leemeng.tw/tag/nlp.html" rel="tag">NLP</a>
<a href="https://leemeng.tw/tag/pytorch.html" rel="tag">PyTorch</a>
</div>
</article>
</div> <!-- end blog-list -->
</div> <!-- end col-full -->
</div> <!-- end blog-content -->
<!-- Infinite scroll status elements -->
<div class="scroller-status">
<div class="infinite-scroll-request loader-ellips">
...
</div>
<p class="infinite-scroll-last"></p>
<p class="infinite-scroll-error"></p>
</div>
</section> <!-- end s-blog -->
<!-- s-cta
================================================== -->
<section class="s-cta">
<h6 id="subscribe" style="margin: 0;"></h6>
<div class="row narrow cta">
<div class="col-full cta__content">
<h2 class="h01"><a class="open-popup" style="font-family: 'librebaskerville-bold',serif">Get Latest Arrivals</a></h2>
<p class="lead">
跟資料科學相關的最新文章直接送到家。<br>
只要加入訂閱名單,當新文章出爐時,</br>
你將能馬上收到通知 <i class="im im-newspaper-o" aria-hidden="true"></i>
</p>
<div class="cta__action">
<a class="open-popup btn btn--primary btn--large" style="color: #FFFFFF">Subscribe</a>
</div>
</div> <!-- end cta -->
</div></section>
<!-- s-stats
================================================== -->
<section id="stats" class="s-stats">
<div class="row block-1-4 block-tab-1-2 block-mob-full stats">
<div class="col-block stats__col">
<div class="stats__count">
46
</div>
<h4>Articles</h4>
</div>
<div class="col-block stats__col">
<div class="stats__count">
549297
</div>
<h4>Curious Visitors</h4>
</div>
<div class="col-block stats__col stats__col--highlight">
<div class="stats__upsign">
<a href="#subscribe"><i class="im im-arrow-up" aria-hidden="true"></i></a>
</div>
<div class="stats__count">
1363
</div>
<h4>Passion Subscribers</h4>
</div>
<div class="col-block stats__col ">
<div class="stats__count">
1406829
</div>
<h4>Page Views</h4>
</div>
</div>
</section> <!-- end s-stats -->
<!-- s-stats
<!--================================================== -->
<!--<section id="contact" class="s-contact target-section" style='background-image: url("https://leemeng.tw/theme/images/hero-bg4-darken.jpg");'>-->
<section id="contact" class="s-contact target-section" style='background-image: none;'>
<div class="overlay"></div>
<div class="row narrow section-intro">
<div class="col-full">
<h3>Contact</h3>
<h1>Say Hello.</h1>
<p class="lead">
歡迎各種回饋以及建議 <i class="im im-light-bulb" aria-hidden="true"></i> 關於機器學習、人工智慧以及資料科學,可以跟我說說你有興趣了解的議題,或者提醒一些文章需要補足的地方,我會加以改進並撰寫相關文章。
另外如果你有任何有趣的資料科學專案、資源或者任何想要分享的東西,都歡迎透過以下表單聯絡我 <i class="im im-mail" aria-hidden="true"></i><br/>
</p>
</div>
</div>
<div class="row contact__main">
<div class="col-eight tab-full contact__form">
<form action="https://formspree.io/xpzjnzdg" method="POST" id="contactForm">
<div class="form-field">
<input name="name" type="text" id="contactName" placeholder="Name" value="" minlength="2" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="_replyto" type="email" id="contactEmail" placeholder="Email" value="" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="name" type="text" id="contactSubject" placeholder="Subject" value="" class="full-width">
</div>
<div class="form-field">
<textarea name="message" id="contactMessage" placeholder="Message" rows="10" cols="50" required="" aria-required="true" class="full-width"></textarea>
</div>
<div class="form-field">
<button class="full-width btn--primary" id="contactFormButton" type="submit" value="Send">Submit</button>
<div class="submit-loader">
<div class="text-loader">發送訊息中...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</form>
<!-- contact-warning -->
<div class="message-warning">
Oh no!訊息寄送失敗,請查看你的網路連線並再度嘗試。
</div>
<!-- contact-success -->
<div class="message-success">
你的訊息成功寄出,我會盡快查看並與你聯絡:)<br>
</div>
</div>
<div class="col-four tab-full contact__infos">
<!--<h4 class="h06">Phone</h4>-->
<!--Mobile: (+81)<br>-->
<!--</p>-->
<h4 class="h06">Email</h4>
<p>b98705001 AT gmail.com<br>
meng.lee AT smartnews.com
</p>
<h4 class="h06">Address</h4>
<p>
東京都目黑區<br>
日本
</p>
</div>
</div>
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="col-full">
<div class="footer-logo">
<a class="footer-site-logo" href="#0"><img src="https://leemeng.tw/theme/images/logo.png" alt="Homepage"></a>
</div>
<ul class="footer-social">
<li><a href="https://github.com/leemengtaiwan" target="_blank">
<i class="im im-github" aria-hidden="true"></i>
<span>Github</span>
</a></li>
<li><a href="https://www.facebook.com/LeeMengTaiwan" target="_blank">
<i class="im im-facebook" aria-hidden="true"></i>
<span>Facebook</span>
</a></li>
<li><a href="https://www.instagram.com/leemengtaiwan/" target="_blank">
<i class="im im-instagram" aria-hidden="true"></i>
<span>Instagram</span>
</a></li>
<li><a href="https://www.linkedin.com/in/leemeng1990/" target="_blank">
<i class="im im-linkedin" aria-hidden="true"></i>
<span>LinkedIn</span>
</a></li> </ul>
</div>
</div>
<div class="row footer-bottom">
<div class="col-twelve">
<div class="copyright">
<span>Powered by <a href="http://getpelican.com/" target="_blank">Pelican</a></span>
<span>© Copyright LeeMeng 2023</span>
<span>Design by <a href="https://www.styleshout.com/" target="_blank">styleshout</a></span>
</div>
<div class="go-top">