-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
990 lines (540 loc) · 48.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Pega Devlog</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Pega's Development log for myself and others">
<meta property="og:type" content="website">
<meta property="og:title" content="Pega Devlog">
<meta property="og:url" content="https://jehyunlee.github.io/index.html">
<meta property="og:site_name" content="Pega Devlog">
<meta property="og:description" content="Pega's Development log for myself and others">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="Jehyun Lee">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://jehyunlee.github.io/"/>
<link rel="alternate" href="https://jehyunlee.github.io/rss2.xml" title="Pega Devlog" type="application/atom+xml" />
<link rel="icon" href="/images/favicon-32x32.png" />
<link rel="stylesheet" href="/libs/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/libs/titillium-web/styles.css">
<link rel="stylesheet" href="/libs/source-code-pro/styles.css">
<link rel="stylesheet" href="/css/style.css">
<script src="/libs/jquery/3.5.0/jquery.min.js"></script>
<link rel="stylesheet" href="/libs/lightgallery/css/lightgallery.min.css">
<link rel="stylesheet" href="/libs/justified-gallery/justifiedGallery.min.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-155262264-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-155262264-1');
</script>
<!-- End Google Analytics -->
<meta name="generator" content="Hexo 5.4.0"></head>
<body>
<div id="wrap">
<header id="header">
<div id="header-outer" class="outer">
<div class="container">
<div class="container-inner">
<div id="header-title">
<h1 class="logo-wrap">
<a href="/" class="logo"></a>
</h1>
</div>
<div id="header-inner" class="nav-container">
<a id="main-nav-toggle" class="nav-icon fa fa-bars"></a>
<div class="nav-container-inner">
<ul id="main-nav">
<li class="main-nav-list-item" >
<a class="main-nav-list-link" href="/">Home</a>
</li>
<ul class="main-nav-list"><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/GIS/">GIS</a><ul class="main-nav-list-child"><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/GIS/Python/">Python</a></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/GIS/QGIS/">QGIS</a></li></ul></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/General/">General</a></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/ImageJ/">ImageJ</a><ul class="main-nav-list-child"><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/ImageJ/Cookbook/">Cookbook</a></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/ImageJ/Tutorial/">Tutorial</a></li></ul></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/Python/">Python</a><ul class="main-nav-list-child"><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/Python/Data-Science/">Data Science</a></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/Python/Deep-Learning/">Deep Learning</a></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/Python/General/">General</a></li><li class="main-nav-list-item"><a class="main-nav-list-link" href="/categories/Python/Physics/">Physics</a></li></ul></li></ul>
<li class="main-nav-list-item" >
<a class="main-nav-list-link" href="/about/index.html">About</a>
</li>
</ul>
<nav id="sub-nav">
<div id="search-form-wrap">
<form class="search-form">
<input type="text" class="ins-search-input search-form-input" placeholder="Search" />
<button type="submit" class="search-form-submit"></button>
</form>
<div class="ins-search">
<div class="ins-search-mask"></div>
<div class="ins-search-container">
<div class="ins-input-wrapper">
<input type="text" class="ins-search-input" placeholder="Type something..." />
<span class="ins-close ins-selectable"><i class="fa fa-times-circle"></i></span>
</div>
<div class="ins-section-wrapper">
<div class="ins-section-container"></div>
</div>
</div>
</div>
<script>
(function (window) {
var INSIGHT_CONFIG = {
TRANSLATION: {
POSTS: 'Posts',
PAGES: 'Pages',
CATEGORIES: 'Categories',
TAGS: 'Tags',
UNTITLED: '(Untitled)',
},
ROOT_URL: '/',
CONTENT_URL: '/content.json',
};
window.INSIGHT_CONFIG = INSIGHT_CONFIG;
})(window);
</script>
<script src="/js/insight.js"></script>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<div class="main-body container-inner">
<div class="main-body-inner">
<section id="main">
<div class="main-body-header">
<h1 class="header">
<em class="page-title-link" data-url="home">Home</em>
</h1>
</div>
<div class="main-body-content">
<section class="archives-wrap">
<div class="archive-year-wrap">
<a href="/archives/2024" class="archive-year"><i class="icon fa fa-calendar-o"></i>2024</a>
</div>
<div class="archives">
<div class="article-row">
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/12/20/General-71_hobbyart/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/71_hobbyart_00.jpg)" alt="AI와 예술 창작 - AI 그림이라는 진지한 취미" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-12-20T12:29:00.000Z" itemprop="datePublished">2024-12-20</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/12/20/General-71_hobbyart/">AI와 예술 창작 - AI 그림이라는 진지한 취미</a>
</h1>
<p class="article-excerpt">
김재인 교수님의 주선으로 AI를 도구로 예술을 하는 분들과 같은 자리에 섰습니다.
내가 끼어도 되는 걸까 싶은 걱정과 이런 분들과 함께 한다는 기대가 공존했습니다.
말이 토론이었지 오가는 말씀 속에서 많이 배우고 시야가 크게 넒어지는 느낌을 받았습니다.
1. 발표 전1.1. 김재인 교수님
김재인 교수님 블로그youtube: 기술은 예술의 자원일까? 위협
</p>
</div>
</article>
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/11/18/General-69_SNU/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/69_SNU_00.png)" alt="인공지능을 활용한 슬기로운 연구생활" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-11-18T12:29:00.000Z" itemprop="datePublished">2024-11-18</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/11/18/General-69_SNU/">인공지능을 활용한 슬기로운 연구생활</a>
</h1>
<p class="article-excerpt">
서울대학교 응용물리연구소의 초청을 받아 대학원생 대상 강의를 드렸습니다.
생성 AI를 이용한 연구 활용 강의지만, 평소보다 오용에 대한 주의를 몇배 더 강하게 드렸습니다.
연구를 업으로 삼아야 하는 분들입니다. 기술은 바뀌더라도 남을 마인드가 중요하다고 생각했습니다.
인공지능을 활용한 슬기로운 연구생활
강의자료 다운로드 (219 pages)
기존 발
</p>
</div>
</article>
</div>
<div class="article-row">
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/11/07/General-67_afore2024/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/67_AFORE2024_00.png)" alt="생성AI 활용 학회 발표 준비" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-11-07T14:29:00.000Z" itemprop="datePublished">2024-11-07</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/11/07/General-67_afore2024/">생성AI 활용 학회 발표 준비</a>
</h1>
<p class="article-excerpt">
오랜만에 연구 결과를 국제학회에서 발표했습니다.
일정이 바빴다는 핑계를 댈 수도 있지만 생성 AI의 능력과 그간 쌓인 노하우를 믿었습니다.
밀도있게 3일 준비해서 발표를 마쳤습니다. 자세하게 말씀드릴 수는 없지만 노하우를 공유합니다.
2024.09.14. - 초록 제출
Scopus: Scopus content
(1) 결론은 가지고 시작
여러 이유가 겹
</p>
</div>
</article>
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/11/04/General-68_kierinterview/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/68_kierinterview_00.png)" alt="한국에너지기술연구원 진로 티처 - AI계산과학" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-11-04T14:29:00.000Z" itemprop="datePublished">2024-11-04</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/11/04/General-68_kierinterview/">한국에너지기술연구원 진로 티처 - AI계산과학</a>
</h1>
<p class="article-excerpt">
제가 근무하는 한국에너지기술연구원에서 진행하는 진로 티처 영상에 참여하였습니다.
AI·계산과학이라는 분야에 대해 소개하는 영상으로,
저 외에 공정/엔지니어링 분야의 박정호 박사님, 배터리 소재의 AI 적용을 연구하는 이찬우 박사님이 참여했습니다.
한국에너지기술연구원 에너지AI·계산과학실
한국에너지기술연구원 에너지AI·계산과학실
출연연마다 AI 조직을
</p>
</div>
</article>
</div>
<div class="article-row">
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/10/15/General-70_Taejae/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/70_Taejae_00.png)" alt="태재미래교육포럼 - 실용적 AI 업무 활용 방안" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-10-15T12:29:00.000Z" itemprop="datePublished">2024-10-15</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/10/15/General-70_Taejae/">태재미래교육포럼 - 실용적 AI 업무 활용 방안</a>
</h1>
<p class="article-excerpt">
“교육의 미래: 사라지는 것과 생겨나는 것”이라는 주제로 태재미래교육포럼이 열렸습니다.
교육에 대해 고민하는 많은 연사들의 발표 가운데, 저도 평소의 고민을 담아 한 말씀을 드렸습니다.
“안경을 쓴다고 눈이 좋아지지 않듯, AI를 쓴다고 스스로의 역량이 강화되지 않습니다. 별도의 노력이 필요합니다.”
실용적 AI 업무 활용 방안
ancient origi
</p>
</div>
</article>
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/10/15/General-65_EOST2024/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/65_EOST2024_00.png)" alt="EOST2024 - 연구 현장의 생성 AI 활용 현황" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-10-15T09:11:00.000Z" itemprop="datePublished">2024-10-15</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/10/15/General-65_EOST2024/">EOST2024 - 연구 현장의 생성 AI 활용 현황</a>
</h1>
<p class="article-excerpt">
ETRI Open Source Tech Day 2024에서 발표를 드렸습니다.
2017년에 알파고가 전지전능의 대명사였던 것처럼, 최근에는 생성AI가 그런 느낌입니다.
조금이나마 정리가 되기를 바라며, 한국에너지기술연구원의 사례를 공유드렸습니다.
발표자료를 공유드립니다. (다운로드)
전체 연사 발표자료 (링크)
</p>
</div>
</article>
</div>
<div class="article-row">
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/10/09/General-63_aiforwork/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/63_aiforwork_00.png)" alt="활용 업무 기준 AI 분류" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-10-09T07:37:00.000Z" itemprop="datePublished">2024-10-09</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/10/09/General-63_aiforwork/">활용 업무 기준 AI 분류</a>
</h1>
<p class="article-excerpt">
최근 AI 업무 적용을 기획하는 분들을 만날 기회가 많이 생겼습니다.
그러나 대화를 나누다 보면 같은 ‘인공지능’, ‘AI’라는 단어를 너무 넓게 쓰고 있다는 것이 느껴집니다.
AI라는 말 자체가 모호하긴 하지만 업무를 정의할 수 없을 만큼 모호하기에 정리해 보았습니다.
노벨상: 2024 노벨 물리학상조선일보: “챗GPT에 신년사 써보게하니 훌륭… 잘
</p>
</div>
</article>
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/09/25/General-62_worksmart/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/62_worksmart_00.png)" alt="효율적 업무효율화" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-09-25T07:37:00.000Z" itemprop="datePublished">2024-09-25</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/09/25/General-62_worksmart/">효율적 업무효율화</a>
</h1>
<p class="article-excerpt">
한국청정기술학회(9/25)에서 발표한 내용입니다.
연구를 하는 입장에서 최근의 생성 AI들 도움을 많이 받고 있습니다.
특히 최근 자체 제작한 GPTs의 도움을 많이 받고 있어 해당 내용을 중심으로 담았습니다.
강의자료 다운로드
1. Overview
GPT를 비롯한 생성 AI는 다양한 재능을 가지고 있습니다.
흔히 아는 대화와 코딩 외에도 이미지도
</p>
</div>
</article>
</div>
<div class="article-row">
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/09/24/General-66_nst2024/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/66_NST2024_00.png)" alt="2024 출연연 박사후연구원 연수성과 교류회 - GPTs를 이용한 연구 프로세스 효율화" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-09-24T09:11:00.000Z" itemprop="datePublished">2024-09-24</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/09/24/General-66_nst2024/">2024 출연연 박사후연구원 연수성과 교류회 - GPTs를 이용한 연구 프로세스 효율화</a>
</h1>
<p class="article-excerpt">
작년에 이어 올해도 NST 출연(연) 박사후연구원 연수성과 교류회가 열렸습니다.
한 해 밖에 지나지 않았다는 것이 무색할 만큼 엄청난 변화가 있었는데요,
제한된 시간으로 인해 새로운 내용을 충분히 전달드리지 못해서 아쉬움이 남았습니다.
YouTube 발표 영상 - 26:09부터
</p>
</div>
</article>
<article class="article article-summary">
<div class="article-summary-inner">
<a href="/2024/09/08/General-61-plotbot2/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/61_plotbot2_00.png)" alt="플랏봇 v0.15 - 시각화 커스터마이징" class="thumbnail-image"></span>
</a>
<div class="article-meta">
<div class="category">
<a class="article-category-link" href="/categories/General/">General</a>
</div>
<div class="date"><time datetime="2024-09-08T02:43:00.000Z" itemprop="datePublished">2024-09-08</time></div>
</div>
<h1 class="article-title" itemprop="name">
<a href="/2024/09/08/General-61-plotbot2/">플랏봇 v0.15 - 시각화 커스터마이징</a>
</h1>
<p class="article-excerpt">
GPTs를 이용한 시각화 도우미, 플랏봇의 새로운 버전 0.15가 출시되었습니다.
플랏봇의 설정을 외부 파일로 저장하여 쉽게 관리할 수 있도록 하였습니다.
또한 시각화 설정을 .whl 파일로 지정하여 재현성을 크게 높였습니다.
1. 기존 플랏봇의 한계
Pega Devlog: 데이터 분석용 GPTs - 플랏봇Pega Devlog: 논문봇 v2 - 출력물
</p>
</div>
</article>
</div>
</div></section>
<nav id="page-nav">
<span class="pages">Page 1 of 24</span>
<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/24/">24</a><a class="extend next" rel="next" href="/page/2/">»</a>
</nav>
</div>
</section>
<aside id="sidebar">
<a class="sidebar-toggle" title="Expand Sidebar"><i class="toggle icon"></i></a>
<div class="sidebar-top">
<p>follow:</p>
<ul class="social-links">
<li>
<a class="social-tooltip" title="book" href="https://jehyunlee.tistory.com/" target="_blank" rel="noopener">
<i class="icon fa fa-book"></i>
</a>
</li>
<li>
<a class="social-tooltip" title="bookmark" href="https://blog.naver.com/vinci109" target="_blank" rel="noopener">
<i class="icon fa fa-bookmark"></i>
</a>
</li>
<li>
<a class="social-tooltip" title="github" href="https://github.com/jehyunlee" target="_blank" rel="noopener">
<i class="icon fa fa-github"></i>
</a>
</li>
<li>
<a class="social-tooltip" title="rss" href="https://jehyunlee.github.io/rss2.xml" target="_blank" rel="noopener">
<i class="icon fa fa-rss"></i>
</a>
</li>
<li>
<a class="social-tooltip" title="instagram" href="https://www.instagram.com/jehyunlee20/" target="_blank" rel="noopener">
<i class="icon fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- 광고 -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-2487538550660613"
data-ad-slot="1111111111"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<div class="widgets-container">
<div class="widget-wrap">
<h3 class="widget-title">recents</h3>
<div class="widget">
<ul id="recent-post" class="">
<li>
<div class="item-thumbnail">
<a href="/2024/12/20/General-71_hobbyart/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/71_hobbyart_00.jpg)" alt="AI와 예술 창작 - AI 그림이라는 진지한 취미" class="thumbnail-image"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/General/">General</a></p>
<p class="item-title"><a href="/2024/12/20/General-71_hobbyart/" class="title">AI와 예술 창작 - AI 그림이라는 진지한 취미</a></p>
<p class="item-date"><time datetime="2024-12-20T12:29:00.000Z" itemprop="datePublished">2024-12-20</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2024/11/18/General-69_SNU/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/69_SNU_00.png)" alt="인공지능을 활용한 슬기로운 연구생활" class="thumbnail-image"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/General/">General</a></p>
<p class="item-title"><a href="/2024/11/18/General-69_SNU/" class="title">인공지능을 활용한 슬기로운 연구생활</a></p>
<p class="item-date"><time datetime="2024-11-18T12:29:00.000Z" itemprop="datePublished">2024-11-18</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2024/11/07/General-67_afore2024/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/67_AFORE2024_00.png)" alt="생성AI 활용 학회 발표 준비" class="thumbnail-image"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/General/">General</a></p>
<p class="item-title"><a href="/2024/11/07/General-67_afore2024/" class="title">생성AI 활용 학회 발표 준비</a></p>
<p class="item-date"><time datetime="2024-11-07T14:29:00.000Z" itemprop="datePublished">2024-11-07</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2024/11/04/General-68_kierinterview/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/68_kierinterview_00.png)" alt="한국에너지기술연구원 진로 티처 - AI계산과학" class="thumbnail-image"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/General/">General</a></p>
<p class="item-title"><a href="/2024/11/04/General-68_kierinterview/" class="title">한국에너지기술연구원 진로 티처 - AI계산과학</a></p>
<p class="item-date"><time datetime="2024-11-04T14:29:00.000Z" itemprop="datePublished">2024-11-04</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2024/10/15/General-70_Taejae/" class="thumbnail">
<span style="background-image:url(/thumbnails/General/70_Taejae_00.png)" alt="태재미래교육포럼 - 실용적 AI 업무 활용 방안" class="thumbnail-image"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"><a class="article-category-link" href="/categories/General/">General</a></p>
<p class="item-title"><a href="/2024/10/15/General-70_Taejae/" class="title">태재미래교육포럼 - 실용적 AI 업무 활용 방안</a></p>
<p class="item-date"><time datetime="2024-10-15T12:29:00.000Z" itemprop="datePublished">2024-10-15</time></p>
</div>
</li>
</ul>
</div>
</div>
<div class="widget-wrap widget-list">
<h3 class="widget-title">categories</h3>
<div class="widget">
<ul class="category-list"><li class="category-list-item"><a class="category-list-link" href="/categories/GIS/">GIS</a><span class="category-list-count">7</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/GIS/Python/">Python</a><span class="category-list-count">5</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/GIS/QGIS/">QGIS</a><span class="category-list-count">2</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/General/">General</a><span class="category-list-count">62</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/ImageJ/">ImageJ</a><span class="category-list-count">12</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/ImageJ/Cookbook/">Cookbook</a><span class="category-list-count">4</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/ImageJ/Tutorial/">Tutorial</a><span class="category-list-count">8</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/Python/">Python</a><span class="category-list-count">151</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/Python/Data-Science/">Data Science</a><span class="category-list-count">131</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/Python/Deep-Learning/">Deep Learning</a><span class="category-list-count">10</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/Python/General/">General</a><span class="category-list-count">9</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/Python/Physics/">Physics</a><span class="category-list-count">1</span></li></ul></li></ul>
</div>
</div>
<div class="widget-wrap widget-float">
<h3 class="widget-title">tag cloud</h3>
<div class="widget tagcloud">
<a href="/tags/1-cycle-learning-rate-policy/" style="font-size: 10px;">1 cycle learning rate policy</a> <a href="/tags/3D/" style="font-size: 12.5px;">3D</a> <a href="/tags/AAiCON/" style="font-size: 10px;">AAiCON</a> <a href="/tags/AI-Factory/" style="font-size: 10.5px;">AI Factory</a> <a href="/tags/AI-Frenz/" style="font-size: 13px;">AI Frenz</a> <a href="/tags/AI-festival/" style="font-size: 11px;">AI festival</a> <a href="/tags/API/" style="font-size: 10.5px;">API</a> <a href="/tags/C-level/" style="font-size: 10px;">C-level</a> <a href="/tags/CHATGPT/" style="font-size: 10px;">CHATGPT</a> <a href="/tags/DALL-E/" style="font-size: 11.5px;">DALL.E</a> <a href="/tags/DATA-ANALYSIS/" style="font-size: 10px;">DATA ANALYSIS</a> <a href="/tags/Daejeon-Learning-Day/" style="font-size: 10px;">Daejeon Learning Day</a> <a href="/tags/Daejeon-Science-Festival/" style="font-size: 10px;">Daejeon Science Festival</a> <a href="/tags/Data-Analyst/" style="font-size: 10px;">Data Analyst</a> <a href="/tags/Data-Scienctist/" style="font-size: 10px;">Data Scienctist</a> <a href="/tags/DeepL/" style="font-size: 10px;">DeepL</a> <a href="/tags/EOST/" style="font-size: 12px;">EOST</a> <a href="/tags/ETRI/" style="font-size: 10px;">ETRI</a> <a href="/tags/FacetGrid/" style="font-size: 10px;">FacetGrid</a> <a href="/tags/GPTs/" style="font-size: 10px;">GPTs</a> <a href="/tags/GPU/" style="font-size: 10px;">GPU</a> <a href="/tags/Google-Colab/" style="font-size: 10px;">Google Colab</a> <a href="/tags/Google-Form/" style="font-size: 10px;">Google Form</a> <a href="/tags/HelloDD/" style="font-size: 10px;">HelloDD</a> <a href="/tags/KIER/" style="font-size: 15px;">KIER</a> <a href="/tags/NIA/" style="font-size: 10.5px;">NIA</a> <a href="/tags/NIA-data-story/" style="font-size: 10px;">NIA data story</a> <a href="/tags/NLP/" style="font-size: 10px;">NLP</a> <a href="/tags/Nicolas-P-Rougier/" style="font-size: 10.5px;">Nicolas P. Rougier</a> <a href="/tags/OPENAI/" style="font-size: 10px;">OPENAI</a> <a href="/tags/Open-AI/" style="font-size: 10px;">Open AI</a> <a href="/tags/PCA/" style="font-size: 10.5px;">PCA</a> <a href="/tags/PairGrid/" style="font-size: 10px;">PairGrid</a> <a href="/tags/RAG/" style="font-size: 10.5px;">RAG</a> <a href="/tags/RPA/" style="font-size: 10px;">RPA</a> <a href="/tags/TalkIT/" style="font-size: 10px;">TalkIT</a> <a href="/tags/UST/" style="font-size: 10px;">UST</a> <a href="/tags/VOSviewer/" style="font-size: 10.5px;">VOSviewer</a> <a href="/tags/X-STEM/" style="font-size: 10px;">X-STEM</a> <a href="/tags/align/" style="font-size: 10px;">align</a> <a href="/tags/annotate/" style="font-size: 10px;">annotate</a> <a href="/tags/art/" style="font-size: 10px;">art</a> <a href="/tags/article/" style="font-size: 10px;">article</a> <a href="/tags/ascii/" style="font-size: 10px;">ascii</a> <a href="/tags/atom/" style="font-size: 10.5px;">atom</a> <a href="/tags/automation/" style="font-size: 10px;">automation</a> <a href="/tags/axes/" style="font-size: 10px;">axes</a> <a href="/tags/azurethon/" style="font-size: 10px;">azurethon</a> <a href="/tags/batch/" style="font-size: 10px;">batch</a> <a href="/tags/batch-normalization/" style="font-size: 10.5px;">batch normalization</a> <a href="/tags/bayesian/" style="font-size: 11.5px;">bayesian</a> <a href="/tags/bingchat/" style="font-size: 11px;">bingchat</a> <a href="/tags/bingimagecreator/" style="font-size: 13.5px;">bingimagecreator</a> <a href="/tags/bresenham/" style="font-size: 10px;">bresenham</a> <a href="/tags/c-level/" style="font-size: 10px;">c-level</a> <a href="/tags/calendar/" style="font-size: 10.5px;">calendar</a> <a href="/tags/calibration/" style="font-size: 10px;">calibration</a> <a href="/tags/callback/" style="font-size: 11px;">callback</a> <a href="/tags/capstyle/" style="font-size: 10px;">capstyle</a> <a href="/tags/channel-threshold/" style="font-size: 10px;">channel threshold</a> <a href="/tags/chatgpt/" style="font-size: 18.5px;">chatgpt</a> <a href="/tags/chrome-remote-desktop/" style="font-size: 10px;">chrome remote desktop</a> <a href="/tags/class/" style="font-size: 10px;">class</a> <a href="/tags/classification/" style="font-size: 10px;">classification</a> <a href="/tags/code-states/" style="font-size: 10px;">code states</a> <a href="/tags/cognitive-science/" style="font-size: 11px;">cognitive science</a> <a href="/tags/color/" style="font-size: 15.5px;">color</a> <a href="/tags/colorbar/" style="font-size: 12px;">colorbar</a> <a href="/tags/colormap/" style="font-size: 14px;">colormap</a> <a href="/tags/colorsys/" style="font-size: 10px;">colorsys</a> <a href="/tags/confidence-interval/" style="font-size: 10px;">confidence interval</a> <a href="/tags/consensus/" style="font-size: 10px;">consensus</a> <a href="/tags/convolution/" style="font-size: 10px;">convolution</a> <a href="/tags/cookbook/" style="font-size: 10.5px;">cookbook</a> <a href="/tags/csv/" style="font-size: 10px;">csv</a> <a href="/tags/dall-e/" style="font-size: 11.5px;">dall.e</a> <a href="/tags/dalle/" style="font-size: 16.5px;">dalle</a> <a href="/tags/data-analysis/" style="font-size: 11.5px;">data analysis</a> <a href="/tags/data-analyst/" style="font-size: 10.5px;">data analyst</a> <a href="/tags/data-augmentation/" style="font-size: 10px;">data augmentation</a> <a href="/tags/data-cleansing/" style="font-size: 10px;">data cleansing</a> <a href="/tags/data-generation/" style="font-size: 10.5px;">data generation</a> <a href="/tags/data-preprocessing/" style="font-size: 10px;">data preprocessing</a> <a href="/tags/data-sampling/" style="font-size: 10.5px;">data sampling</a> <a href="/tags/data-split/" style="font-size: 10px;">data split</a> <a href="/tags/data-visualization/" style="font-size: 11.5px;">data visualization</a> <a href="/tags/datetime/" style="font-size: 11px;">datetime</a> <a href="/tags/deep-learning/" style="font-size: 10px;">deep learning</a> <a href="/tags/deepl/" style="font-size: 10px;">deepl</a> <a href="/tags/design-of-experiment/" style="font-size: 10px;">design of experiment</a> <a href="/tags/display/" style="font-size: 10px;">display</a> <a href="/tags/displot/" style="font-size: 10px;">displot</a> <a href="/tags/docker/" style="font-size: 10px;">docker</a> <a href="/tags/education/" style="font-size: 10.5px;">education</a> <a href="/tags/ensemble/" style="font-size: 10px;">ensemble</a> <a href="/tags/environment/" style="font-size: 10px;">environment</a> <a href="/tags/error-bar/" style="font-size: 10px;">error bar</a> <a href="/tags/escher/" style="font-size: 10px;">escher</a> <a href="/tags/experiment-design/" style="font-size: 10px;">experiment design</a> <a href="/tags/fast-ai/" style="font-size: 10px;">fast.ai</a> <a href="/tags/font/" style="font-size: 10.5px;">font</a> <a href="/tags/gaussian-process/" style="font-size: 11.5px;">gaussian process</a> <a href="/tags/geopandas/" style="font-size: 10px;">geopandas</a> <a href="/tags/get-data/" style="font-size: 10px;">get_data</a> <a href="/tags/get-lines/" style="font-size: 10px;">get_lines</a> <a href="/tags/gibbs-sampling/" style="font-size: 10px;">gibbs sampling</a> <a href="/tags/gis/" style="font-size: 13.5px;">gis</a> <a href="/tags/github/" style="font-size: 10px;">github</a> <a href="/tags/gitignore/" style="font-size: 10px;">gitignore</a> <a href="/tags/google-map/" style="font-size: 10px;">google map</a> <a href="/tags/google-trends/" style="font-size: 10px;">google trends</a> <a href="/tags/grid/" style="font-size: 10px;">grid</a> <a href="/tags/gridspec/" style="font-size: 10px;">gridspec</a> <a href="/tags/hyperparameter/" style="font-size: 10px;">hyperparameter</a> <a href="/tags/ideogram/" style="font-size: 10px;">ideogram</a> <a href="/tags/image/" style="font-size: 12px;">image</a> <a href="/tags/image-file/" style="font-size: 10px;">image file</a> <a href="/tags/imagej/" style="font-size: 16px;">imagej</a> <a href="/tags/inpaining/" style="font-size: 10px;">inpaining</a> <a href="/tags/inspection/" style="font-size: 10px;">inspection</a> <a href="/tags/installation/" style="font-size: 10px;">installation</a> <a href="/tags/io/" style="font-size: 10px;">io</a> <a href="/tags/isomap/" style="font-size: 10px;">isomap</a> <a href="/tags/job-schedule/" style="font-size: 10px;">job schedule</a> <a href="/tags/joinstyle/" style="font-size: 10px;">joinstyle</a> <a href="/tags/jointplot/" style="font-size: 10px;">jointplot</a> <a href="/tags/jupyter-lab/" style="font-size: 10.5px;">jupyter lab</a> <a href="/tags/jython/" style="font-size: 12px;">jython</a> <a href="/tags/kdeplot/" style="font-size: 10px;">kdeplot</a> <a href="/tags/keras/" style="font-size: 10.5px;">keras</a> <a href="/tags/keras-learing-day/" style="font-size: 10px;">keras learing day</a> <a href="/tags/langchain/" style="font-size: 10px;">langchain</a> <a href="/tags/latural-language-processing/" style="font-size: 10px;">latural language processing</a> <a href="/tags/learning-rate/" style="font-size: 10px;">learning rate</a> <a href="/tags/legend/" style="font-size: 11px;">legend</a> <a href="/tags/life/" style="font-size: 10.5px;">life</a> <a href="/tags/linear-algebra/" style="font-size: 10px;">linear algebra</a> <a href="/tags/linux/" style="font-size: 10px;">linux</a> <a href="/tags/llm/" style="font-size: 10px;">llm</a> <a href="/tags/lmplot/" style="font-size: 10px;">lmplot</a> <a href="/tags/locally-linear-embedding/" style="font-size: 10px;">locally linear embedding</a> <a href="/tags/machine-learning/" style="font-size: 16px;">machine learning</a> <a href="/tags/matplotlib/" style="font-size: 19.5px;">matplotlib</a> <a href="/tags/mbc/" style="font-size: 10px;">mbc</a> <a href="/tags/microsoft/" style="font-size: 14.5px;">microsoft</a> <a href="/tags/microsoft-designer/" style="font-size: 10px;">microsoft designer</a> <a href="/tags/midjourney/" style="font-size: 10px;">midjourney</a> <a href="/tags/midnight-commander/" style="font-size: 10px;">midnight commander</a> <a href="/tags/minimum-oriented-rectangle/" style="font-size: 10px;">minimum oriented rectangle</a> <a href="/tags/multidimensional-scaling/" style="font-size: 10px;">multidimensional scaling</a> <a href="/tags/natural-language/" style="font-size: 10.5px;">natural language</a> <a href="/tags/natural-language-processing/" style="font-size: 10px;">natural language processing</a> <a href="/tags/naver-map/" style="font-size: 10px;">naver map</a> <a href="/tags/neural-network/" style="font-size: 11.5px;">neural network</a> <a href="/tags/notebooklm/" style="font-size: 10px;">notebooklm</a> <a href="/tags/nst/" style="font-size: 12px;">nst</a> <a href="/tags/numpy/" style="font-size: 12.5px;">numpy</a> <a href="/tags/object-minimum-bounding-box/" style="font-size: 10px;">object minimum bounding box</a> <a href="/tags/open-API/" style="font-size: 10.5px;">open API</a> <a href="/tags/openai/" style="font-size: 18px;">openai</a> <a href="/tags/pairplot/" style="font-size: 10px;">pairplot</a> <a href="/tags/pandas/" style="font-size: 15px;">pandas</a> <a href="/tags/paraview/" style="font-size: 10.5px;">paraview</a> <a href="/tags/patches/" style="font-size: 10px;">patches</a> <a href="/tags/perplexity/" style="font-size: 11.5px;">perplexity</a> <a href="/tags/person-correlation/" style="font-size: 10px;">person correlation</a> <a href="/tags/photovoltaics/" style="font-size: 10px;">photovoltaics</a> <a href="/tags/pie-chart/" style="font-size: 10px;">pie chart</a> <a href="/tags/pip/" style="font-size: 10px;">pip</a> <a href="/tags/pipeline/" style="font-size: 12px;">pipeline</a> <a href="/tags/polygon/" style="font-size: 11px;">polygon</a> <a href="/tags/power-bi/" style="font-size: 10px;">power bi</a> <a href="/tags/power-platform/" style="font-size: 10px;">power platform</a> <a href="/tags/powerpoint/" style="font-size: 10px;">powerpoint</a> <a href="/tags/presentation/" style="font-size: 17.5px;">presentation</a> <a href="/tags/principal-component-analysis/" style="font-size: 10px;">principal component analysis</a> <a href="/tags/probability/" style="font-size: 10.5px;">probability</a> <a href="/tags/proj/" style="font-size: 10px;">proj</a> <a href="/tags/pycon/" style="font-size: 10.5px;">pycon</a> <a href="/tags/pyhon/" style="font-size: 10px;">pyhon</a> <a href="/tags/pysolar/" style="font-size: 10.5px;">pysolar</a> <a href="/tags/python/" style="font-size: 20px;">python</a> <a href="/tags/pytorch/" style="font-size: 12px;">pytorch</a> <a href="/tags/qgis/" style="font-size: 10.5px;">qgis</a> <a href="/tags/raster/" style="font-size: 10.5px;">raster</a> <a href="/tags/regplot/" style="font-size: 10px;">regplot</a> <a href="/tags/response-surface-method/" style="font-size: 10px;">response surface method</a> <a href="/tags/ridge-map/" style="font-size: 10px;">ridge-map</a> <a href="/tags/ridgeplot/" style="font-size: 10.5px;">ridgeplot</a> <a href="/tags/roi/" style="font-size: 10px;">roi</a> <a href="/tags/savgol/" style="font-size: 10px;">savgol</a> <a href="/tags/scatter-density/" style="font-size: 10px;">scatter-density</a> <a href="/tags/scholar-AI/" style="font-size: 10px;">scholar AI</a> <a href="/tags/scholar-GPT/" style="font-size: 10px;">scholar GPT</a> <a href="/tags/science-and-people/" style="font-size: 10px;">science and people</a> <a href="/tags/sciencedirect/" style="font-size: 10px;">sciencedirect</a> <a href="/tags/scikit-image/" style="font-size: 10px;">scikit-image</a> <a href="/tags/scikit-learn/" style="font-size: 11.5px;">scikit-learn</a> <a href="/tags/scipy/" style="font-size: 11px;">scipy</a> <a href="/tags/scispace/" style="font-size: 11.5px;">scispace</a> <a href="/tags/scopus/" style="font-size: 10px;">scopus</a> <a href="/tags/script/" style="font-size: 10px;">script</a> <a href="/tags/seaborn/" style="font-size: 17px;">seaborn</a> <a href="/tags/segmentation/" style="font-size: 10px;">segmentation</a> <a href="/tags/seoul/" style="font-size: 10.5px;">seoul</a> <a href="/tags/set/" style="font-size: 10px;">set</a> <a href="/tags/shadow/" style="font-size: 10px;">shadow</a> <a href="/tags/shapefile/" style="font-size: 10.5px;">shapefile</a> <a href="/tags/shell-script/" style="font-size: 10px;">shell script</a> <a href="/tags/signal-processing/" style="font-size: 11.5px;">signal processing</a> <a href="/tags/sklearn/" style="font-size: 13px;">sklearn</a> <a href="/tags/spines/" style="font-size: 10px;">spines</a> <a href="/tags/statistics/" style="font-size: 13.5px;">statistics</a> <a href="/tags/streamgraph/" style="font-size: 10px;">streamgraph</a> <a href="/tags/subplots/" style="font-size: 10.5px;">subplots</a> <a href="/tags/summary/" style="font-size: 10px;">summary</a> <a href="/tags/t-SNE/" style="font-size: 10px;">t-SNE</a> <a href="/tags/tensorflow/" style="font-size: 11px;">tensorflow</a> <a href="/tags/text/" style="font-size: 10px;">text</a> <a href="/tags/text-mining/" style="font-size: 11.5px;">text mining</a> <a href="/tags/translation/" style="font-size: 11.5px;">translation</a> <a href="/tags/tree-models/" style="font-size: 10px;">tree models</a> <a href="/tags/uncertainty/" style="font-size: 10px;">uncertainty</a> <a href="/tags/unicode/" style="font-size: 10px;">unicode</a> <a href="/tags/validation/" style="font-size: 10px;">validation</a> <a href="/tags/vector/" style="font-size: 10px;">vector</a> <a href="/tags/vesta/" style="font-size: 10px;">vesta</a> <a href="/tags/visualization/" style="font-size: 19px;">visualization</a> <a href="/tags/wsl/" style="font-size: 10px;">wsl</a> <a href="/tags/x-window/" style="font-size: 10px;">x-window</a> <a href="/tags/xception/" style="font-size: 10px;">xception</a> <a href="/tags/youth/" style="font-size: 10px;">youth</a> <a href="/tags/youtube/" style="font-size: 10.5px;">youtube</a> <a href="/tags/%EA%B3%A8%EB%93%A0%EB%9E%98%EB%B9%97/" style="font-size: 10px;">골든래빗</a>
</div>
</div>
</div>
</aside>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
<div class="container-inner">
<a id="back-to-top" href="javascript:;"><i class="icon fa fa-angle-up"></i></a>
<div class="credit">
<h1 class="logo-wrap">
<a href="/" class="logo"></a>
</h1>
<p>© 2024 Jehyun Lee</p>
<p>Powered by <a href="https://hexo.io/" target="_blank">Hexo</a>. Theme by <a href="https://github.com/ppoffice" target="_blank">PPOffice</a></p>
</div>
<div class="footer-plugins">
</div>
</div>
</div>
</footer>
</div>
<script>
var disqus_shortname = 'hexo-theme-hueman';
(function() {
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<script src="/libs/lightgallery/js/lightgallery.min.js"></script>
<script src="/libs/lightgallery/js/lg-thumbnail.min.js"></script>
<script src="/libs/lightgallery/js/lg-pager.min.js"></script>
<script src="/libs/lightgallery/js/lg-autoplay.min.js"></script>
<script src="/libs/lightgallery/js/lg-fullscreen.min.js"></script>
<script src="/libs/lightgallery/js/lg-zoom.min.js"></script>
<script src="/libs/lightgallery/js/lg-hash.min.js"></script>
<script src="/libs/lightgallery/js/lg-share.min.js"></script>
<script src="/libs/lightgallery/js/lg-video.min.js"></script>
<script src="/libs/justified-gallery/jquery.justifiedGallery.min.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']] } });
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML.js"></script>
<script data-ad-client="ca-ca-pub-2487538550660613" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Custom Scripts -->
<script src="/js/main.js"></script>
</body>
</html>