-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·162 lines (137 loc) · 5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>TIAL Group Homepage</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/round-about.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116202178-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116202178-2');
</script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation" style="background-color:#4b2e83">
<div id="navbar" class="container">
<!--loaded by js script in the header>-->
</div>
<!-- /.container -->
</nav>
<!-- Page Content -->
<div class="container">
<!-- Introduction Row -->
<div id="about" class="row">
<div class="col-md-12">
<h2 class="page-header">About TIAL</h2>
<div class="col-md-4">
<img class="img-responsive img-rounded" src="images/tial_icon.jpg" alt="">
</div>
<!-- /.col-md-4 -->
<div class="col-md-8">
<p class="lead">Transformation, Interpretation and Analysis of Language
(TIAL) Group is one of three groups in the Signal, Speech
and Language Interpretation (SSLI) Lab, founded in 1999.
The TIAL Group is interested in developing computational
models of language to solve the challenging problems in
speech and language interpretation and analysis.
Our emphasis is on data-driven machine learning combined
with linguistically motivated system architectures.<p>
</div>
<!-- /.col-md-8 -->
</div>
</div>
<!-- News -->
<!-- Research -->
<div id="Research" class="row" style="padding-top:20px">
<div class="col-md-12">
<h2 class="page-header">Research</h2>
</div>
<div class="col-md-12">
<ul style="padding-left:20px;font-size:20px;">
<li>Dynamic statistical models for speech and language processing. </li>
<li>Modeling uncertainty and leveraging structure in speech (e.g.
segmentation, prominence) in spoken language processing. </li>
<li> Computational modeling of prosody. </li>
<li> Language technology for education applications. </li>
<li> Extracting social information from language. </li>
</ul>
</div>
<!-- /.col-md-12 -->
</div>
<!-- /.row -->
<!-- Links -->
<div id="Links" class="row" style="padding-top:20px">
<div class="col-md-12">
<h2 class="page-header">Links</h2>
</div>
<div class="col-md-12">
<div>
<a href="https://www.washington.edu" target="_blank">University of Washington</a>
<div>
<div>
<a href="https://www.ee.washington.edu" target="_blank">Department of Electrical & Computer Engineering</a>
<div>
<div>
<a href="https://www.cs.washington.edu/research/nlp/" target="_blank">Natural Language Processing Group</a>
<div>
</div>
<!-- /.col-md-8 -->
</div>
<!-- /.row -->
<!-- Address -->
<div id="Address" class="row" style="padding-top:20px">
<div class="col-md-12">
<h2 class="page-header">Address</h2>
</div>
<div class="col-md-2">
<img class="img-responsive img-rounded" src="https://www.ee.washington.edu/wp-content/uploads/2016/09/20150121pbp_UWEE-Bldg_2232-425x303.jpg" alt="">
</div>
<!-- /.col-md-4 -->
<div class="col-md-10">
<address >
<a href="http://uw.edu/maps/?ee1" target="_blank">EEB</a> 215<br>
Department of Electrical & Computer Engineering<br>
University of Washington<br>
185 Steven Way<br>
Seattle, WA 98195-2500<br>
</address>
</div>
<!-- /.col-md-8 -->
</div>
<!-- /.row -->
<!-- Footer -->
<footer>
<div class="row">
<div class="col-md-12">
</div>
<!-- /.col-md-12 -->
</div>
<!-- /.row -->
</footer>
</div>
<!-- /.container -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Load navbar -->
<script>$( "#navbar" ).load("contents/navbar.html #navbar");</script>
</body>
</html>