-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (111 loc) · 6.35 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
<!doctype html>
<html lang="ja">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap , Avant UI and Google Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:500,600,700">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/avantui.css">
<style>
.box{
text-align:center;
}
</style>
<title>Shin's portfolio</title>
</head>
<body>
<!-- nav bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">
Shin
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarLight" aria-controls="navbarLight" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarLight">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="https://shin-kyoto.github.io/">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://dimsis.dpri.kyoto-u.ac.jp/index.php/member/tomie/">Lab</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Languages
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="cpp">C++</a>
<a class="dropdown-item" href="cs">C#</a>
<a class="dropdown-item" href="rust">Rust</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Codes
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">RL(DQN)</a>
<a class="dropdown-item" href="#">SLAM</a>
<a class="dropdown-item" href="#">ROS</a>
</div>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>-->
</ul>
</div>
</nav>
<!-- main content -->
<div class="container-fluid pl-5 pr-5 pb-5" style="margin-top: 50px">
<div class="card shadow-sm" style="border-color: rgba(0, 0, 0, 0.75); background-color: rgba(255, 255, 255, 0.7);">
<div class="card-body d-flex flex-row align-items-center pb-3">
<img src="./assets/img/profile.jpg" class="img-avatar img-avatar-lg rounded-circle" alt="Avatar image">
<div class="d-flex flex-column">
<span class="person text-light ml-4"><strong>Shin</strong></span>
</div>
</div>
<div class="card-body pt-0 text-justify text-dark">
<h4 class="mb-2">自己紹介</h4>
<div class="divider"></div>
<p class='card-text'>
こんにちは。Shinと申します。
</p>
<p>
京都大学工学部物理工学科卒、現在は京都大学情報学研究科 社会情報学専攻 修士1回生です。
</p>
<p>
自然言語処理,ロボットプログラミング,Graph Convolutional Networkに興味があります.
最近は研究用データセット作成に注力しています.GCNはアルバイト先で開発に携わっています.
いろいろ疲れた時はラズパイマウスを触るのが好きです.趣味はF1(Red Bull Hondaが好きです),ロボット,演劇,Bumpです.
</p>
</div>
<div class="card-body pt-0 text-justify text-dark">
<h4 class="mb-2">研究紹介</h4>
<div class="divider"></div>
<p class='card-text'>
研究テーマ:『自然言語処理を用いた地域防災計画の課題発見』
</p>
<p>
自然言語処理・テキストマイニングを用いた,地域防災計画からの課題発見を研究テーマとしています.
地域防災計画の不備や問題点は,事前に発見されないまま,被災時に顕在化することがどうしても多いのが現状です.
地域防災計画の問題点に関する研究はいくつか存在し,有効性も検証されていますが,いずれも専門家のサポートが必須であり,計画本文を精読することが前提となっています.
しかし,地域防災計画の分量や自治体数の多さから, 専門家が全ての地域防災計画を見定め,評価することには非現実的な時間と労力がかかります.
そのため, 大量のテキストデータを用いて,自動的または半自動的に,問題点や過去の被災経験から得られた知見を発見できる仕組みを構築するべく,自然言語処理技術を用いた地域防災計画の解析に取り組んでいます.
</p>
<p></p>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Bootstrap JS, then Avant UI -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js" integrity="sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o" crossorigin="anonymous"></script>
<script src="assets/js/avantui.js"></script>
</body>
</html>