<!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>Implicit Knowledge Completion Method Using Relevance Calculation of Distributed Word Representations</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Sho Takishita</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Rafal Rzepka</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Kenji Araki</string-name>
          <email>arakig@ist.hokudai.ac.jp</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Faculty of Information Science and Technology, Hokkaido University</institution>
          ,
          <country country="JP">Japan</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>RIKEN AIP</institution>
          ,
          <country country="JP">Japan</country>
        </aff>
      </contrib-group>
      <fpage>60</fpage>
      <lpage>64</lpage>
      <abstract>
        <p>In this paper, we propose a method to automatically discover implicit knowledge for events. In recent approaches researchers calculate relevance between two events appearing in the same document from news articles using distributed representations for machine learning. Since such methods handle only explicitly written information, it is very difficult for a machine to, for example, automatically answer questions about context. We acquire temporal events and calculate their implicit relationship by relevance using distributed representation of words. Likewise, relevant places are also added by using similar algorithm to enrich text with implicit knowledge. Our proposed method utilizes raw text corpus, does not require prior knowledge, and is task-independent. Experiments were performed to show temporal and semantic naturalness of the proposed knowledge completion process.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>Experiences common to human beings allow them to exclude
obvious information during the process of generating and
understanding natural language. We unconsciously augment
missing contextual pieces using background (commonsense)
knowledge, and its scarcity remains one of the biggest
obstacles for artificial intelligence. For example, when we hear
“he took a shower” statement, usually occurring sub-events
or states as “he took off clothes” and “he wants to wash his
body”, “he is breathing”, “he is standing”, etc. are
obvious without saying to us, but not to machines lacking
similarly rich experiences. Although many methods for acquiring
commonsense knowledge have been proposed, they are
limited to simple knowledge units (concepts, “events” in this
paper) as Having a breakfast–HasSubevent–Reading a
newspaper [Speer and Havasi, 2012] which only partially contribute
to natural language understanding tasks and are not
sufficient for machine learning techniques dealing with longer
event chains impeding planning and predicting longer
behavioral patterns. Although new powerful, big text data-based
stochastic methods are being proposed [Wu et al., 2018], it
is rather difficult to sufficiently learn what is not explicitly
written. This phenomenon of omitting obvious details leads
also to difficulty in generating event sequences in natural
order limiting state of the art techniques to short-range
predictions as answering questions or choosing correct agents,
reasons or consequences in tasks such as Winograd Schema
Challenge [Levesque et al., 2012]. Current computing power
and increasing storage capacity allows enriching already
existing sentences with implicit knowledge, even if a simple
five word sentence becomes several times longer. This
research addresses two aspects of implicit knowledge
completion: a) automatic retrieval of information related to events
and calculating their order; b) automatic retrieval of
information about locatives – common places where usually an
event occurs. We propose a set of simple methods for both
generating longer event chains and adding implicit
knowledge which in future should not only lead to enhancing
machine learning in deeper understanding of natural languages
but also allow easier explainability of text-based decisions
and predictions which remains difficult for current
statistical approaches. In this paper we present our methods for
both combining event pairs into longer chains and the
evaluation performed on event chains consisting of four events.
The results show that our proposed method is able to
combine knowledge retrieved from other sentences and complete
implicit knowledge about places and events without a big loss
(0.29) of generality.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>Our aim is to automatically generate textual representation
of natural sequences of events similar to manually crafted
Schankian scripts [Schank and Abelson, 1977], a goal which
is yet to be reached due to the absence of implicit (tacit)
knowledge in sentences describing acts. We think that
eventually agreeable behavioral patterns will be collected
simultaneously also from other sensory input as vision [Vedantam
et al., 2015], however the text remains the easiest mean to
convey and manipulate world knowledge. Obtaining longer
patterns enhances reasoning, predicting following events and
discovering abnormalities, but existing methods utilize costly
annotations [Yao and Huang, 2018] or massive data-based
language models. Such models can generate highly natural
follow-ups to an input sentence via heavy use of
transformers and attention [Wu et al., 2018; McCann et al., 2018], but
the naturalness of output carries the same problem of omitting
facts obvious for humans. When applied to co-reference
analysis and discourse analysis, longer and enriched event
knowledge should allow to infer relations between actors, patients,
themes and other semantic roles more precisely, but to the
authors’ best knowledge no method extends script generation
beyond a pair of events. The problem of omitted
semantic details is clearly visible in highly contextual languages
as Japanese which is our choice for experiments. Similarly
to other languages, research on unsupervised generation of
event chains in Japanese language is limited to two elements,
e.g. plant seeds ! water soil (research examples are given
in a separate subsection). These methods acquire knowledge
from events appearing in the same sentence, but actions such
as “crossing a street” are rarely accompanied by sub-events
as “after the light went green” and “cars stopped and waited”
in one sentence. Since there are not many cases that three or
more events are included in one sentence, we decided to
combine pairs of events from various sentences into longer event
chains and extend zero-anaphora solutions for pronouns to
add location information. Most closely related research
examples on event extraction and completion are given below.
2.1</p>
      <sec id="sec-2-1">
        <title>Event Extraction and Completion (English)</title>
        <p>Several methods for event knowledge acquisition from texts
