-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tradi-fusion Refined: Evaluating and Fine-tuning the Riffusion Model for Irish Traditional Music</title>
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
.audio-container {
margin-bottom: 20px;
}
img {
max-width: 90%; /* Adjust the image size to fit your needs */
height: auto;
}
</style>
</head>
<body>
<h1>Tradi-fusion Refined: Evaluating and Fine-tuning the Riffusion Model for Irish Traditional Music</h1>
<img src="images/Step 50.png" alt="Sequential visualization of a diffusion process model fine-tuned on Irish traditional tune spectrograms" />
<!-- Audio Example 1 -->
<div class="audio-container">
<p>An Irish Traditional Tune</p>
<audio controls>
<source src="audio/t2.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<!-- Audio Example 2 -->
<div class="audio-container">
<p>An Irish Traditional Tune</p>
<audio controls>
<source src="audio/t9.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<!-- Audio Example 3 -->
<div class="audio-container">
<p>An Irish Traditional Tune</p>
<audio controls>
<source src="audio/tff0.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</body>
</html>