<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>CASIA@QALD-3: A Question Answering System over Linked Data</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Shizhu He</string-name>
          <email>shizhu.he@nlpr.ia.ac.</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Shulin Liu</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yubo Chen</string-name>
          <email>yubo.chen@nlpr.ia.ac.</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Guangyou Zhou</string-name>
          <email>gyzhou@nlpr.ia.ac.</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Kang Liu</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jun Zhao</string-name>
          <email>jzhao@nlpr.ia.ac.</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          ,
          <addr-line>Beijing, 100084</addr-line>
          ,
          <country>China. cn</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>National Laboratory of Pattern Recognition, Institute of Automation, Chinese Academy of Sciences.</institution>
          <addr-line>Zhongguancun East Road 95</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>We present a question answering system (CASIA) over Linked Data (DBpedia), which focuses on construct a bridge between the users and the Linked Data. Based on the Linked Data consisting of subject-property-object (SPO) triples, each natural language question firstly is transformed into a triple-based representation (Query Triple). Then, the corresponding resources in DBpedia, including class, entity, property, are mapped for the phrases in the query triples. Finally, the optimal SPARQL query is generated as the output result. Our system can not only deal with the single-relation questions but the complex questions containing multi-relations. We evaluate our approach on QALD-3 test dataset and achieve an F-measure score of 0.36, an average precision of 0.35 and an average recall of 0.36 over 99 questions.</p>
      </abstract>
      <kwd-group>
        <kwd>Question Answering</kwd>
        <kwd>Linked Data</kwd>
        <kwd>DBpedia</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        With the rapid development of the Web of Data, there are many RDF datasets
published as Linked Data[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Thus, developing user-friendly interface for accessing those
linked data become increasing important. However, there are the “gaps” between the
users and the Linked Data. On the one hand, the users, even expert programmers, need
a lot of practices to handle standard structured query languages like SPARQL. On the
other hand, due to the diversity and high heterogeneity of the Linked Data, it is difficult
for humans to select relevant resources and discover useful information.
      </p>
      <p>
        Question answering over Linked Data is aimed at eliminating those “gaps”, which
attempts to allow the users to access those structured data with natural language. To
fulfill this aim, some systems have already been proposed during the last few years.
PARALEX[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] maps open-domain questions to subject-property-object (SPO) triples
database by leveraging an automatically constructed lexicon. The limitation of [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] is
that it can only answer the simple question which only contains one single relation,
but fail to deal with the questions with complex structures. DEANNA[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] believes the
translating natural language questions into the structured SPARQL queries consists with
several disambiguation tasks. They solve those disambiguation tasks jointly by using
an integer linear program. However, some questions still cannot be answered by both
systems, such as aggregation, filter, comparative and superlative questions. TBSL[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]
addresses those problems by utilizing some hand-written templates, and filling slot in
SPARQL templates with resources (entity, class or property).
      </p>
      <p>
        In this paper, we demonstrate our system in QALD-3, which focuses on translating
natural language expression into standard RDF query language expression (SPARQL).
Our system implements a basic pipeline framework which consists three main
components, including question analysis, resource mapping and SPARQL generation. In
specific, we first employ shallow and deep linguistic analysis to transform NL-queries
into a set of Query Triples with &lt;subject, predict, object&gt; format. Second, we map
each phrase in Query Triple to the corresponding resource (class, entity, or property)
in DBpedia. As a result, Ontology Triples are generated. Thirdly, the SPARQL queries
will be constructed based on Ontology Triple and question type. At last, the generated
SPARQL queries is used to search on the Linked Data, and the best answer can be
picked out through validating and ranking. The framework of our system is similar to
PowerAqua[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. However, besides different technologies used for question analysis, the
big difference is that we use relational patterns when mapping relations rather than use
WordNet and the context to disambiguate the phrase in query triples. Furthermore, our
system is similar to QAKiS[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], which is to exploit a relation-based matching and
construct relational patterns automatically from Wikipedia. In contrast, our work focuses
not only the simple questions, but also on complex questions. Moreover, we use
several free resources including PATTY[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] and WordNet[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] instead of constructing relation
pattern repository by ourselves.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>System Description</title>
      <p>The architecture of our system will be presented in this section. We will give a
detailed description of each component and give a step by step explanation with the
following example:</p>
      <p>Who are the parents of the wife of Juan Carlos I?(id=67, test set).
2.1</p>
      <sec id="sec-2-1">
        <title>System Architecture</title>
        <p>The current version of our QA system targets the questions which do not contain
comparative and superlative words. We also do not consider the questions which contain
aggregation and filter condition. Generally, our system is composed of three main steps
(as shown in Figure 1):</p>
        <p>1) Question Analysis: Given a natural language question, we first detect the type
of this question (yes/no, number, etc.) and extract the name entities from it. Then we
modify some phrases and their POS tags by combining name entities and keywords.
After that, we take deep linguistic analysis to generate the typed dependency parsing
tree for this question. At last, a set of linguistic triples &lt;subject, predicate, object&gt; is
constructed from the dependency parsing tree. The upper example will be transformed
to two query triples, where the second one is a sub-triple of the first one:
&lt;?who, are the parents of, wife&gt;
&lt;?wife, the wife of, Juan Carlos I &gt;
2) Resource Mapping: For every phrase in query triple, the most important thing is
to identity the corresponding resource in Linked Data, such as DBpedia. For different
types of resource, we use different techniques and resources. The output of this step is a
list of ontology triples. One query triple will generate several possible ontology triples.
Possible triples of the aforementioned example are:
&lt;?Person, rdf:type, dbc:Person&gt;</p>
        <p>&lt;?Person, dbp:parent, ?wife&gt;