have been proposed, however they usually target languages
with fewer contextual omissions such as English. Probably
the closest approach to ours is proposed by Chambers and
Jurafsky [Chambers and Jurafsky, 2008] who use co-references
to acquire events related to specific subjects in an event chain
and calculate frequent event relations into a more general
event chain. However, they use texts with temporal
relationship annotations limiting their research to the set prepared
beforehand. Granroth and Stephen [Granroth-Wilding and
Clark, 2016] utilize data from [Chambers and Jurafsky, 2008]
to apply machine learning for calculating time series
relationship of two events. The evaluation is performed by predicting
an event in a chain after masking it. Recently, deep learning
methods have been used to detect events [Feng et al., 2018;
Tozzo et al., 2018] or recognize temporal relationship
between events [Lin et al., 2018] but they do not address
script-like event chains generation nor created implicit
knowledge completion.
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Event Extraction and Completion (Japanese)</title>
        <p>The above-mentioned problem is explained by Huang and
Kurohashi [Huang and Kurohashi, 2017] who also limit their
approach to one pair of events in an argument identification
task. Research on Japanese unsupervised event knowledge
acquisition is based on co-occurrence frequency and uses
temporal particles and conjunctions [Fujita et al., 2011], or
adds dependency relations and weights [Higashiyama et al.,
2017]. Abe et al. [Abe et al., 2008] acquired single events
from the Japanese Web corpus using bootstrapping. These
studies rely heavily on the boundaries of one sentence as the
retrieval condition, and simplicity of acquired events causes a
problem of being too general to be fairly evaluated by
evaluators whose imagination easily fills up contextual blanks.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Implicit Knowledge Completion Using</title>
    </sec>
    <sec id="sec-4">
      <title>Distributed Word Representations</title>
      <p>In this session, we describe our algorithm for event chain
construction and implicit knowledge completion. Its key
modules include temporal event extraction, events relevance
calculation, implicit event knowledge concatenation and implicit
knowledge complementation.
3.1</p>
      <sec id="sec-4-1">
        <title>Task Description</title>
        <p>First, I will explain the task of this paper in knowledge
construction. The goal of this time is to build a highly natural
event chain to understand human behavior. Extracting
timeseries relationships for the web corpus and combining them,
we construct an event chain. In addition to that, it is
challenging to embed the place where the action is performed to event
knowledge, and mechanically embed information that is not
specified.
3.2</p>
      </sec>
      <sec id="sec-4-2">
        <title>Temporal Event Pair Extraction</title>
        <p>In the first step, temporal event pairs are extracted from a
