-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpapers.html
More file actions
419 lines (372 loc) · 19.1 KB
/
Copy pathpapers.html
File metadata and controls
419 lines (372 loc) · 19.1 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
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLM4MA Workshop Posters</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<style>
:root {
color-scheme: light;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
background: #fafafa;
}
header {
background: url('img/korea_daejeon.webp') no-repeat center center;
background-size: cover;
color: #fff;
padding: 36px 16px;
text-align: center;
}
header h1 {
margin-bottom: 8px;
font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}
header p {
margin: 0;
font-size: 1.05rem;
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 18px;
padding: 14px 16px;
background: rgba(255, 255, 255, 0.95);
border-bottom: 1px solid #e2e2e2;
position: sticky;
top: 0;
z-index: 10;
backdrop-filter: blur(6px);
}
nav a {
color: #007acc;
text-decoration: none;
font-weight: 600;
transition: color 0.2s ease;
}
nav a:hover,
nav a:focus {
color: #005d99;
}
main {
max-width: 1400px;
margin: 0 auto;
padding: 32px 20px 64px;
}
.intro {
text-align: center;
margin-bottom: 36px;
}
.intro h2 {
font-size: clamp(1.6rem, 2.2vw, 2.4rem);
margin-bottom: 12px;
}
.intro p {
margin: 0 auto;
max-width: 720px;
color: #555;
line-height: 1.6;
}
.poster-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 24px;
}
@media (min-width: 1280px) {
.poster-grid {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
}
.poster-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.45);
padding: 20px;
display: flex;
flex-direction: column;
gap: 16px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
position: relative;
}
.poster-card:hover,
.poster-card:focus-within {
transform: translateY(-4px);
box-shadow: 0 20px 48px -22px rgba(0, 0, 0, 0.5);
}
.poster-badge {
align-self: flex-start;
padding: 6px 14px;
border-radius: 999px;
background: linear-gradient(135deg, #ff7a18, #af002d 85%);
color: #fff;
font-size: 0.7rem;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 700;
box-shadow: 0 6px 18px -12px rgba(175, 0, 45, 0.5);
margin-bottom: 6px;
}
.poster-preview {
width: 100%;
aspect-ratio: 3 / 4;
border-radius: 12px;
object-fit: cover;
border: 1px solid rgba(0, 0, 0, 0.08);
box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.45);
display: block;
background: #f6f9fc;
}
.poster-title {
font-size: 1.05rem;
line-height: 1.5;
margin: 0;
}
.poster-actions {
margin-top: auto;
}
.poster-link {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
border-radius: 999px;
background: #007acc;
color: #fff;
text-decoration: none;
font-weight: 600;
transition: background 0.2s ease, transform 0.2s ease;
}
.poster-link:hover,
.poster-link:focus {
background: #005d99;
transform: translateY(-1px);
}
.poster-link span {
font-size: 0.85rem;
letter-spacing: 0.03em;
}
footer {
text-align: center;
padding: 24px 12px;
background: #f0f4f8;
color: #59738a;
font-size: 0.9rem;
}
@media (prefers-reduced-motion: reduce) {
* {
transition-duration: 0 !important;
animation-duration: 0 !important;
}
}
</style>
</head>
<body>
<header>
<h1>LLM4MA Poster Gallery</h1>
<p>Explore accepted papers and download poster PDFs</p>
</header>
<nav aria-label="Primary">
<a href="https://m-a-p.ai/LLM4Music/index.html">Home</a>
<a href="https://m-a-p.ai/LLM4Music/index.html#submissions">Call for Papers</a>
<a href="https://m-a-p.ai/LLM4Music/index.html#schedule">Schedule</a>
<a href="https://m-a-p.ai/LLM4Music/index.html#speakers">Speakers</a>
<a href="https://m-a-p.ai/LLM4Music/index.html#organizers">Organizers</a>
<a href="https://m-a-p.ai/LLM4Music/index.html#venue">Venue</a>
<a href="https://m-a-p.ai/LLM4Music/index.html#sponsors">Sponsors</a>
</nav>
<main>
<section class="intro" aria-labelledby="poster-intro">
<h2 id="poster-intro">Poster Session Preview</h2>
<p>
Each tile highlights a featured paper from the LLM4MA workshop.
</p>
</section>
<section aria-label="Poster gallery" class="poster-grid">
<article class="poster-card">
<span class="poster-badge" aria-label="Best Workshop Paper Nomination">Best Workshop Paper Nomination</span>
<img class="poster-preview" src="poster_thumbnails/llm4ma-umust---jongmin-jung.png" alt="Poster thumbnail for Unified Cross-modal Translation of Score Images, Symbolic Music, and Performance Audio">
<h3 class="poster-title">Unified Cross-modal Translation of Score Images, Symbolic Music, and Performance Audio</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/llm4ma_umust - Jongmin Jung.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/poster---.png" alt="Poster thumbnail for Enhancing Automatic Chord Recognition through LLM Chain-of-Thought Reasoning">
<h3 class="poster-title">Enhancing Automatic Chord Recognition through LLM Chain-of-Thought Reasoning</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/poster - 張志丞.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/llm4ma-poster---liam-pond.png" alt="Poster thumbnail for SESEMMI for LinkedMusic: Democratizing Access to Musical Archives via Large Language Models">
<h3 class="poster-title">SESEMMI for LinkedMusic: Democratizing Access to Musical Archives via Large Language Models</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/LLM4MA_Poster - Liam Pond.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/v0919-breath-final-ckeck---yunzhe-wang.png" alt="Poster thumbnail for BREATH: A Bio-Radar Embodied Agent for Tonal and Human-Aware Diffusion Music Generation">
<h3 class="poster-title">BREATH: A Bio-Radar Embodied Agent for Tonal and Human-Aware Diffusion Music Generation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/v0919_breath_final_ckeck - yunzhe wang.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<span class="poster-badge" aria-label="Best Workshop Paper Award">Best Workshop Paper Award</span>
<img class="poster-preview" src="poster_thumbnails/rninfer-llm4music-poster.png" alt="Poster thumbnail for RNInfer: A Large Language Model Approach to Functional Harmonic Reasoning in Symbolic Music">
<h3 class="poster-title">RNInfer: A Large Language Model Approach to Functional Harmonic Reasoning in Symbolic Music</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/RNInfer_LLM4Music_Poster.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/poster---tutti-chi.png" alt="Poster thumbnail for STASE: A Spatialized Text-to-Audio Synthesis Engine for Music Generation">
<h3 class="poster-title">STASE: A Spatialized Text-to-Audio Synthesis Engine for Music Generation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/poster - Tutti Chi.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/16-khongorzul-munkhbat-poster---khongorzul-munkhbat.png" alt="Poster thumbnail for From Classification to Creative Interpretation: A Multimodal AI Chain for Music Mood Understanding">
<h3 class="poster-title">From Classification to Creative Interpretation: A Multimodal AI Chain for Music Mood Understanding</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/16. Khongorzul Munkhbat poster - Khongorzul Munkhbat.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/poster-ebrahimzadeh-nference-time-control-of-tonal-tension-in-symbolic-music-generation---maral-ebrahimzadeh.png" alt="Poster thumbnail for Inference-Time Control of Tonal Tension in Symbolic Music Generation">
<h3 class="poster-title">Inference-Time Control of Tonal Tension in Symbolic Music Generation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/Poster_Ebrahimzadeh_nference-Time Control of Tonal Tension in Symbolic Music Generation - Maral Ebrahimzadeh.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/poster-vibe-sorcery---isabel-urrego.png" alt="Poster thumbnail for Vibe Sorcery: Integrating Emotion Recognition with Generative Music for Playlist Curation">
<h3 class="poster-title">Vibe Sorcery: Integrating Emotion Recognition with Generative Music for Playlist Curation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/POSTER Vibe Sorcery - Isabel Urrego.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/workshop-ismir---megaaudio---lucas-rafael-gris.png" alt="Poster thumbnail for Multi-scale Transformer Language Modeling for Music Classification Tasks">
<h3 class="poster-title">Multi-scale Transformer Language Modeling for Music Classification Tasks</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/Workshop ISMIR - MegaAudio - Lucas Rafael Gris.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/svs-evaluation-poster-20250921002618---zoey-kim.png" alt="Poster thumbnail for Generative Feedback for Singing Voice Synthesis Evaluation">
<h3 class="poster-title">Generative Feedback for Singing Voice Synthesis Evaluation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/SVS_Evaluation_Poster_20250921002618 - zoey kim.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<span class="poster-badge" aria-label="Best Workshop Paper Nomination">Best Workshop Paper Nomination</span>
<img class="poster-preview" src="poster_thumbnails/ismir-poster---.png" alt="Poster thumbnail for Multimodal Music Generation with Explicit Bridges and Retrieval Augmentation">
<h3 class="poster-title">Multimodal Music Generation with Explicit Bridges and Retrieval Augmentation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/ISMIR poster - 王泊淼.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/llm4ma-poster.png" alt="Poster thumbnail for Evaluating Foundation Models On Timbre-Related Cognitive Tasks">
<h3 class="poster-title">Evaluating Foundation Models On Timbre-Related Cognitive Tasks</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/LLM4MA_poster.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/musicasprograms---robie-gonzales.png" alt="Poster thumbnail for Music as Programs: Understanding Musical Structure via Program Induction">
<h3 class="poster-title">Music as Programs: Understanding Musical Structure via Program Induction</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/MusicAsPrograms - Robie Gonzales.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/weavemuse-poster-4---manos-karistineos.png" alt="Poster thumbnail for WeaveMuse: An Open Agentic System for Multimodal Music Understanding and Generation">
<h3 class="poster-title">WeaveMuse: An Open Agentic System for Multimodal Music Understanding and Generation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/WeaveMuse-Poster (4) - Manos Karistineos.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/poster---syeda-fatima.png" alt="Poster thumbnail for LLM-enhanced contextual music triggering with explainable AI">
<h3 class="poster-title">LLM-enhanced contextual music triggering with explainable AI</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/poster - SYEDA FATIMA.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/llm4maposter---weixi-zhai.png" alt="Poster thumbnail for Weak Tokenization: A Preliminary Study of Dynamic Audio Chunking for Irregular Music Generation">
<h3 class="poster-title">Weak Tokenization: A Preliminary Study of Dynamic Audio Chunking for Irregular Music Generation</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/LLM4MAposter - Weixi Zhai.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<img class="poster-preview" src="poster_thumbnails/llm4music-poster---joanne-affolter.png" alt="Poster thumbnail for Learning Audio Embeddings via Lyrics Alignment for Scalable Version Identification">
<h3 class="poster-title">Learning Audio Embeddings via Lyrics Alignment for Scalable Version Identification</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/LLM4MUSIC POSTER - Joanne Affolter.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
<article class="poster-card">
<span class="poster-badge" aria-label="Best Workshop Paper Nomination">Best Workshop Paper Nomination</span>
<img class="poster-preview" src="poster_thumbnails/sarlm-poster-taheri.png" alt="Poster thumbnail for SAR-LM: SYMBOLIC AUDIO REASONING WITH LARGE LANGUAGE MODELS">
<h3 class="poster-title">SAR-LM: SYMBOLIC AUDIO REASONING WITH LARGE LANGUAGE MODELS</h3>
<div class="poster-actions">
<a class="poster-link" href="papers/SARLM_Poster_Taheri.pdf" target="_blank" rel="noopener">
<span>Download PDF</span>
</a>
</div>
</article>
</section>
</main>
<footer>
Looking for more workshop info? <a href="https://m-a-p.ai/LLM4Music/index.html" style="color: #007acc; font-weight: 600; text-decoration: none;">Return to the main page</a>.
</footer>
</body>
</html>