&lt;?wife, dbo:spouse, dbr:Juan Carlos I Of Spain&gt;
3) SPARQL Generation: Based on identified question type (bool, number, etc.) and the
results of resource mapping, we generate SPARQL query candidates. Then DBpedia
SPARQL endpoint will be used to validate those query candidates. The legal queries
with the highest score will be selected and returned as the right answer. If there are
several different results with the same highest score, we combine them using SPARQL
language keyword “UNION”. A SPARQL query candidate of the example question is
as following:
PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;
PREFIX dbo: &lt;http://dbpedia.org/ontology/&gt;
PREFIX dbp: &lt;http://dbpedia.org/resource/&gt;
SELECT DISTINCT ?URL
WHERE f
?URL rdf:type dbo:Person.
?URL dbo:parent ?wife.</p>
        <p>?wife dbo:spouse dbp:Juan Carlos I of Spain.
g
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Question Analysis</title>
        <p>We design some simple heuristics to identify the question type, based on which
we will use different SPARQL templates to generate queries. For example, the yes/no
question will use “ask where” template; the “sum” question will use “select count(?x)”
template. In general, we use the following regular expressions:
— “ˆ (arejdidjisjwasjdoesjwerejdo).*”, corresponding to the yes/no question;
— “ˆ how(manyjtalljlong).*”, corresponding to the ”sum” question;
—“ˆ (whenjhow oftenjsince whenjhow longjfor how long).*”, corresponding to
the Date question;</p>
        <p>— “ˆ (whatjwhichjwherejwho).*” and “ˆ (show mejgive mejlist).*”,
corresponding to normal “select” question.</p>
        <p>For a yes/no question, we transform it to a declarative sentence based on phrase
structure parsing tree. For example, “Is Michelle Obama the wife of Barack Obama?”
(id=67, test set) will be transformed to “Michelle Obama is the wife of Barack Obama.”.</p>
        <p>Considering the Linked Data consisting subject-property-object (SPO) triples, we
