<!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>Question Answering over Knowledge Graphs</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Semantic Technology Institute Innsbruck, Department of Computer Science, University of Innsbruck</institution>
          ,
          <country country="AT">Austria</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>With the increasing maturity of large-scale knowledge graphs, question answering over knowledge graphs has become a crucial topic and attracted massive attention. A knowledge graph-based question answering system targets to leverage facts in knowledge graphs to answer natural language questions and assist users to access the meaningful and pertinent knowledge, without knowing data structures. This research intends to propose an approach to answer natural language questions over knowledge graphs in three main steps including identification of optimal subgraphs, creation of candidates and answer selection. The proposed approach leverages the state-of-the-art techniques including graph alignment, neural networks and natural language process to generate more accurate answers for questions, either simple questions or multi-hop questions. Experiments are to be conducted over different knowledge graphs to demonstrate the effectiveness of the approach, which can outperform novel existing approaches.</p>
      </abstract>
      <kwd-group>
        <kwd>Question Answering</kwd>
        <kwd>Knowledge Graphs</kwd>
        <kwd>Graph Alignment</kwd>
        <kwd>Neural Networks</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        With the rapid progress of the data web, a large amount of structured data has become
available on the web in the form of knowledge graphs (KGs). A knowledge graph is
huge semantic net which integrates various, inconsistent and heterogeneous
information resources to represent knowledge about different domains [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Basically, a KG
is a directed graph where its nodes are entities with different types and attributes and
its edges are relations of entities. In KGs, each directed edge, along with its head entity
and tail entity, is considered as a triple which is also named a fact. Numerous real-world
KGs such as DBPedia [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], Freebase [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] contain millions or billions of facts. The
increasing volume and complexity of the data structures make it difficult for end users to
access the substantial and profitable knowledge in the KGs. In order to bridge the gap,
question answering over KGs has been proposed and attracted massive attention [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
      <p>
        Making the facts of KGs accessible and beneficial for end users is one of the primary
goals of question answering (QA) over linked data [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. QA over knowledge graph
provides a way for artificial intelligence systems to incorporate knowledge graphs as a key
ingredient to answer human questions, which can benefit a variety of applications, such
as search engine design, automatic customer service, smart home devices, chatbots and
search engine optimization (SEO) [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Research projects such as WordLiftNG [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] and
KI-NET [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] show that QA over KGs is essential for construction of the most
SEOfriendly websites and chatbots in industrial areas, respectively, and knowledge graphs
and their supporting systems are already being practically deployed, for example, in the
domain of tourism marketing on the Web [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        Considering the number of KG triples required to obtain answers, natural questions
can be summarized into two groups: simple questions and complex questions. A simple
question which is named single-hop question, requires only one triple to fetch the
answer whereas a complex question which is called multi-hop question needs two or more
triples [
        <xref ref-type="bibr" rid="ref10 ref9">9, 10</xref>
        ]. The research’s key motivation is proposing an approach to improve
answering multi hop questions over knowledge graphs.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>State of the art</title>
      <p>
        QA over KGs has attracted wide attention from researchers and the research progress
can be generally categorized into three groups: rule-based techniques, information
retrieval-based techniques and semantic parsing techniques [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ].
2.1
      </p>
      <sec id="sec-2-1">
        <title>Rule-based techniques</title>
        <p>
          Most of the early research in this field leverage on predefined rules or templates to
parse questions and provide logical forms. Defining templates leads to limited
scalability and necessity for researchers to be familiar with the linguistic knowledge [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
Although, there are some techniques which try to automatically or semi-automatically
generate templates [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ]. In [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], a question answering system has been proposed to
automatically learn utterance-query templates with alignments between the constituents of
the question utterance and the KG query through integer linear programming. These
templates are generated in an offline step by distant supervision [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] at training step.
Then, in an online step, the templates are used to answer structurally questions of users.
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Information retrieval-based techniques</title>
        <p>
          For each given natural language question, these techniques extract the entities of
interest and determine the links between the extracted entities and the KG. Then,
topicentity-centric sub-graphs are extracted and the nodes of the sub-graphs are assumed as
candidate answers. Based on the features extracted from the questions and candidate
answers, the matching scores between the encoded answers and questions are calculated
and the final answer is selected. Although, these techniques overcome manually defined
templates and rules, but suffer from model interpretability and lack of training data [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
        </p>
        <p>
          H. Sun et al. [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] has proposed an open domain QA, namely PullNet which uses an
iterative process to construct a question-specific subgraph that contains nodes relevant
to the question. The initial subgraph is constructed only based on the question and is
expanded iteratively. In each iteration, a graph convolutional neural network (CNN) is
used to detect nodes that should be expanded on the KG. Then, another graph CNN is
employed to detect the answer from the constructed subgraph.
        </p>
        <p>
          Stepwise reasoning network (SRN) [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] is a neural method based on reinforcement
learning which considers multi-hop QA as a sequential decision problem. SRN
leverages path search and beam search in order to fetch answer and reduce the number of
candidates. To enhance the unique impact of different parts of a question, the attention
mechanism and neural networks are used to determine the parts that need more focus.
Moreover, a potential-based reward shaping strategy is applied to address the delayed
and sparse reward problem.
2.3
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Semantic parsing techniques</title>
        <p>These methods usually convert natural language questions into executable queries
or intermediate query forms such as query graphs based on neural semantic parsing
with high scalability and capability.</p>
        <p>
          Zhu et. al. [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ] proposed a knowledge-based QA by tree-to-sequence learning. The
basic idea behind the system can be summarized in five steps. In the first step, it
determines the information (entities, types and numbers) in the KG which is referred by the
question, so it leads to constraining the construction of queries. In the next step, the
constraints are used to construct candidate queries for the given question. Each
candidate query is encoded into a set of hidden states which are decoded into the given
question in the fourth step. Finally, using the decoding probabilities, the best query is
chosen. In order to capture contexts of an entity or a relation in a query during the encoding
phase, a tree-based bi-directional LSTM is used. A tree-based LSTM runs from all
leaves to the root while the other one runs reversely. During decoding, a generating
mode and a referring mode are mixed to capture different levels of correlations between
queries and questions.
        </p>
        <p>
          The key idea behind [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] is to leverage graphs to represent questions. This paper
conceptualizes semantic parsing as a graph matching problem. Questions are parsed
using combinatory categorial grammar and then ungrounded semantic graphs are
created. Next, the created ungrounded semantic graphs are mapped to the KG subgraphs
through mapping edge labels to KG relations, type nodes to KG entity types, and entity
nodes to KG entities. The most pertinent semantic graph is selected among mapped
candidates and finally is converted to an executable query to fetch the answer.
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Problem statement and contribution</title>
      <p>This research delves into examining the problem of question answering over knowledge
graphs and the following research challenges need to be dealt with:
Challenge 1: complex semantic information in multi-hop questions.</p>
      <p>Challenge 2: sparsity and incompleteness in KG.</p>
      <p>Challenge 3: high time complexity to detect answers in large-scaled KGs.</p>
      <p>Basically, complex semantic information leads to poor performance in analyzing of
multi-hop questions. Moreover, KGs are often incomplete and sparse with the sparsity
resulting in low recall for multi-hop questions. Extracting an optimal question subgraph
which contains the answer and is small enough, results in reducing time complexity.</p>
      <p>Different from existing methods, the current research intends to propose a solution
to improve the performance of multi-hop QA over KGs. To propose the solution, the
following questions should be addressed.</p>
      <p>Question 1: which methods can be used to build the optimal subgraph?
Question 2: how to consider the semantic information in multi-hop questions?
Question 3: which techniques should be applied to encode questions and entities of
KGs?
Question 4: how to leverage graphs to represent questions and graph alignment to map
question graphs to KGs?
Question 5: how to select the answer(s) among the answer candidates?</p>
      <p>Therefore, the underlying hypothesis of this research is as follows:
Hypothesis: neural networks, graph alignment, graph embedding and natural language
processing can improve the performance of question answering over knowledge graphs
in terms of time complexity, recall and precision especially in multi-hop questions.</p>
      <p>The main contributions can be summarized into (i) reducing search space to find
answers in KGs through building optimal subgraphs, (ii) using graph embedding
techniques in order to address incompleteness and sparsity in KGs and (iii) employing graph
alignment and neural networks to answer multi-hop questions.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Methodology</title>
      <p>The current study intends to present a new guided approach to QA over KGs that
improves answering natural language questions posed over the KG, either simple
questions or multi-hop questions. This approach includes three main steps: identification of
optimal-subgraphs, creation of candidates, answer selection.
4.1</p>
      <sec id="sec-4-1">
        <title>Identification of optimal subgraphs</title>
        <p>In this step, the entity of interest in the natural language question, namely topic
entity, is recognized and then linked to the KG. The linked part of the KG as the optimal
subgraph is more likely to contain the answer. Based on the category which the
proposed approach belongs to, a variety of techniques can be employed in this step
including: part-of-speech tagging, entity recognition, graph embedding, heuristic algorithms
and neural networks.
4.2</p>
      </sec>
      <sec id="sec-4-2">
        <title>Creation of candidates</title>
        <p>The candidate answers are generated based on the identified optimal subgraph. To
achieve this goal, graph alignment, beam search, neural networks, computing semantic
similarity and other technologies should be examined.
4.3</p>
      </sec>
      <sec id="sec-4-3">
        <title>Answer selection</title>
        <p>According to the generated answers, the more accurate response is selected. Some
techniques such as neural networks, reinforcement learning, comparing embeddings of
answers to the natural question can be leveraged to select the more pertinent answer.
5</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Evaluation Plan</title>
      <p>
        In order to evaluate how the proposed approach outperforms the available
state-of-theart approaches, the benchmark datasets including WebQuestionsSP [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] and MetaQA
[22] would be applied. The purpose of this evaluation is to substantiate the claim to be
able to improve answering multi-hop questions over knowledge graphs. The evaluation
would be carried out using metrics such as recall, precision and F1-score. For the
practical evaluation, the proposed approach can be applied in the WordLiftNG project and
KI-Net project.
6
      </p>
    </sec>
    <sec id="sec-6">
      <title>Conclusion</title>
      <p>QA over KGs has emerged as a significant research area over the last few years. KG
QA aims to automatically answer natural language questions via well-structured
relation information between entities stored in a KG. This study leverages various
techniques in various fields including KGs, graph alignment, natural language processing
and neural networks to provide a new guided approach which consists of three main
steps: identification of optimal subgraphs, creation of candidates and answer selection.
Experiments are to be performed to show that the proposed approach is competitive
compared to the state-of-the-art.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgements</title>
      <p>This research has been supported by the project WordLiftNG within the Eureka,
Eurostars Programme (grant agreement number 877857 with the Austrian Research
Promotion Agency (FFG)) and the project KI-NET within the Interreg ̈Osterreich-Bayern
2014-2020 programme (grant agreement number AB 292). I would like to express my
gratitude to Assoc.-Prof. Dr. Anna Fensel for her support and insightful comments.
22. Zhang, Y., Dai, H., Kozareva, Z., Smola, A., Song, L.: Variational reasoning for question
answering with knowledge graph, In: Association for the advancement of artificial
Intelligence AAAI (2018).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Stroh</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mathur</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Question Answering Using Deep Learning</article-title>
          , https://cs224d.stanford.edu/reports/StrohMathur.pdf,
          <source>last accessed 1.6</source>
          .
          <issue>21</issue>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Lehmann</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Isele</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Jakob</surname>
          </string-name>
          , Jentzsch,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Kontokostas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Mendes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. N.</given-names>
            ,
            <surname>Hellmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Morsey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Kleef</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.V.</given-names>
            ,
            <surname>Auer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            and
            <surname>Bizer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            :
            <surname>DBpedia-A Large-Scale</surname>
          </string-name>
          ,
          <article-title>Multilingual Knowledge Base Extracted From Wikipedia</article-title>
          , Semantic Web,
          <volume>6</volume>
          , pp.
          <fpage>167</fpage>
          -
          <lpage>195</lpage>
          (
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Bollacker</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Evans</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Paritosh</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sturgem</surname>
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taylor</surname>
          </string-name>
          , J.:
          <article-title>Freebase: a collaboratively created graph database for structuring human knowledge</article-title>
          ,
          <source>In: the 2008 ACMSIGMOD International Conference on Management of Data</source>
          , pp.
          <fpage>1247</fpage>
          -
          <lpage>1250</lpage>
          (
          <year>2008</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Ait-Mlouk</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jiang</surname>
          </string-name>
          , L.:
          <article-title>KBot: A Knowledge Graph Based ChatBot for Natural Language Understanding Over Linked Data</article-title>
          ,
          <source>in IEEE Access</source>
          , vol.
          <volume>8</volume>
          , pp.
          <fpage>149220</fpage>
          -
          <lpage>149230</lpage>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Knowledge Graph Embedding Based Question Answering</article-title>
          ,
          <source>In: the Twelfth ACM International Conference on Web Search and Data Mining</source>
          , pp.
          <fpage>105</fpage>
          -
          <lpage>113</lpage>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6. WordLift New Generation, https://wordlift.io/ng/,
          <source>last accessed 1.6</source>
          .
          <issue>21</issue>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7. KI-NET:
          <article-title>AI-based optimization in production</article-title>
          , https://scch.at/en/das-projects-details/kinet, /,
          <source>last accessed 1.6</source>
          .21.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Fensel</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Akbar</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kärle</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Blank</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pixner</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gruber</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Knowledge Graphs for Online Marketing</article-title>
          and Sales of Touristic Services, Information,
          <volume>11</volume>
          (
          <issue>5</issue>
          ),
          <volume>253</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Qiu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jin</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Stepwise Reasoning for Multi-Relation Question Answering over Knowledge Graph with Weak Supervision</article-title>
          ,
          <source>In: the 13th International Conference on Web Search and Data Mining</source>
          , pp.
          <fpage>474</fpage>
          -
          <lpage>482</lpage>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Fu</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qiu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tang</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yu</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>A Survey on Complex Question Answering over Knowledge Base: Recent Advances and Challenges, ArXiv</article-title>
          , vol. abs/
          <year>2007</year>
          .13069 (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Abujabal</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yahya</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Riedewald</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weikum</surname>
          </string-name>
          , G.:
          <article-title>Automated Template Generation for Question Answering over Knowledge Graphs</article-title>
          ,
          <source>In: the 26th International Conference on World Wide Web</source>
          , pp.
          <fpage>1191</fpage>
          -
          <lpage>1200</lpage>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Mintz</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bills</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Snow</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jurafsky</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Distant supervision for relation extraction without labeled data</article-title>
          ,
          <source>In: the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing</source>
          , pp.
          <fpage>1003</fpage>
          -
          <lpage>1011</lpage>
          (
          <year>2009</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bedrax-Weiss</surname>
          </string-name>
          , T.,
          <string-name>
            <surname>Cohen</surname>
            ,
            <given-names>W.:</given-names>
          </string-name>
          <article-title>PullNet: Open do-main question answering with iterative retrieval on knowledgebases and text</article-title>
          ,
          <source>In: the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          , pp.
          <fpage>2380</fpage>
          -
          <lpage>2390</lpage>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Zhu</surname>
            , S., Cheng,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Su</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Knowledge-based question answering by tree-to-sequence learning</article-title>
          ,
          <source>Neurocomputing</source>
          , vol.
          <volume>372</volume>
          , pp.
          <fpage>64</fpage>
          -
          <lpage>72</lpage>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Reddy</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lapata</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Steedman</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Large-scale Semantic Parsing without Question-Answer Pairs, Transactions of the Association for Computational Linguistics</article-title>
          , pp.
          <fpage>377</fpage>
          -
          <lpage>392</lpage>
          (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Usbeck</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ngomo</surname>
            ,
            <given-names>A-CN.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Haarmann</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krithara</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Röderm</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Napolitano</surname>
          </string-name>
          , G.:
          <article-title>7th open challenge on question answering over linked data (qald-7</article-title>
          ), Semantic Web Challenges, pp.
          <fpage>59</fpage>
          -
          <lpage>69</lpage>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Trivedi</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Maheshwari</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dubey</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lehmann</surname>
          </string-name>
          , J.:
          <article-title>Lc-quad: A corpus for complex question answering over knowledge graphs</article-title>
          ,
          <source>The Semantic Web-ISWC</source>
          , pp.
          <fpage>210</fpage>
          -
          <lpage>218</lpage>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dai</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kozareva</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Smola</surname>
            ,
            <given-names>A. J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Song</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Variational reasoning for question answering with knowledge graph</article-title>
          ,
          <source>Thirty-Second AAAI Conference on Artificial Intelligence</source>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Yih</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>M.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>He</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gao</surname>
          </string-name>
          , J.:
          <article-title>Semantic Parsing via Staged Query Graph Generation: Question Answering with Knowledge Base, ACL (</article-title>
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Talmor</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Berant</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>The Web as a Knowledge-Base for Answering Complex Questions</article-title>
          ,
          <source>In NAACL-HLT</source>
          , pp.
          <fpage>641</fpage>
          -
          <lpage>651</lpage>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Yih</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Richardson</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Meek</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chang</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Suh</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>The value of semantic parse labeling for knowledge base question answering, In: the 54th Annual Meeting of the Association for Computational Linguistics</article-title>
          , vol.
          <volume>2</volume>
          , pp
          <fpage>201</fpage>
          -
          <lpage>206</lpage>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>