blog corpus [Ptaszynski et al., 2012]. We assumed that the
order of experiences described in blog texts naturally
represents time series, and we retrieve basic event pairs ordered
accordingly with verb phrase appearance. For example, in
the case of sentence “They were reading articles and writing
blogs.”, the module acquires a pair “read article(s) ! write
blog(s)” (Japanese does not distinguish singular from plural).
3.3</p>
      </sec>
      <sec id="sec-4-3">
        <title>Events Relevance Calculation</title>
        <p>Events retrieved from a noisy raw corpus naturally include
semantically irrelevant data. To tackle this problem we
calculate relevance between the events distributed word represent
and acquire semantically related words between events. The
relevance calculation is shown in Equation (1).</p>
        <p>PnN=01 cosine(WAm; WBn)
similarity(WAm) =
N
For the set A of words included in event A and the word
WAm, the set B of words included in event B and the word
WBn (WAm is the mth word of word set A and WBn is the
nth word of word set B, N is word count of word set B).
The relevance is calculated by Equation (1) and a word is
acquired if the relevance is higher than the experimentally set
threshold R. The relevance value of a word not included in
the distributed representation is set to 0.
(1)
3.4</p>
      </sec>
      <sec id="sec-4-4">
        <title>Combining Event Pairs</title>
        <p>In this module, event pairs are combined and event chains are
constructed. By retrieving events from not only within the
same documents but also from all remaining documents, we
were able to acquire implicit event candidates which do not
appear in a single sentence. When event B of event pair AtoB
and event C of event pair CtoD are highly relevant, event B
and event C are considered likely to occur in the same
situation, and to appear in a common chains of acts. Therefore, we
calculate the semantic relevance between each event pair and
all remaining ones using Equation (2), and event chains are
generated by linking event pairs when the relevance is higher
than threshold Rbc.</p>
        <p>similarity(EventA; EventB)
=</p>
        <p>PmM=01 PnN=01 cosine(WAm; WBn)</p>
        <p>M N
This threshold is calculated as follows. First, the relevance
between events B and C is calculated to determine whether
there is a semantic connection between these two events.
Next, the degree of relevance between events AC, AD, BC,
BD, is calculated. This condition is used to prevent
generating unrelated event chains when only relevance between
events B and C is calculated. Therefore, if relevance for all
pairs is higher than thresholds Rbc , Rac , Rad , Rbd , an event
chain is generated.
3.5</p>
      </sec>
      <sec id="sec-4-5">
        <title>Implicit Knowledge Completion</title>
        <p>A generated event is limited to verb phrase containing an
object, but other information as actor, place or tool are
omitted. As described in Introduction, we also aim at
simulating implicit knowledge completion unconsciously processed
by humans. For the first step of this simulation, we chose
adding locations and by calculating relevance between events
and places included in each event and by setting thresholds
we attempted to generate most possible places for every
generated event chain. A formula for a location completion is
shown in Equation (3).
(2)
similarity(Wplace; Event) =
PnN=01 cosine(Wplace; Wn)</p>
        <p>N
(3)</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Performance Evaluation</title>
      <p>We performed a manual evaluation of the results obtained in
each process using online survey. Three graduate students in
their twenties (native speakers of Japanese) evaluated
generated event pairs and chains for generality and naturalness of
semantic relations.</p>
      <p>level of generality in event chains
Generality level is evaluated from “commonly occurring” to
“impossible” (1 to 5 on the Likert scale). Both event chains
and event completion are evaluated with the same method, as
well as the relevance of each event pair in the acquired event
chain.</p>
      <p>naturalness of semantic relationship between events
Identical 1-5 using the Likert scale was used. In addition, we
also evaluate all events combinations.</p>
      <p>generality level of location completion
Automatically added locations for event pairs and event
chains were evaluated for generality in a given place on 1-5
Likert scale.</p>
      <p>In this research we use Word2vec [Mikolov et al., 2013]
