-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·228 lines (189 loc) · 9.26 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
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="category" content="LIT">
<title>UCSD Lab Website</title>
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/patternfly/3.24.0/css/patternfly.min.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/patternfly/3.24.0/css/patternfly-additions.min.css">
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/carousel.css" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link rel="stylesheet" href="media.css">
</head>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
</head>
<body>
<!--Google Analytics "LIT Website" Tracker-->
<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-98452906-1', 'auto');
ga('send', 'pageview');
</script>
<div id="main_container" class="container">
<nav class="navbar navbar-default navbar-pf" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-5">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<h3>Computing for Social Good Lab</h3>
</a>
</div>
<div class="collapse navbar-collapse navbar-collapse-5">
<ul class="nav navbar-nav navbar-primary">
</li>
<li class="dropdown">
<a data-target="./index.html" href="./index.html" class="dropdown-toggle" data-toggle="dropdown">
Home
<!-- <b class="caret"></b> -->
</a>
<li class="dropdown">
<a data-target="./projects.html" href="./projects.html" class="dropdown-toggle" data-toggle="dropdown">
Projects
<!-- <b class="caret"></b> -->
</a>
<li class="dropdown">
<a data-target="./publications.html" href="./publications.html" class="dropdown-toggle"
data-toggle="dropdown">
Publications
<!-- <b class="caret"></b> -->
</a>
<li class="dropdown">
<!-- <a data-target="./news.html" href="./news.html" class="dropdown-toggle" data-toggle="dropdown"> -->
<a data-target="./news.html" href="./news.html" class="dropdown-toggle" data-toggle="dropdown">
Events
</a>
<li class="dropdown">
<a data-target="./posters.html" href="./posters.html" class="dropdown-toggle" data-toggle="dropdown">
Poster gallery
<!-- <b class="caret"></b> -->
</a>
<li class="dropdown">
<a data-target="./people.html" href="./people.html" class="dropdown-toggle" data-toggle="dropdown">
People
<!-- <b class="caret"></b> -->
</a>
<li class="dropdown">
<a data-target="./contactus.html" href="./contactus.html" class="dropdown-toggle" data-toggle="dropdown">
Contact us
<!-- <b class="caret"></b> -->
</a>
<!-- <li class="dropdown">
<a data-target="./downloads.html" href="./downloads.html" class="dropdown-toggle" data-toggle="dropdown">
Downloads/Demos
</a> -->
</nav>
<h1 class="pf-c-title pf-m-3xl">Computing For Social Good (CSG) Lab</h1>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<!-- will be filled dynamically -->
</ol>
<div class="carousel-inner" role="listbox">
<!-- will be filled dynamically -->
</div>
<a id='carousel_left' class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div><!-- /.carousel -->
<div id="index_content">
<div id="about_lit" class="row featurette">
<p class="lead_info">At the CSG lab, the computational methods we develop augment human knowledge for
understanding benevolent online social movements and mitigating harmful online social content through the
unique lens of social media. We curate socially impactful datasets, analyze them for a deepened understanding
of behavior and linguistic patterns, and build Natural Language Processing (NLP) models that improve the
classification and prediction of online misuse and community wellbeing.</p>
<p class="lead_info">Computing for Social Good Lab’s study is driven by asking research questions about what
data can tell us about our societies. Our lab is focussed on ways to improve social support in online groups,
and how to deal with unpleasant online phenomena like hate speech and violence. We concentrate on delving
deeper into these issues through a linguistic lens. Given the interdisciplinary nature of the challenges we
work on, we work with linguists, political scientists, social scientists, and public health specialists.</p>
<p class="lead_info"><b>Research Interests:</b>
<br>
Social computing, natural language processing, machine learning, and communication.
</p>
</div>
<div id="recent_news" class="row featurette">
<h2 id="recent_news_heading" class="featurette-heading"><b>Recent News</b></h2>
</div>
</div>
</div><!-- /.container -->
<!-- Footer section -->
<section id="footer">
<div class="container-fluid row">
<div class="col col-lg-5 col-sm-4 col-xs-12">
<h2>Computing for Social Good Lab</h2>
<h4>Address</h4>
<p>
Computer Science and Engineering Building (Office 4134) La Jolla, CA 92093
</p>
</div>
<div class="col col-lg-5 col-sm-4 col-xs-12 links px-xs-0">
<div class="col col-xs-6">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="index.html" class="nav-link p-0 ">Home</a></li>
<li class="nav-item mb-2"><a href="projects.html" class="nav-link p-0 ">Projects</a></li>
<li class="nav-item mb-2"><a href="publications.html" class="nav-link p-0 ">Publications</a></li>
</ul>
</div>
<div class="col col-xs-6">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="news.html" class="nav-link p-0 ">Events</a></li>
<li class="nav-item mb-2"><a href="posters.html" class="nav-link p-0 ">Poster Gallery</a></li>
<li class="nav-item mb-2"><a href="people.html" class="nav-link p-0 ">People</a></li>
</ul>
</div>
</div>
<div class="col col-lg-2 col-sm-4 col-xs-12">
<div class="col">
<h4>Phone Number</h4>
<p>1234567890</p>
</div>
<div class="col">
<h4>Email</h4>
</div>
</div>
</div>
</section>
<!-- /Footer Section -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="dist/js/bootstrap.min.js"></script>
<script src="js/parseCsv.js"></script>
<script src="js/index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>