-
Notifications
You must be signed in to change notification settings - Fork 1
/
homepage.html
76 lines (73 loc) · 4.48 KB
/
homepage.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
<!DOCTYPE html>
<html lang=en>
<meta charset='utf-8'>
<head>
<h1>greentec's inventory </h1>
<link rel='stylesheet' href='semantic.min.css'/>
<link rel='stylesheet' href='custom.css'/>
<script src='jquery-3.1.0.min.js'></script>
<script type="text/javascript">
$(window).on('load', function() {
$(".loader").fadeOut("slow");
});
</script>
</head>
<body>
<div class="loader"></div>
<h3>Book</h3>
<div>
<a href='https://wikibook.co.kr/tf2/'><img src='images/tf2_book.png' width='400'></img><a>
<br>
<a href='https://wikibook.co.kr/tf2/'>시작하세요! 텐서플로 2.0 프로그래밍</a>, 위키북스, 2020
</br>
</div>
<hr>
<h3>Peer-reviewed publications</h3>
<div>
Kim, Hwanhee, et al. "Puzzle-Level Generation with Simple-tiled and Graph-based Wave Function Collapse Algorithms" IEEE Transactions on Games, 2024.
</div>
<div>
Kim, Hwanhee, et al. "Graph based wave function collapse algorithm for procedural content generation in games." IEICE TRANSACTIONS on Information and Systems 103.8 (2020): 1901-1910.
</div>
<div>
Kim, Hwanhee, et al. "Automatic generation of game content using a graph-based wave function collapse algorithm." 2019 IEEE Conference on Games (CoG). IEEE, 2019.
</div>
<hr>
<h3>Conference</h3>
<div>
<iframe src="//www.slideshare.net/slideshow/embed_code/key/oYBHi3uXdlDHOj" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="//www.slideshare.net/HwanheeKim2/automatic-generation-of-game-content-using-a-graphbased-wave-function-collapse-algorithm-191777606" title="Automatic Generation of [CoG2019] Game Content using a Graph-based Wave Function Collapse Algorithm" target="_blank">Automatic Generation of Game Content using a Graph-based Wave Function Collapse Algorithm</a> </strong> from <strong><a href="https://www.slideshare.net/HwanheeKim2" target="_blank">Hwanhee Kim</a></strong> </div>
</div>
<br />
<div>
<iframe src="//www.slideshare.net/slideshow/embed_code/key/tUoq4441dwCWqJ" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="//www.slideshare.net/HwanheeKim2/ndc2017-vae-75419284" title="[NDC2017] 딥러닝으로 게임 콘텐츠 제작하기 - VAE를 이용한 콘텐츠 생성 기법 연구 사례" target="_blank">[NDC2017] 딥러닝으로 게임 콘텐츠 제작하기 - VAE를 이용한 콘텐츠 생성 기법 연구 사례</a> </strong> from <strong><a href="https://www.slideshare.net/HwanheeKim2" target="_blank">Hwanhee Kim</a></strong> </div>
<a href='dungeon2D/index.html'>1. Dungeon 2D</a>
<span> / </span>
<a href='rpgPortrait/index.html'>2. RPG Portrait</a>
<span> / </span>
<a href='rpgPortrait_SemiSupervised/index.html'>2-1. RPG Portrait (semi-supervised)</a>
<span> / </span>
<a href='rpgCharacter_MV/index.html'>3. RPG Character(MV)</a>
</div>
<br />
<div>
<iframe src="//www.slideshare.net/slideshow/embed_code/key/35aKFSKOOqP51b" width="595" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="//www.slideshare.net/HwanheeKim2/ndc2016-61418391" title="[NDC2016] 신경망은컨텐츠자동생성의꿈을꾸는가" target="_blank">[NDC2016] 신경망은컨텐츠자동생성의꿈을꾸는가</a> </strong> from <strong><a href="https://www.slideshare.net/HwanheeKim2" target="_blank">Hwanhee Kim</a></strong> </div>
</div>
<hr>
<h3><a href='index.html'>Blog</a></h3>
<hr>
<h3>Playground</h3>
<div class='ui stackable cards' id='playgroundCards'>
</div>
<script src='semantic.min.js'></script>
<script src='playground.type.js'></script>
<script src='main.js'></script>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-98009790-1', 'auto');
ga('send', 'pageview', 'home');
</script>
</html>