-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.47 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Expressive Bulgarian Poem</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/main.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="overlay"></div>
<main class="center-content">
<!-- <h1>Експресивна поезия</h1> -->
<div class="poem-columns">
<div id="hadji_dimitar_bg"></div>
<div id="hadji_dimitar_en"></div>
</div>
<!-- <div id="poem-visualization"></div> -->
</main>
<script src="scripts/main.js"></script>
<div class="project-description">
<h2>About This Project</h2>
<p>
It all started as an attempt to explore the emotional landscape of Bulgarian poetry, using emotion recognition language models. It turned out that those models are pretty bad at recognizing emotions.
</p>
<p>
This is a poem about the death of a Bulgarian revolutionary hero who was killed by the Ottoman Empire.
</p>
<p>
On the right, you can see that EmoRoBERTa thinks the text is pretty neutral. Bummer.
</p>
<p>
Only after dropping the "neutral" score altogether - see text on the left - do we get a decent classification of the original poem.
</p>
</div>
</body>
</html>