transform questions into query triples based on dependency parsing tree. Given a natural
language question and corresponding keywords, we use Stanford NER tool1 to identify
name entities in question, and then generate a typed dependency parsing tree combining
keywords, name entities and POS tags. However, the name entities in question cannot
be occasionally identified by Stanford NER tool. Through our coarse statistics, there are
74 entities identity correctly in all 95 entities from 99 questions. However, we cannot
extract any NEs from such question “Give me the Apollo 14 astronauts”; and we just
extract “Juan Carlos” from question “Who are the parents of the wife of Juan Carlos
I?” (the right result is “Juan Carlos I”). Therefore, we use keywords of question
provide by QALD-3 organizers; we extract keywords with capitalization as proper nouns.
For example, the parsing result of the example question is showed as follows(Figure 2):
Then, we use some heuristics to construct query triple from parsing tree. For example,
we collect the phrases in the path “nsubj!prep! pobj” and transform it into a triple.
If there is a dependency path in a phrase (“the wife of Juan Carlos I” in the “pobj” of
phrase “parents”), we will construct an additional query triple. Because we mainly
extract subject-predicate-object and proposition phrases relations, we cannot extract query
triples for many questions, such as the question “Which films starring Clint Eastwood
did he direct himself?”.</p>
        <sec id="sec-2-2-1">
          <title>1 http://nlp.stanford.edu/software/corenlp.shtml</title>
          <p>Query triples are the intermediate representation form of user’s natural language
question. To generate SPARQL queries, the most important thing is mapping them to
the right “resource” in Linked Data. There are four type resources in Linked Data:
Class (concept), Instance (Entity), Property (Relation) and Literal. Currently we ignore
the Literal resource. Thus, the task of this step is to find appropriate item in those three
resources sets by given a phrase in query triple.</p>
          <p>We assume that different positions of a query triple will be mapped to different
type resources. Thus, in &lt;Subject, Relation, Object&gt;, “Subject” and “Object” may be
mapped to Class and Instance, and “Relation” will be mapped to Property. To fulfilling
this mapping, we build three Lucene2 Indexes separately. However, finding different
types of resource needs different techniques. In specific, mapping to instance, index
lookup in the inverted index can yield good performance. Additionally, we can find the
right resources even given different spellings by applying Wikipedia redirects. For
example, any phrase of “MJ23”, “His Airness”, “Micheal Jordan” and “Michael Jeffery
Jordan” will be mapped to the same URI &lt; http://dbpedia.org/resource/
Michael_Jordan&gt;. Sometimes the phrase may contain a class, such as in the
question “Which books by Kerouac were published by Viking Press?”, “book” should be
mapped to the class URI &lt; http://dbpedia.org/ontology/Book&gt;. If the
complete match cannot find appropriate URIs for phrase, we will perform the following
steps to revise the results:</p>
          <p>1) Search the similar resources and calculate their string similarities (Levenshtein
distance) with the given words;
2) expand the given words using WordNet;
3) using lexical word when encountering “prep”, such as “by” will invoke “dbo:author”.</p>
          <p>In the current version of our system, we just invoke four relations using hand-crafted
rules, including “by” invokes “dbo:starring” and “dbo:author”; “in” and “of” invoke
“dbo:country”, “dbo:starring” and “dbo:locationCity”.</p>
          <p>
            However, when mapping property, we may still fail to get right properties through
the above steps. For example in the question “Who is the husband of Amanda Palmer?”,
“husband” should be mapped to “dbo:spouse” with URI &lt; http://dbpedia.
org/ontology/spouse&gt;. Several recent studies focus on finding the relation
patterns for a property, such as BOA[
            <xref ref-type="bibr" rid="ref9">9</xref>
            ] and PATTY[
            <xref ref-type="bibr" rid="ref6">6</xref>
            ]. We use PATTY3 instead of collect
the Relational Patterns by ourselves.
          </p>
        </sec>
        <sec id="sec-2-2-2">
          <title>2 http://lucene.apache.org 3 http://www.mpi-inf.mpg.de/yago-naga/patty/</title>
        </sec>
      </sec>
      <sec id="sec-2-3">
        <title>SPARQL Generation</title>
        <p>Each phrase in query triple may be mapped to more than one resources in the Linked
