annotate musicweb.tex @ 3:a9ebaf0c092f

changed title
author alo
date Wed, 20 Apr 2016 21:41:42 +0100
parents 3fef4f275f3d
children de0f5425bd9c
rev   line source
alo@0 1 \documentclass{llncs}
alo@0 2 \usepackage{graphicx}
alo@0 3
alo@0 4 \usepackage{amsmath,cite}
alo@0 5 \usepackage{pifont}
alo@0 6 \usepackage{listings}
alo@0 7 \usepackage{courier}
alo@0 8 \usepackage{adjustbox}
alo@0 9 \usepackage{url}
alo@0 10 \usepackage[ngerman,english]{babel}
alo@0 11 \usepackage[utf8]{inputenc}
alo@0 12 \newcommand{\cmark}{\fontsize{14}{14}\textbullet\selectfont}
alo@0 13 \usepackage[usenames,dvipsnames]{color}
alo@0 14
alo@0 15 \lstdefinelanguage{sparql} {
alo@0 16 morekeywords={SELECT, WHERE, a, COUNT, GROUP, ORDER, BY, HAVING, as, DISTINCT, OPTIONAL},
alo@0 17 sensitive=true,
alo@0 18 morecomment=[l][\color{ForestGreen}\bfseries\selectfont]{\#\ },
alo@0 19 moredelim=[s][\color{ForestGreen}\bfseries\selectfont]{?}{\ }, %variable
alo@0 20 moredelim=[s][\color{NavyBlue}\bfseries\selectfont]{@}{\ }, %prefix
alo@0 21 moredelim=[s][\color{OrangeRed}\bfseries\selectfont]{<}{>}, %red URIs
alo@0 22 morestring=[b][\color{ForestGreen}]\", %green strings
alo@0 23 morestring=[b]",
alo@0 24 }
alo@0 25
alo@0 26 \lstdefinestyle{sparql}{
alo@0 27 language=sparql,
alo@0 28 basicstyle=\footnotesize\ttfamily\bfseries,
alo@0 29 % basicstyle=\ttfamily,
alo@0 30 keywordstyle=\color{blue}\bfseries,
alo@0 31 identifierstyle=,
alo@0 32 commentstyle=\color{ForestGreen}\bfseries,
alo@0 33 stringstyle=\color{BlueGreen}\ttfamily,
alo@0 34 showstringspaces=false,
alo@0 35 emph={context},emphstyle=\color{BrickRed}\bfseries,
alo@0 36 frame = lines,
alo@0 37 %aboveskip = 15pt,
alo@0 38 %framexbottommargin = 5pt,
alo@0 39 %framextopmargin = 5pt,
alo@0 40 aboveskip = 10pt,
alo@0 41 framexbottommargin = 2pt,
alo@0 42 framextopmargin = 2pt,
alo@0 43 captionpos=b,
alo@0 44 escapechar=~,
alo@0 45 breaklines=true,
alo@0 46 breakatwhitespace=true,
alo@0 47 breakindent=20pt,
alo@0 48 xleftmargin=5pt,
alo@0 49 xrightmargin=5pt,
alo@0 50 basewidth={0.55em,0.45em},
alo@0 51 %basewidth={0.50em,0.6em},
alo@0 52 fontadjust=true,
alo@0 53 % lineskip={-1.5pt},
alo@0 54 % columns=[c]spaceflexible, %make the long artist URI fit
alo@0 55 %float = h!,
alo@0 56 }
alo@0 57
alo@0 58 \renewcommand{\lstlistingname}{{\bf Listing}}
alo@0 59
alo@0 60
alo@0 61 \lstdefinelanguage{ttl} {
alo@0 62 morekeywords={a},
alo@0 63 sensitive=true,
alo@0 64 % morecomment=[l][\color{ForestGreen}\bfseries\fontsize{10}{2}\selectfont]{\#\ },
alo@0 65 % moredelim=[s][\color{ForestGreen}\bfseries\fontsize{10}{2}\selectfont]{\#\ }{\ },
alo@0 66 % moredelim=[s][\color{NavyBlue}\bfseries\fontsize{10}{2}\selectfont]{@}{\ }, %prefix
alo@0 67 % moredelim=[s][\color{OrangeRed}\bfseries\fontsize{10}{2}\selectfont]{<}{>}, %red URIs
alo@0 68 morecomment=[l][\color{ForestGreen}\ttfamily\bfseries\selectfont]{\#\ },
alo@0 69 moredelim=[s][\color{NavyBlue}\ttfamily\bfseries\selectfont]{@}{\ }, %prefix
alo@0 70 moredelim=[s][\color{OrangeRed}\ttfamily\bfseries\selectfont]{<}{>}, %red URIs
alo@0 71 morestring=[b][\color{ForestGreen}]\", %green strings
alo@0 72 morestring=[b]",
alo@0 73 }
alo@0 74
alo@0 75 \lstdefinestyle{ttl}{
alo@0 76 language=ttl,
alo@0 77 basicstyle=\footnotesize\ttfamily\bfseries,
alo@0 78 keywordstyle=\color{blue}\bfseries,
alo@0 79 identifierstyle=,
alo@0 80 commentstyle=\color{ForestGreen}\bfseries,
alo@0 81 stringstyle=\color{BlueGreen}\bfseries,
alo@0 82 showstringspaces=false,
alo@0 83 emph={context},emphstyle=\color{BrickRed}\bfseries,
alo@0 84 frame = lines,
alo@0 85 framexbottommargin = 5pt,
alo@0 86 framextopmargin = 5pt,
alo@0 87 captionpos=b,
alo@0 88 escapechar=~,
alo@0 89 breaklines=true,
alo@0 90 breakatwhitespace=true,
alo@0 91 breakindent=20pt,
alo@0 92 aboveskip = 15pt,
alo@0 93 xleftmargin=5pt,
alo@0 94 xrightmargin=5pt,
alo@0 95 basewidth={0.55em,0.45em},
alo@0 96 % basewidth={0.50em,0.6em},
alo@0 97 fontadjust=true,
alo@0 98 lineskip={-1.5pt},
alo@0 99 % columns=[c]spaceflexible, %make the long artist URI fit
alo@0 100 % float = h!,
alo@0 101 }
alo@0 102
alo@0 103 \lstdefinelanguage{json} {
alo@0 104 sensitive=true,
alo@0 105 %morecomment=[l]{@},
alo@0 106 moredelim=[s][\color{ForestGreen}]{?}{\ }, %green variables
alo@0 107 moredelim=[s][\color{OrangeRed}\fontsize{7}{2}\selectfont]{<}{>}, %red URIs
alo@0 108 morestring=[b][\color{Gray}]\",
alo@0 109 morestring=[b]",
alo@0 110 }
alo@0 111
alo@0 112 \lstdefinestyle{json}{
alo@0 113 language=json,
alo@0 114 keywords={type,context},
alo@0 115 basicstyle=\fontsize{7}{8}\bfseries\ttfamily,
alo@0 116 keywordstyle=\color{blue}\bfseries,
alo@0 117 identifierstyle=,
alo@0 118 commentstyle=\color{Gray}\bfseries,
alo@0 119 stringstyle=\color{OliveGreen}\ttfamily,
alo@0 120 showstringspaces=false,
alo@0 121 emph={context},emphstyle=\color{BrickRed}\bfseries,
alo@0 122 frame = lines,
alo@0 123 framexbottommargin = 5pt,
alo@0 124 framextopmargin = 5pt,
alo@0 125 tabsize=4,
alo@0 126 captionpos=b,
alo@0 127 escapechar=~,
alo@0 128 breaklines=false,
alo@0 129 xleftmargin=5pt,
alo@0 130 xrightmargin=5pt,
alo@0 131 basewidth={0.50em,0.45em},
alo@0 132 %basewidth={0.50em,0.6em},
alo@0 133 fontadjust=true,
alo@0 134 columns=[c]spaceflexible, %make the long artist URI fit
alo@0 135 float = ht,
alo@0 136 }
alo@0 137
alo@0 138 \renewcommand{\labelitemi}{$\bullet$}
alo@0 139
alo@0 140 \begin{document}
alo@0 141
alo@1 142 \mainmatter
alo@1 143
alo@3 144 \title{MusicWeb: an open linked semantic platform for music metadata}
alo@1 145
alo@1 146 \author{Mariano Mora-Mcginity \and Alo Allik \and Gy\"orgy Fazekas \and Mark Sandler }
alo@1 147 %
alo@1 148
alo@1 149 \institute{Queen Mary University of London, \\
alo@1 150 \email{\{m.mora-mcginity, a.allik, g.fazekas, mark.sandler\}@qmul.ac.uk}}
alo@1 151
alo@1 152 \maketitle
alo@0 153
alo@1 154 \begin{abstract}
alo@1 155
gyorgyf@2 156 % MusicWeb is a web site that provides users a browsing, searching and linking platform of music artist and group information by integrating open linked semantic metadata from various Semantic Web, music recommendation and social media data sources, including DBpedia.org, sameas.org, MusicBrainz, the Music Ontology, Last.FM, Youtube, and Echonest. The front portal includes suggested links to selected artists and a search functionality from where users can navigate to individual artists pages. Each artist page contains a biography, links to online audio and a video player with a side menu displaying a selection of Youtube videos. Further it provides lists of YAGO categories linking each artist to other artists by various commonalities such as style, geographical location, instrumentation, record label as well as more obscure categories, for example, artists who have received the same award, have shared the same fate, or belonged to the same organisation or religion. The artist connections are further enhanced by thematic analysis of journal articles and blog posts as well as content-based music information retrieval similarity measures.
gyorgyf@2 157
gyorgyf@2 158 This paper presents MusicWeb, a novel platform for linking music artists within a web-based application for discovering connections between them. MusicWeb provides a browsing experience using connections that are either extra-musical or tangential to music, such as the artists' political affiliation or social influence, or intra-musical, such as the artists' main instrument or most favoured musical key. The platform integrates open linked semantic metadata from various Semantic Web, music recommendation and social media data sources including DBpedia.org, sameas.org, MusicBrainz, the Music Ontology, Last.FM and Youtube as well as content-derived information. The front portal includes suggested links to selected artists and a search functionality from where users can navigate to individual artists pages. Each artist page contains a biography and links to online audio and a video resources. Connections are made using YAGO categories linking artist by various commonalities such as style, geographical location, instrumentation, record label as well as more obscure categories, for instance, artists who have received the same award, have shared the same fate, or belonged to the same organisation or religion. These connections are further enhanced by thematic analysis of journal articles and blog posts as well as content-based similarity measures focussing on high level musical categories.
alo@0 159
alo@1 160 \keywords{Semantic Web, Linked Open Data, music metadata, semantic audio analysis, music information retrieval }
alo@1 161 \end{abstract}
alo@1 162
alo@0 163 \section{Introduction}\label{sec:introduction}
alo@0 164
alo@0 165 \section{Background}\label{sec:background}
alo@0 166
alo@1 167 \section{MusicWeb: Yago linking}\label{sec:yago}
alo@0 168
alo@1 169 \section{MUSIC: linking by topic}\label{sec:music}
alo@0 170
alo@1 171 \section{Content-based information retrieval}\label{sec:mir}
alo@0 172
alo@0 173 \section{Discussion}\label{sec:discussion}
alo@0 174
alo@0 175 \section{Conclusions}\label{sec:conclusions}
alo@0 176
alo@0 177 %
alo@0 178 % ---- Bibliography ----
alo@0 179 %
alo@0 180 \vspace{-1em}\begin{thebibliography}{5}
alo@0 181 %
alo@0 182
alo@0 183 \bibitem{FazekasRJS10_OMRAS2}
alo@0 184 G.~Fazekas, Y.~Raimond, K.~Jakobson, and M.~Sandler.
alo@0 185 \newblock An overview of semantic web activities in the {OMRAS2} project.
alo@0 186 \newblock {\em Journal of New Music Research (JNMR)}, 39(4), 2010.
alo@0 187
alo@0 188 \bibitem{Porter:ISMIR:15}
alo@0 189 A.~Porter, D.~Bogdanov, R.~Kaye, R.~Tsukanov, and X.~Serra.
alo@0 190 \newblock Acousticbrainz: a community platform for gathering music information
alo@0 191 obtained from audio.
alo@0 192 \newblock In {\em 16th International Society for Music Information Retrieval
alo@0 193 (ISMIR) Conference}, 2015.
alo@0 194
alo@0 195 \bibitem{DBLP:conf/ismir/RaimondASG07}
alo@0 196 Y~Raimond, S.~Abdallah, M.~Sandler, and F.~Giasson.
alo@0 197 \newblock The music ontology.
alo@0 198 \newblock In {\em Proceedings of the 8th International Conference on Music
alo@0 199 Information Retrieval, ISMIR 2007, Vienna, Austria, September 23-27}, 2007.
alo@0 200
alo@0 201 \end{thebibliography}
alo@0 202
alo@0 203 \end{document}