trained on Wikipedia [Suzuki et al., 2016] and
ConceptNet Numberbatch [Speer et al., 2017] for word embeddings.
Since Word2vec learns from sentences, it depends on the
cooccurrences within the text. On the other hand, ConceptNet
Numberbatch embeddings are based on node distances from
commonsense knowledge ontology ConceptNet represented
as a knowledge graph containing created manually facts. We
compare effectiveness of both distributed word
representations.
4.1</p>
      <sec id="sec-5-1">
        <title>Dataset</title>
        <p>In order to acquire the event knowledge, we use Japanese
web blog corpus YACIS[Ptaszynski et al., 2012] containing
309,765 articles. If two events occur in one article and their
semantic relevancy is confirmed, they are treated as an event
pair. From the corpus, we acquire two event pairs from all
articles preserving their chronological order, and an event chain
is generated from those pairs. To remove noisy pairs we used
experimentally set the initial AB pair retrieval threshold to
0.3, deleted stopwords and events had to contain verb phrases.
The table 1 shows the evaluation results for both embedding
models used for calculations.</p>
        <p>Modelsnpart
Event chains generated from retrieved temporal events have
been evaluated. Twenty event chains which had places added
in the completion process were chosen randomly but
presented without locations. The thresholds were different for
each embedding model, and they were set experimentally. In
addition to the overall generality of the event chain,
naturalness of semantic relationship between the events was judged.
The results are shown in Table 2.
4.3</p>
      </sec>
      <sec id="sec-5-2">
        <title>Generality of Implicit Knowledge Completion</title>
        <p>Location automatically added to acquired event pairs and
event chain has been evaluated. Candidate place words for
completion were restricted to ones a) included in the place
category in the dictionary of JUMAN++[Morita et al., 2015],
morphological analyzer for Japanese, and b) included in
ConceptNet Numberbatch. We added locations to a) event pairs
AB and CD that we previously acquired from text and b) to
event chains that were generated. Generality of both cases
was evaluated and the results are shown in Table 3.
5</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Results and Conclusions</title>
      <p>From the experiment results, the generality of the event pairs
which do not appear in the same sentence during chain
construction appeared as high as the pairs retrieved from a
single sentence. As expected, the average evaluation score of
event chains was lower (0.29 point) than event pairs. This
was caused by cases when one of events in an event pair
was unnatural and overall evaluation score for the whole
event chain automatically decreased. Experimental results
also show that knowledge completion (with “place” as an
example) achieved a lower degree of semantic relevance than a
chain without common location added. However, in our
opinion, tacit knowledge completion could lead to enriching
machine understanding of situations through more exact context
information. This is difficult to obtain when human
annotators implicitly understand an event and their evaluation is less
precise. The more information is given to evaluator, the
evaluation becomes stricter, which can improve the difficult task
of common sense evaluation.</p>
      <p>In this paper, we proposed an event generation and
completion method which, due to distributed word representation,
does not depend on word frequency or temporal connectors
for calculating semantic relation among events used in
previous works. Furthermore, by automatic addition of place
information to event chains we managed to enrich contextual
knowledge about an event, trying to mimic implicit
knowledge augmentation known from human thinking process.
6</p>
    </sec>
    <sec id="sec-7">
      <title>Future work</title>
      <p>In near future we plan to augment more implicit knowledge
considering not only place information, but also other
semantic roles, sentiments or social relations. We are also
experimenting with automatic generation of script labels for event
chains obtained in this research. We will also utilize machine
learning for extending number of chains beyond four event
pairs and for enriching implicit knowledge by generative
approaches. If a rich completion is successful, we want to
compare efficiency of language models trained on natural texts
and the same text enriched by our completion methods.
7</p>
    </sec>
    <sec id="sec-8">
      <title>Acknowledgements</title>
      <p>This work was supported by JSPS KAKENHI Grant Number