Data. To filter excessive resources, we set a similarity threshold to rank SPARQL queries.
For every query triple S,P,O, we generate S,P,?x and ?x,P,O in order to check whether
the subject or object actually occurs with the property. If one question has 3 conditions
(3 query triples), we will generate 23 = 8 SPARQL queries. Based on the identified
question type, we generate complete SPARQL query, and use DBpedia SPARQL
endpoint4 to validate the legality of each candidate query. The process of validating and
constructing rules is presented as follows:</p>
        <p>—bool question: For the “bool” type questions, we use “ask” template. The query
is legal only if it returns “true”, and we cannot deal with the question which answer is
“wrong”.</p>
        <p>—number question: At first we use “select” template. And, if the retrieval results
are more than one, or the only one result is not an integer value, we will use “select
count” template.</p>
        <p>—other question: If the query could get results, it is a legal query.</p>
        <p>Each legal query will be associated with a score. We select the queries with the
highest score, and combine them using “UNION” if there are more than one queries
sharing the same highest score.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Results on QALD-3 data</title>
      <p>4 http://vtentacle.techfak.uni-bielefeld.de:443/sparql
ID
2
19
Table.2. Time consumption on answering QALD-3 test questions.</p>
      <p>Number of Time in Time in
Question Query first two first last</p>
      <p>Triples steps step
Who was the successor of John F.</p>
      <p>Kennedy?
Give me all people that were born in</p>
      <p>Vienna and died in Berlin.</p>
      <p>How tall is Michael Jordan?
What is the capital of Canada?
What are the nicknames of San</p>
      <p>Francisco?
Who are the parents of the wife of Juan</p>
      <p>Carlos I?
Which books by Kerouac were published</p>
      <p>by Viking Press?
What is the largest city in Australia?
Who painted The Storm on the Sea of</p>
      <p>Galilee?</p>
      <p>Who produces Orangina?
Average on all 99 questions
18
10</p>
      <p>As introduced before, our current version system cannot address questions which
contain comparative, superlatives and negation words. We cannot answer complex
questions with relative sentences and conjunctions also. For example, we cannot address
question “Which films starring Clint Eastwood did he direct himself?” (id=88, test set)</p>
      <p>In our observation, the mistakes in our system can be classified into four types. We
discuss each of the four type errors in detailes.</p>
      <p>First, some errors occur in the question analysis step. Because we just extract
subjectpredicate-object and proposition phrases relations, wrong query triples generated for
some questions. For example, we only extract &lt;?people, born in, Vienna&gt; in question
“Give me all people that were born in Vienna and died in Berlin.”(id = 19, test set),
and the proper query triples should have two coordination triples &lt;?people, born in,
Vienna&gt; and &lt;?people, died in, Berlin &gt;. We can deal with the questions with cascade
relation. For example, in question “Which books by Kerouac were published by Viking
Press?”(id = 81, test set), “publish by” is modify the phrase “books by Kerouac”.</p>
      <p>Second, there are some entities mapping errors. We do not resolve the entity
disambiguation problem, some entities extracted from question are wrong using string
matching. For example, we extract entity “GMT” (dbp:GMT) in question “List all games by
GMT.”(id = 40, test set), but “GMT” was an ambiguities word and it corresponded
“GMT Games” (dbp:GMT Games) in this question.</p>
      <p>Third, considering the ontology we rely on for concept extraction, some concepts
(class) CASIA cannot identify. For example, “surfers” cannot be identified as proper
concept in question “Which professional surfers were born on the Philippines?”(id =
46, test set).</p>
      <p>Finally, most of our current version systems mistakes concern wrong relation
mapping. For example, we cannot extract any relation in question “Which countries are
connected by the Rhine?”(id = 45, test set), the same situation occur in “What is the
ruling party in Lisbon?”(id=53, test set) and “How tall is Michael Jordan?”(id = 20,
test set). Even though PATTY was a good relation patterns repository, mapping its
patterns to relation properties in DBpedia was not perfect.</p>
      <p>Except upper errors, our system also cannot detect the right order between subject
