source: SMC4LRT/Expose.tex

Last change on this file was 1418, checked in by vronk, 13 years ago
File size: 13.4 KB
Line 
1% !TEX TS-program = pdflatex
2% !TEX encoding = UTF-8 Unicode
3
4% This is a simple template for a LaTeX document using the "article" class.
5% See "book", "report", "letter" for other types of document.
6
7\documentclass[11pt]{article} % use larger type; default would be 10pt
8
9\usepackage[utf8]{inputenc} % set input encoding (not needed with XeLaTeX)
10
11\usepackage{url}
12%\usepackage{svn-multi}
13
14% Subversion Information
15%\svnidlong
16%{$HeadURL: $}
17%{$LastChangedDate: $}
18%{$LastChangedRevision: $}
19%{$LastChangedBy: $}
20%\svnid{$Id$}
21
22
23%%% Examples of Article customizations
24% These packages are optional, depending whether you want the features they provide.
25% See the LaTeX Companion or other references for full information.
26
27%%% PAGE DIMENSIONS
28\usepackage{geometry} % to change the page dimensions
29\geometry{a4paper} % or letterpaper (US) or a5paper or....
30\geometry{margin=3.5cm} % for example, change the margins to 2 inches all round
31\topmargin=-0.5in
32\textheight=680pt
33% \geometry{landscape} % set up the page for landscape
34%   read geometry.pdf for detailed page layout information
35
36\usepackage{graphicx} % support the \includegraphics command and options
37
38%\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent
39\setlength{\parskip}{1ex plus 0.5ex minus 0.2ex}
40
41%%% PACKAGES
42\usepackage{booktabs} % for much better looking tables
43\usepackage{array} % for better arrays (eg matrices) in maths
44\usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.)
45\usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim
46%\usepackage{subfig} % make it possible to include more than one captioned figure/table in a single float
47% These packages are all incorporated in the memoir class to one degree or another...
48
49%%% HEADERS & FOOTERS
50\usepackage{fancyhdr} % This should be set AFTER setting up the page geometry
51\pagestyle{plain} % options: empty , plain , fancy
52\renewcommand{\headrulewidth}{0pt} % customise the layout...
53\lhead{}\chead{}\rhead{}
54\lfoot{}\cfoot{\thepage}\rfoot{}
55
56%%% SECTION TITLE APPEARANCE
57\usepackage{sectsty}
58\allsectionsfont{\sffamily\mdseries\upshape} % (See the fntguide.pdf for font help)
59% (This matches ConTeXt defaults)
60
61%%% ToC (table of contents) APPEARANCE
62\usepackage[nottoc,notlof,notlot]{tocbibind} % Put the bibliography in the ToC
63%\usepackage[titles,subfigure]{tocloft} % Alter the style of the Table of Contents
64%\renewcommand{\cftsecfont}{\rmfamily\mdseries\upshape}
65%\renewcommand{\cftsecpagefont}{\rmfamily\mdseries\upshape} % No bold!
66
67%%% END Article customizations
68
69%%% The "real" document content comes below...
70
71\title{SMC4LRT - \\ Semantic Mapping Component for Language Resources and Technology}
72\author{Durco Matej, 0005416}
73%\date{} % Activate to display a given date or no date (if empty),
74         % otherwise the current date is printed
75
76\begin{document}
77\maketitle
78
79\section{Main Goal}
80
81This work proposes a component that shall enhance search functionality over a \emph{large heterogeneous collection of metadata descriptions} of Language Resources and Technology (LRT). By applying semantic web technology the user shall be given both better recall through \emph{query expansion} based on related categories/concepts and new means of \emph{exploring the dataset} via ontology-driven browsing.
82
83Following two examples for better illustration. First a concept-based query expansion:
84Confronted with a user query: \texttt{Actor.Name = Sue} and knowing that \texttt{Actor} is synonym to \texttt{Person} and \texttt{Name} is synonym to \texttt{FullName} the expanded query could look like:
85\begin{quote}
86\texttt{Actor.Name = Sue OR Actor.FullName = Sue OR \\ Person.Name =  Sue OR Person.FullName = Sue}
87\end{quote}
88And second, an ontology-driven search: Starting from a list of topics the user can browse an ontology to find institutions concerned with those topics and retrieve a union of resources for the resulting cluster. Thus in general the user is enabled to work with the data based on information that is not present in the original dataset, but rather in external linked-in semantic resources.
89
90Such \textbf{semantic search} functionality requires a preprocessing step, that produces the underlying linkage both between categories/concepts and on the instance level. We refer to this task as \textbf{semantic mapping}, that shall be realized by corresponding \texttt{Semantic Mapping Component}. In this work the focus lies on the method itself -- expressed in the specification and operationalized in the (prototypical) implementation of the component -- rather than trying to establish a final, accomplished alignment. Although a tentative, na\"ive mapping on a subset of the data will be proposed, this will be mainly used for evaluation and shall serve as basis for discussion with domain experts aimed at creating the actual sensible mappings usable for real tasks.
91
92In fact, due to the great diversity of resources and research tasks, a "final" complete alignment does not seem achievable at all. Therefore also the focus shall be on "soft" dynamic mapping, i.e. to enable the users to adapt the mapping or apply different mappings depending on their current task or research question essentially being able to actively manipulate the recall/precision ratio of the search results. This entails an examination of user interaction with and visualization of the relevant additional information in the user search interface. However this would open doors to a whole new (to this work) field of usability engineering and can be treated here only marginally.
93
94\section{Method}
95We start with examining the existing data and describing the evolving infrastructure in which the components are to be embedded. Then we formulate the function of \textbf{Semantic Search} distinguishing between the concept level -- using semantic relations between concepts or categories for better retrieval -- and the instances level -- allowing the user to explore the primary data collection via semantic resources (ontologies, vocabularies).
96
97Subsequently we introduce the underlying \textbf{Semantic Mapping Component} again distinguishing the two levels - concepts and instances. We describe the workflow and the central methods, building upon the existing pieces of the infrastructure (See \textit{Infrastructure Components} in \ref{SotA} ). A special focus will be put on the examination of the feasibility of employing ontology mapping and alignment techniques and tools for the creation of the mappings.
98
99In the practical part - processing the data - a necessary prerequisite is the dataset being expressed in RDF.
100Independently,  starting from a survey of existing semantic resources (ontologies, vocabularies), we identify an intial set of relevant
101ones. These will then be used in the exercise of mapping the literal values in the by then RDF-converted metadata descriptions onto externally defined entities, with the goal of interlinking the dataset with external resources (see \textit{Linked Data} in \ref{SotA}).
102
103Finally in a prototypical implementation of the two components we want to deliver a proof of the concept, supported by an evaluation
104in which we apply a set of  test queries and compare a traditional search with a semantically expanded query in terms of recall/precision indicators. A separate evaluation of the usability of the Semantic Search component  is indicated, however this issue can only be tackled marginally and will have to be outsourced into future work.
105
106\section{Expected Results}
107The primary concern of this work is the integrative effort, i.e. putting together existing pieces (resources, components and methods) especially the application of techniques from ontology mapping to the domain-specific data collection (the domain of LRT). Thus the main result of this work will be the \emph{specification} of the two components \texttt{Semantic Search} and the underlying \texttt{Semantic Mapping}.
108This theoretical part will be accompanied by a proof-of-concept \emph{implementation} of the components and the results and findings of the \emph{evaluation}.
109
110One promising by-product of the work will be the original dataset expressed as RDF with links into existing external  resources (ontologies, knowledgebases, vocabularies), effectively laying a foundation for providing this dataset as \emph{Linked Open Data}\footnote{\url{http://linkeddata.org/}} in the \emph{Web of Data}.
111
112\section{State of the Art}
113\label{SotA}
114
115\subsection*{Infrastructure Components}
116There are multiple relevant activities being carried out in the context of research infrastructure initiatives for LRT. The most relevant ongoing effort is the \texttt{VLO - Virtual Language Observatory}\footnote{\url{http://www.clarin.eu/vlo/}}\cite{VanUytvanck2010}, being developed within the CLARIN project. This application operates on roughly the same collection of data as is discussed in this work, however it employs a faceted search, mapping manually the appropriate metadata fields from the different schemas to 8 fixed facets. Although this is a very reductionist approach it is certainly a great starting point offering a core set of categories together with an initial set of category mappings.
117
118\texttt{Component Registry} and \texttt{ISOcat}\footnote{\url{http://www.isocat.org/}}
119are two integral components of the \textit{CLARIN Metadata Infrastructure} maintaining the normative information. Especially \texttt{ISOcat} -- the ISO-standardized Data Category Registry for registering and maintaining \texttt{Data Categories} as globally agreed upon incarnations of concepts in the domain of discourse -- is the definitive primary reference vocabulary \cite{Broeder2010,ISO12620:2009}. A tightly related work is that on the so called \texttt{Relation Registry}, a separate component that allows to define arbitrary relations between data categories, however this activity is rather in an early prototypical phase.
120
121And a last relevant intiative to mention is that of a \texttt{Vocabulary Alignment Service} being developed and run within the Dutch program CATCH\footnote{\textit{Continuous Access To Cultural Heritage} - \url{http://www.catchplus.nl/en/}}, which serves as a neutral manager and provider of controlled vocabularies. There are plans to reuse or enhance this service for the needs of the CLARIN project.
122
123\noindent
124All these components are running services, that this work shall directly build upon.
125
126\subsection*{LRT  Resources}
127The CLARIN project also delivers a valuable source of information on the normative resources in the domain in its current deliverable on \textit{Interoperability and Standards} \cite{CLARIN_D5.C-3}. Next to covering ontologies as one type of resources this document offers an exhaustive collection of references to standards, vocabularies and other normative/standardization work in the field of Language Resources and Technology.
128
129Regarding existing domain-specific semantic resources \texttt{LT-World}\footnote{\url{http://www.lt-world.org/}},  the ontology-based portal covering primarily Language Technology being developed at DFKI\footnote{\textit{Deutsches Forschungszentrum fÃŒr KÃŒnstliche Intelligenz} - \url{http://www.dfki.de}},  is a prominent resource providing information about the entities (Institutions, Persons, Projects, Tools, etc.) in this field of study. \cite{Joerg2010}
130
131\subsection*{Ontology Mapping} 
132As the main contribution shall be the application of \emph{ontology mapping} techniques and technology, a comprehensive overview of this field and current developments is paramount. There seems to be a plethora of work on the topic and the difficult task will be to sort out the relevant contributions. The starting point for the investigation will be the overview of the field by Kalfoglou \cite{Kalfoglou2003} and a more recent summary of the key challenges by Shvaiko and Euzenat \cite{Shvaiko2008}.
133
134In their rather theoretical work Ehrig and Sure \cite{EhrigSure2004} elaborate on the various similarity measures which are at the core of the mapping task. On the dedicated platform OAEI\footnote{Ontology Alignment Evalution Intiative - \url{http://oaei.ontologymatching.org/}} an ongoing effort is being carried out and documented comparing various alignment methods applied on different domains.
135
136One more specific recent inspirative work is that of Noah et. al \cite{Noah2010} developing a semantic digital library for an academic institution. The scope is limited to document collections, but nevertheless many aspects seem very relevant for this work, like operating on document metadata, ontology population or sophisticated querying and searching.
137
138\subsection*{Linked Open Data} 
139As described previously one outcome of the work will be the dataset expressed in RDF interlinked with other semantic resources.
140This is very much in line with the broad \textit{Linked Open Data} effort as proposed by Berners-Lee \cite{TimBL2006} and being pursuit across many discplines. (This topic is supported also by the EU Commission within the FP7.\footnote{\url{http://cordis.europa.eu/fetch?CALLER=PROJ\_ICT&ACTION=D&CAT=PROJ&RCN=95562}}) A very recent comprehensive overview of the principles of Linked Data and current applications is the book by Heath and Bizer \cite{HeathBizer2011}, that shall serve as a practical guide for this specific task.
141
142
143%\bibliographystyle{acm}
144\bibliographystyle{ieeetr}
145\bibliography{../../../2bib/lingua,../../../2bib/ontolingua,../../../2bib/semweb}
146
147
148\end{document}
Note: See TracBrowser for help on using the repository browser.