-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI-Generated Pop Piano Cover Comparison Survey</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #1e1e1e;
color: #eeeeee;
}
p {
max-width: 640px;
margin: 20px auto;
text-align: left;
word-wrap: break-word;
}
</style>
</head>
<body>
<h1>AI-Generated Pop Piano Cover Comparison Survey</h1>
<p>
My name is Yip Tin Yui, a final-year undergraduate student at The Chinese
University of Hong Kong. I'm working on a project that uses AI to generate
MIDI piano covers of popular songs from music audio. I am conducting a
blind survey to subjectively compare the quality of my model and two other
models in the research field.
</p>
<p>
You are randomly assigned evaluate to <b>2</b> out of <b>10</b> excerpts.
Please fill out the Google Form (below the audio tracks) by rating each
track based on its general musicality, overall similarity, and melody
similarity. This should take about 5 minutes to complete. Should you have
any questions, feel free to contact me at
<a
href="mailto:[email protected]"
style="color: rgb(66, 162, 246)"
>.
</p>
<p><i>Note: the excerpt number is needed in the answer below.</i></p>
<div id="audio-container"></div>
<script src="display_audio.js"></script>
<br />
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSfJMsvO3GXwTabh7CqQOrj1bW_5crB_Dripbnk_UEViuxb6gA/viewform?embedded=true"
width="640"
height="2057"
frameborder="0"
marginheight="0"
marginwidth="0"
>Loading Google Forms…</iframe
>
</body>
</html>