and object. For example, in question “Who are the parents of the wife of Juan Carlos
I?”(id = 67, test set), we generated SPARQL expression contain meanings of “Who
are the parents of the wife of Juan Carlos I?” and “Who are the child of the wife of
Juan Carlos I?”. The same problem occurs in the question “Did Socrates influence
Aristotle?”(id = 62, test set).
4</p>
    </sec>
    <sec id="sec-4">
      <title>Conclusion and Future Work</title>
      <p>In this paper, we present a question answering system over Linked Data, which
translate the natural language questions into the standard RDF data queries (SPARQL).
The pipeline of our system consists of three main components, including question
analysis, resource mapping and SPARQL generation. In specific, we use shallow (POS
tagging, NER) and deep linguistic analysis (dependency parsing) to transform each natural
language question into triple-based representation. Then we use PATTY, WordNet and
other free external resources to find the corresponding resource of the phrases in the
query triples. At last, based on the identified question type, we generate the SPARQL
queries and use the DBpedia endpoint to validate them. However, we still cannot
answer the comparative and superlative questions. In addition, the linguistic analysis
cannot identify all relations in questions. In the future we will address those problems and
include more Linked Data (currently we only use DBpedia).
5</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgements</title>
      <p>Thanks to Prof. Hang Li, Dr. Yibo Zhang and Dr. Jie Zhang at Huawei Noah’S
Ark Lab for their insightful advices. This work was supported by the National Natural
Science Foundation of China (No. 61070106, No. 61272332 and No. 61202329), the
National High Technology Development 863 Program of China (No. 2012AA011102),
the National Basic Research Program of China (No. 2012CB316300).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Bizer</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Heath</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Berners-Lee</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Linked data - the story so far</article-title>
          .
          <source>Journal on Semantic Web and Information Systems</source>
          (in press) (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Fader</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zettlemoyer</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Etzioni</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>Paraphrase-Driven Learning for Open Question Answering</article-title>
          .
          <source>In: Proc. of ACL'13</source>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Yahya</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Berberich</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Elbassuoni</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramanath</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tresp</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weikum</surname>
          </string-name>
          , G.:
          <article-title>Natural Language Questions for the Web of Data</article-title>
          .
          <source>In: Proc. of EMNLP'12</source>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Unger</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bhmann</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lehmann</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ngomo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gerber</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cimiano</surname>
          </string-name>
          , P..:
          <article-title>Template-based Question Answering over RDF Data</article-title>
          .
          <source>In: Proc. of WWW'12</source>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Lopez</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fernndez</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stieler</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Motta</surname>
          </string-name>
          , E.:
          <article-title>PowerAqua: supporting users in querying and exploring the Semantic Web content</article-title>
          .
          <source>Semantic Web Journal</source>
          , In Press (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Cabrio</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aprosio</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cojan</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Magnini</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gandon</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lavelli</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>QAKiS @ QALD-2</article-title>
          . In:
          <article-title>Proceedings of Interacting with Linked Data (ILD</article-title>
          <year>2012</year>
          ) [37] (
          <year>2012</year>
          ),
          <fpage>87</fpage>
          -
          <lpage>95</lpage>
          . http://ceurws.org/Vol-
          <volume>913</volume>
          /
          <fpage>07</fpage>
          -
          <lpage>ILD2012</lpage>
          .pdf
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Nakashole</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weikum</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Suchanek</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>PATTY: A Taxonomy of Relational Patterns with Semantic Types</article-title>
          .
          <source>In: Proc. of EMNLP'12</source>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>George</surname>
            <given-names>A</given-names>
          </string-name>
          .
          <string-name>
            <surname>Miller</surname>
          </string-name>
          (
          <year>1995</year>
          ).
          <article-title>WordNet: A Lexical Database for English</article-title>
          .
          <source>Communications of the ACM</source>
          Vol.
          <volume>38</volume>
          , No.
          <volume>11</volume>
          :
          <fpage>39</fpage>
          -
          <lpage>41</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Gerber</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ngomo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <source>Bootstrapping the Linked Data Web. 1st Workshop on Web Scale Knowledge Extraction</source>
          , ISWC'
          <volume>11</volume>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>