17K00295.
Bente Maegaard, Joseph Mariani, Jan Odijk, and Stelios
Piperidis, editors, Proceedings of the Eight International
Conference on Language Resources and Evaluation
(LREC’12), Istanbul, Turkey, may 2012. European
Language Resources Association (ELRA).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [Abe et al.,
          <year>2008</year>
          ]
          <string-name>
            <given-names>Shuya</given-names>
            <surname>Abe</surname>
          </string-name>
          , Kentaro Inui, and
          <string-name>
            <given-names>Yuji</given-names>
            <surname>Matsumoto</surname>
          </string-name>
          .
          <article-title>Acquiring event relation knowledge by learning cooccurrence patterns and fertilizing cooccurrence samples with verbal nouns</article-title>
          .
          <source>In Proceedings of the Third International Joint Conference on Natural Language Processing: Volume-I</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <source>[Chambers and Jurafsky</source>
          , 2008]
          <string-name>
            <given-names>Nathanael</given-names>
            <surname>Chambers</surname>
          </string-name>
          and
          <string-name>
            <given-names>Dan</given-names>
            <surname>Jurafsky</surname>
          </string-name>
          .
          <article-title>Unsupervised learning of narrative event chains</article-title>
          .
          <source>Proceedings of ACL-08: HLT</source>
          , pages
          <fpage>789</fpage>
          -
          <lpage>797</lpage>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [Feng et al.,
          <year>2018</year>
          ]
          <string-name>
            <given-names>Xiaocheng</given-names>
            <surname>Feng</surname>
          </string-name>
          , Bing Qin, and
          <string-name>
            <given-names>Ting</given-names>
            <surname>Liu</surname>
          </string-name>
          .
          <article-title>A language-independent neural network for event detection</article-title>
          .
          <source>Science China Information Sciences</source>
          ,
          <volume>61</volume>
          (
          <issue>9</issue>
          ):
          <fpage>092106</fpage>
          ,
          <string-name>
            <surname>Aug</surname>
          </string-name>
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [Fujita et al.,
          <year>2011</year>
          ]
          <string-name>
            <given-names>Motoyasu</given-names>
            <surname>Fujita</surname>
          </string-name>
          , Rafal Rzepka, and
          <string-name>
            <given-names>Kenji</given-names>
            <surname>Araki</surname>
          </string-name>
          .
          <article-title>Evaluation of utterances based on causal knowledge retrieved from blogs</article-title>
          .
          <source>In Proceedings of the International Conference Artificial Intelligence and Soft Computing (ASC</source>
          <year>2011</year>
          ), pages
          <fpage>294</fpage>
          -
          <lpage>299</lpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <source>[Granroth-Wilding and Clark</source>
          , 2016]
          <article-title>Mark GranrothWilding and Stephen Clark. What happens next? event prediction using a compositional neural network model</article-title>
          .
          <source>In Thirtieth AAAI Conference on Artificial Intelligence</source>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [Higashiyama et al.,
          <year>2017</year>
          ]
          <string-name>
            <given-names>Shohei</given-names>
            <surname>Higashiyama</surname>
          </string-name>
          , Kunihiko Sadamasa, Takashi Onishi, and
          <string-name>
            <given-names>Yotaro</given-names>
            <surname>Watanabe</surname>
          </string-name>
          .
          <article-title>Event relation acquisition using dependency patterns and confidence-weighted co-occurrence statistics</article-title>
          .
          <source>In 2017 Federated Conference on Computer Science and Information Systems (FedCSIS)</source>
          , pages
          <fpage>339</fpage>
          -
          <lpage>345</lpage>
          . IEEE,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <source>[Huang and Kurohashi</source>
          , 2017]
          <article-title>Yin Jou Huang</article-title>
          and
          <string-name>
            <given-names>Sadao</given-names>
            <surname>Kurohashi</surname>
          </string-name>
          .
          <article-title>Improving shared argument identification in japanese event knowledge acquisition</article-title>
          .
          <source>In Proceedings of the Events and Stories in the News Workshop</source>
          , pages
          <fpage>21</fpage>
          -
          <lpage>30</lpage>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [Levesque et al.,
          <year>2012</year>
          ]
          <string-name>
            <given-names>Hector</given-names>
            <surname>Levesque</surname>
          </string-name>
          , Ernest Davis, and
          <string-name>
            <given-names>Leora</given-names>
            <surname>Morgenstern</surname>
          </string-name>
          .
          <article-title>The winograd schema challenge</article-title>
          .
          <source>In Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <surname>[Lin</surname>
          </string-name>
          et al.,
          <year>2018</year>
          ]
          <string-name>
            <given-names>Chen</given-names>
            <surname>Lin</surname>
          </string-name>
          , Timothy
          <string-name>
            <surname>Miller</surname>
            , Dmitriy Dligach, Hadi Amiri, Steven Bethard, and
            <given-names>Guergana</given-names>
          </string-name>
          <string-name>
            <surname>Savova</surname>
          </string-name>
          .
          <article-title>Self-training improves recurrent neural networks performance for temporal relation extraction</article-title>
          .
          <source>In Proceedings of the Ninth International Workshop on Health Text Mining and Information Analysis</source>
          , pages
          <fpage>165</fpage>
          -
          <lpage>176</lpage>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <surname>[McCann</surname>
          </string-name>
          et al.,
          <year>2018</year>
          ]
          <string-name>
            <given-names>Bryan</given-names>
            <surname>McCann</surname>
          </string-name>
          , Nitish Shirish Keskar, Caiming Xiong, and Richard Socher.
          <article-title>The natural language decathlon: Multitask learning as question answering</article-title>
          .
          <source>arXiv preprint arXiv:1806.08730</source>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [Mikolov et al.,
          <year>2013</year>
          ]
          <string-name>
            <given-names>Tomas</given-names>
            <surname>Mikolov</surname>
          </string-name>
          , Kai Chen, Greg Corrado, and
          <string-name>
            <given-names>Jeffrey</given-names>
            <surname>Dean</surname>
          </string-name>
          .
          <article-title>Efficient estimation of word representations in vector space</article-title>
          .
          <source>CoRR, abs/1301.3781</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [Morita et al.,
          <year>2015</year>
          ]
          <string-name>
            <given-names>Hajime</given-names>
            <surname>Morita</surname>
          </string-name>
          , Daisuke Kawahara, and
          <string-name>
            <given-names>Sadao</given-names>
            <surname>Kurohashi</surname>
          </string-name>
          .
          <article-title>Morphological analysis for unsegmented languages using recurrent neural network language model</article-title>
          .
          <source>In Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing</source>
          , pages
          <fpage>2292</fpage>
          -
          <lpage>2297</lpage>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [Ptaszynski et al.,
          <year>2012</year>
          ]
          <string-name>
            <given-names>Michal</given-names>
            <surname>Ptaszynski</surname>
          </string-name>
          , Pawel Dybala, Rafal Rzepka, Kenji Araki, and
          <string-name>
            <given-names>Yoshio</given-names>
            <surname>Momouchi</surname>
          </string-name>
          .
          <article-title>Yacis: A five-billion-word corpus of Japanese blogs fully annotated with syntactic and affective information</article-title>
          .
          <source>In Proceedings of The AISB/IACAP World Congress</source>
          , pages
          <fpage>40</fpage>
          -
          <lpage>49</lpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <source>[Schank and Abelson</source>
          , 1977]
          <string-name>
            <given-names>R.</given-names>
            <surname>Schank</surname>
          </string-name>
          and
          <string-name>
            <given-names>R.</given-names>
            <surname>Abelson</surname>
          </string-name>
          .
          <article-title>Scripts, plans, goals and understanding: An inquiry into human knowledge structures</article-title>
          . Lawrence Erlbaum Associates, Hillsdale, NJ.,
          <year>1977</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <source>[Speer and Havasi</source>
          , 2012]
          <string-name>
            <given-names>Robert</given-names>
            <surname>Speer</surname>
          </string-name>
          and
          <string-name>
            <given-names>Catherine</given-names>
            <surname>Havasi</surname>
          </string-name>
          .
          <article-title>Representing general relational knowledge in conceptnet 5</article-title>
          . In Nicoletta Calzolari (Conference Chair), Khalid Choukri, Thierry Declerck, Mehmet Ug˘ur Dog˘an, [Speer et al.,
          <year>2017</year>
          ]
          <string-name>
            <given-names>Robyn</given-names>
            <surname>Speer</surname>
          </string-name>
          ,
          <source>Joshua Chin, and Catherine Havasi. Conceptnet 5</source>
          .
          <article-title>5: An open multilingual graph of general knowledge</article-title>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [Suzuki et al.,
          <year>2016</year>
          ]
          <string-name>
            <given-names>Masatoshi</given-names>
            <surname>Suzuki</surname>
          </string-name>
          , Koji Matsuda, Satoshi Sekine, Naoaki Okazaki, and
          <string-name>
            <given-names>Kentaro</given-names>
            <surname>Inui</surname>
          </string-name>
          .
          <article-title>Multilabel classification of wikipedia articles into fine-grained named entity types</article-title>
          .
          <source>In Proceedings of the Twenty-second Annual Meeting of the Association for Natural Language Processing</source>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [Tozzo et al.,
          <year>2018</year>
          ]
          <string-name>
            <given-names>Alex</given-names>
            <surname>Tozzo</surname>
          </string-name>
          , Dejan Jovanovic, and
          <string-name>
            <given-names>Mohamed</given-names>
            <surname>Amer</surname>
          </string-name>
          .
          <article-title>Neural event extraction from movies description</article-title>
          .
          <source>In Proceedings of the First Workshop on Storytelling</source>
          , pages
          <fpage>60</fpage>
          -
          <lpage>66</lpage>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [Vedantam et al.,
          <year>2015</year>
          ]
          <string-name>
            <given-names>Ramakrishna</given-names>
            <surname>Vedantam</surname>
          </string-name>
          , Xiao Lin, Tanmay
          <string-name>
            <surname>Batra</surname>
            , C. Lawrence Zitnick, and
            <given-names>Devi</given-names>
          </string-name>
          <string-name>
            <surname>Parikh</surname>
          </string-name>
          .
          <article-title>Learning common sense through visual abstraction</article-title>
          .
          <source>In Proceedings of the 2015 IEEE International Conference on Computer Vision</source>
          (ICCV),
          <source>ICCV '15</source>
          , pages
          <fpage>2542</fpage>
          -
          <lpage>2550</lpage>
          , Washington, DC, USA,
          <year>2015</year>
          . IEEE Computer Society.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <surname>[Wu</surname>
          </string-name>
          et al.,
          <year>2018</year>
          ]
          <string-name>
            <given-names>Xing</given-names>
            <surname>Wu</surname>
          </string-name>
          , Shangwen Lv, Liangjun Zang, Jizhong Han, and
          <string-name>
            <given-names>Songlin</given-names>
            <surname>Hu</surname>
          </string-name>
          .
          <article-title>Conditional BERT contextual augmentation</article-title>
          .
          <source>CoRR</source>
          , abs/
          <year>1812</year>
          .06705,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <source>[Yao and Huang</source>
          , 2018]
          <string-name>
            <given-names>Wenlin</given-names>
            <surname>Yao</surname>
          </string-name>
          and
          <string-name>
            <given-names>Ruihong</given-names>
            <surname>Huang</surname>
          </string-name>
          .
          <article-title>Temporal event knowledge acquisition via identifying narratives</article-title>
          .
          <source>arXiv preprint arXiv:1805.10956</source>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>