-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
148 lines (132 loc) · 6.69 KB
/
Copy pathresources.html
File metadata and controls
148 lines (132 loc) · 6.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TDC01ELJLN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-TDC01ELJLN');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link type="text/css" rel="stylesheet" href="css/custom.css" />
<link type="text/css" rel="stylesheet" href="css/hover-min.css" />
<title>VRL Lab Resources</title>
<script type="text/javascript">
$(document).ready(function () {
$('#header-container').load('template_header.html');
$('#footer-container').load('template_footer.html');
});
</script>
</head>
<body>
<div id="header-container"></div>
<div class="container">
<br>
<div class="card mb-3" style="width: 100%; padding: 10px;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/project-turkishbertweet.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">TurkishBERTweet</h5>
<p class="card-text">TurkishBERTweet is the first large-scale pre-trained language model
specifically designed for Turkish social media. Built using over 894 million Turkish tweets,
it shares the architecture of the RoBERTa-base model but is optimized for social media
content. TurkishBERTweet excels in tasks like Sentiment Classification and Hate Speech
Detection, offering better generalizability and lower inference times compared to existing
models.</p>
<p class="card-text"><small class="text-body-secondary">
<a href="https://varollab.com/TurkishBERTweet/" target="_blank">🌐
varollab.com/TurkishBERTweet</a>
</small></p>
</div>
</div>
</div>
</div>
<br>
<div class="card mb-3" style="width: 100%; padding: 10px;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/project-smdt.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Social Media Data Toolkit</h5>
<p class="card-text">SMDT (Social Media Data Toolkit) is a comprehensive Python library designed
to streamline the ingestion, standardization, and analysis of social media data. It provides
a unified interface for handling data from diverse platforms, enabling researchers to focus
on analysis rather than data wrangling.</p>
<p class="card-text"><small class="text-body-secondary">
<a href="https://varollab.com/SMDT" target="_blank">🌐
varollab.com/SMDT</a>
</small></p>
</div>
</div>
</div>
</div>
<br>
<div class="card mb-3" style="width: 100%; padding: 10px;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/project-secim2023.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Secim 2023</h5>
<p class="card-text">This platform shares data science insights and reports from our
disinformation and coordinated activity detection project on upcoming 2023 Turkish
Presidential Election. The platform offers several interactive tools to invesitage anomalous
followers and timeseries patterns.</p>
<p class="card-text"><small class="text-body-secondary">
<a href="https://secim2023.biz/" target="_blank">🌐 secim2023.biz</a>
</small></p>
</div>
</div>
</div>
</div>
<br>
<div class="card mb-3" style="width: 100%; padding: 10px;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/project-scienceweb.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Interactive Scientific Interaction Visualization</h5>
<p class="card-text">This is a tool developed to visualize various academic networks. Core
framework applied for different datasets and academic groups listed below.</p>
<p class="card-text"><small class="text-body-secondary">
<a href="https://onurvarol.com/hcss" target="_blank">🌐
Handbook of Computational Social Sciences</a>
</small><br>
<small class="text-body-secondary">
<a href="https://onurvarol.com/bagep" target="_blank">🌐
Science Academy BAGEP Awardees Network</a>
</small>
<br>
<small class="text-body-secondary">
<a href="https://www.onurvarol.com/sosyal-veri-bilimi/" target="_blank">🌐
Sosyal Veri Bilimi kitabı yazar ağı</a>
</small>
</p>
</div>
</div>
</div>
</div>
<br />
<br />
<br />
</div>
<br>
<div id="footer-container"></div>
</body>
</html>