<!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>A Neural-based model to Predict the Future Natural Gas Market Price through Open-domain Event Extraction</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Minh Triet Chau</string-name>
          <email>s6michau@uni-bonn.de</email>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Diego Esteves</string-name>
          <email>diego.esteves@farfetch.com</email>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jens Lehmann</string-name>
          <email>jens.lehmann@cs.uni-bonn.de</email>
          <email>jens.lehmann@iais.fraunhofer.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Enterprise Information Systems</institution>
          ,
          <addr-line>Fraunhofer IAIS, Dresden</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Farfetch</institution>
          ,
          <addr-line>Porto</addr-line>
          ,
          <country country="PT">Portugal</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>University of Bonn, SDA Research</institution>
          ,
          <addr-line>Bonn</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>We propose an approach to predict the natural gas price in several days using historical price data and events extracted from news headlines. While previous methods depend only on the appearance of verbs in the headlines, our event extraction detects not only the occurrence of phenomena but also the changes of attribution and characteristics. Moreover, instead of using sentence embedding as a feature, we use every word of the extracted events, encode and organize them before feeding to the learning models. Empirical results show favorable results, in terms of prediction performance, money saved and scalability.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Accurate market forecasting is a major advantage in business. However, there
have been controversies about its feasibility in the academic world. Examining
the stock market, [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] proposes the E cient Market Hypothesis (EMH) which
states that all information is re ected through the price. Moreover, regardless
of how precise a price prediction is, once one acts on it, the price would change,
invalidating the original prediction. This theory is also supported by Burton
Malkiel in [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ]. Later on, his position had changed in [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], claiming that there
are certain patterns of the market that investors may bene t from, albeit quickly
volatile. Moreover, [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] states that while the arguments for or against EMH are
far from over, it is bene cial to nd a more useful theory and prediction method
than its alternatives. In this view, devising market prediction methods can be
seen as a race to outperform other methods. Unlike in the stock market, there
are few attempts on commodities market prediction [
        <xref ref-type="bibr" rid="ref40">40</xref>
        ]. However, important
commodities such as oil, gas, and gold are getting more sensitive to
macroeconomic news and surprise interest rate changes [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ]. Inspired by the sensitivity of
the stock market to the mood of news, most methods use positiveness or
negativeness of news as a pointer for prediction. We argue that the market is not
only sentimental-driven but also event-driven. Furthermore, we aim to solve the
scarcity of unannotated and annotated news data by using public data. Most
researchers [
        <xref ref-type="bibr" rid="ref1 ref20 ref27 ref33 ref4">1,4,20,27,33</xref>
        ] have to either purchase or manually annotate their news
datasets, which lead to di culties in experimenting with long price series. To
those ends, we rely on headlines from public news API and propose an approach
to both lter irrelevant headlines and address the event extraction preliminary
in [
        <xref ref-type="bibr" rid="ref31">31</xref>
        ]. Both price and text are fed to a 3D Convolution Neural Network [
        <xref ref-type="bibr" rid="ref36">36</xref>
        ] to
learn the correlation between events and the market movement.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Related works</title>
      <p>
        In this section, we review the news-market relationship and existing benchmarks
of market prediction tasks. In Table 1, we highlight their temporal evolution and
henceforth categorize them by their input features and architecture.
[
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] shows that (1) negative news a ects the market more than positive news,
and (2) the perception of positive or negative changes over time. Analogously,
there has been a growing body of NLP works concerning sentimental
analyzing [
        <xref ref-type="bibr" rid="ref10 ref26 ref29 ref38">10, 26, 29, 38</xref>
        ]. [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] used dictionary-based and phrase analysis to classify the
3 The code repository of our work is at https://github.com/minhtriet/gas market
sentiment of news. They observed that the stock market is more volatile on days
with relevant news than days with irrelevant news or without news. Using data
from nancial news from Reuters, [
        <xref ref-type="bibr" rid="ref40">40</xref>
        ] lters by topic code and their manual
BOW then employs [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] to calculate the volatility of the market. They con rm
the e ect of the news on the crude oil market.
2.2
      </p>
      <sec id="sec-2-1">
        <title>Price prediction</title>
        <p>
          Price as the only feature In the stock market, a common task is to predict
and maximize the return by predicting the selling and buying time for a stock.
Models being used come from the auto-regressive model [
          <xref ref-type="bibr" rid="ref3 ref34">3, 34</xref>
          ] to Feed-forward
Neural Network [
          <xref ref-type="bibr" rid="ref20 ref33">20,33</xref>
          ]. The di erence between them is that [
          <xref ref-type="bibr" rid="ref33">33</xref>
          ] uses the genetic
algorithm, rather than the gradient method, to train the weight of the network.
Another method is Hidden Markov Models [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]. [
          <xref ref-type="bibr" rid="ref32 ref37">32,37</xref>
          ] claim that RNN is superior
to feed-forward network. [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] use autoencoder in combination with RNN. [
          <xref ref-type="bibr" rid="ref35">35</xref>
          ]
proposes the use of bilinear layer and temporal attention mechanism.
News-based prediction The line of work above inspired the approach to use
news headlines to predict the increment or decline of the market. All the
methods in this section [
          <xref ref-type="bibr" rid="ref11 ref12 ref19 ref25">11, 12, 19, 25</xref>
          ] use the now unpublished nancial news from
Reuters and Bloomberg. [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ] fuse news and prices to predict price increments
or decrements. Their model is Bidirectional Recurrent Network with GRU gates
with prebuilt word embedding. [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] used Reverb to split sentences into Subjects,
Verb, Objects, and concatenate them in di erent ways and feed to an SVM
and a Neural Network. [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ] predict price delta in two consecutive days. They
de ned seed words, which may serve as indicators of market movements, then
use word embedding to select the other 1000 words that are closest to these
seed words. They also handcrafted features including TF-IDF score, polarity
score and categorical-tag (e.g, new-product, acquisition, price-rise, and
price-drop). [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] created a set of features by rst getting the result (Subject,
Verb, Obj), casting the Verb to its class using Verbnet [
          <xref ref-type="bibr" rid="ref30">30</xref>
          ], then one-hot encode
all subjects, objects, and verbs, then de ne a set of concatenations of objects
and verbs as features. [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] follows the same approach, but use word embedding
instead. [
          <xref ref-type="bibr" rid="ref27">27</xref>
          ] uses part of speech to extract events and classify events into 23
classes of events using [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ] and further subclasses (e.g. unveils - unveiled
announces for class Product).
3
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Event extraction and embedding</title>
      <p>
        Event extraction and semantic relationships are closely related. [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ] proposes
leveraging known relationships from databases (Freebase, DBPedia, YAGO) to
classify a new relationship. However, the same entities can have di erent, even
opposite relationship in news data. Another approach is using o -the-shelf IE
frameworks (OpenIE, Reverb) for relation extraction as seen in [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. Most
methods rely on de ned classes of events [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], which may not guarantee to cover every
possible future event. Note that it is tricky to measure the accuracy of an open
domain relation extraction method due to the high expense of manual
annotation. One attempt is [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ], who annotate on a few hundred tweets or Wikipedia
sentences.
      </p>
      <p>As a motivation example, we use two news headlines, in which the events are
underlined.</p>
      <p>
        Cuadrilla pauses mining operations after tremor in Lancashire site.
(1)
With natural gas plentiful and cheap, carbon capture projects stumble. (2)
Although the two events above do not contain any verbs, they convey an
occurrence of a phenomenon in (1) or an attribute in (2). However, both
verbbased methods and Reverb could not extract any relation from these headlines.
Conclusively, it is instinctive for humans to understand events, but elusive to
obtain the same level of understanding with a machine. [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] classi es three
different methods for event extraction (1) Data-driven which applies statistics to
extract patterns, (2) Knowledge-driven which applies syntactic and schema and
(3) Hybrid. According to their taxonomy, ours is a hybrid method, which leans
towards the data-driven approach. For the sake of generalization, we de ne an
event as a clause or phrase that conveys the occurrence of a phenomenon, an
act or a change of an attribute.
      </p>
      <p>
        Inspired by [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], we de ne a pipeline (Fig. 1a) to identify an event indicator
using linguistic features, WordNet and a word sense disambiguation tool [
        <xref ref-type="bibr" rid="ref41">41</xref>
        ],
which classi es lexical meaning of words from a sentence according to WordNet
taxonomy. We depict the amount comparison of di erent methods in Fig. 1b.
      </p>
      <p>A common method to embed a sentence is using Sentence embedding. spaCy
and fasttext treat an embedding of a sentence as a normalized or unnormalized
average of its words' embedding. While it helps in some cases, two sentences
with opposite meanings can have a small distance in the embedding space for
just sharing a large number of similar words. We x that by leveraging the even
extraction pipeline above and concatenating the embedding of every word to
form a representation of an event.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Experiments and Evaluation</title>
      <p>In this section, we aim to test the predictive power of di erent models as well as
applying them to a mock trading scenario to measure the amount of money saved.
Before getting to the details, it may be bene cial to understand the structure of
the natural gas market. It consists of the weekday-only future market in which
an order is delivered from three months to three years, and the daily spot market
in which an order is delivered on the very next day.
4.1</p>
      <sec id="sec-4-1">
        <title>Data description</title>
        <p>Our training data includes price series from Bayer AG suppliers (Fig. 2a). The
future prices and spot price series are from 2 July 2007 to 12 October 2018 and
False</p>
        <p>End
Is POS a Verb?</p>
        <p>True</p>
        <p>Add to</p>
        <p>Event List
Start</p>
        <p>Sentence
Words left in
sentence?</p>
        <p>True
Clause and
phrase
extraction(*)</p>
        <p>No
False POS filtering</p>
        <p>WordNet
True Disambiguation</p>
        <p>(**)
(a)</p>
        <p>True
Sense filtering
False
(b)
from 2 June 2011 to 18 October 2018, respectively. We use the oldest 60% of the
future price as the training data. The rest 40% and Spot Market price series are
test data.</p>
        <p>
          Corresponding news headlines are from The New York Times4 (NYT), The
Guardian5 (TG) and The Financial Times6 (FT) published at the corresponding
time with the aforementioned price data. All the news providers allow ltering
news within a time-range. TG and FT require a keyword (we chose "gas") and
return ltered results while NYT requires downloading the whole dataset. Note
that FT and TG return a headline if the keyword is in the article's body.
Consequently, not every headline in the corpus contains the word "gas" (Table 2).
We use the same keyword to lter the NYT dataset and name it NYTf (NYT
filtered), the un ltered dataset is NYTu (NYT un ltered). An overview of the
news dataset is in Fig. 2b.
4 https://developer.nytimes.com, Accessed: 2020-03-30
5 https://open-platform.theguardian.com, Accessed: 2020-03-30
6 https://developer.ft.com/portal, Accessed: 2020-03-30
Date
2007-04-27
Weak baselines Let i; j be two dates, i &lt; j, pk the price of gas on day k,
Yij 2 f0; 1g in which 0 means pi pj and 1 otherwise. We use chained CRF with
the GloVe embedding of ltered news on day i to nd Yij . We rst reimplement
and compare [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] (See Table 1) with CRF and with ARIMA [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] without seasonal.
The results are in Table 3a. [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] has worse result than in the original. Our
hypothesis is that they used nancial news dataset, while we just used a simple
keyword lter.
        </p>
        <p>
          Strong baseline We feed the price and sentence embedding of ltered news
using spaCy small English (Context tensor trained on [
          <xref ref-type="bibr" rid="ref39">39</xref>
          ], 300-d embedding
vector) and large English model (trained on both [
          <xref ref-type="bibr" rid="ref39">39</xref>
          ] and Common Crawl,
300d embedding vector, 685,000 vocabulary) of spaCy to a stacked LSTM structure
as a strong baseline. Learning rate is 1 10 4, dropout rate is 0.5, the LSTM
layers have [
          <xref ref-type="bibr" rid="ref32">128, 32</xref>
          ] neurons. The overview of the structure is depicted in Fig. 3.
4.3
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>Event embedding with 3D Convolution (C3D)</title>
        <p>
          We apply C3D [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ] to a sequence of tensors, each of them being an embedding of
the price and events of each day (Fig. 4). The event extraction pipeline (Fig. 1a)
returns a list of event strings. For each string, we remove the stop words, then
convert the rest to their stemming. Words that appear in more than 90% or
less than three headlines are removed. In total, we have a vocabulary size of
Spot Price
        </p>
        <p>Future Price
20
10
0
80
60
40
20
02008-01-01
2010-01-01
2012-01-01
2014-01-01
2016-01-01</p>
        <p>2018-01-01
(a) Overview of price data(e/m3)
(b) Number of words
in headlines distribution.</p>
        <p>Left to right: TG, FT,
NYTf, NYTu
2394 words + 1 OOV symbol for the training set. The next step is to nd the
tensor dimension. For our dataset, we nd that limiting the number of events
each day to 5 and words for each event to 15 covers the majority of our dataset.
However, one could experiment more with these hyper-parameters. If a day has
less than 5 events, an OOV vector is inserted into a random position to ensure
homogeneous dimensions. If an event is shorter than 15 words, we OOV right
pad it. Otherwise, its 15 rst words are taken as input. We rst t a standard
scaler on the price of the training set, then use the same scaler to transform
the price of the test set. The size of the kernel is 3 3 (300 + 1). We use
SGD, learning rate 1 10 6, with Nesterov Momentum, decay rate 1 10 7.
The experiment results are in Table 4. The noises from the un ltered dataset
contribute to the huge performance margin. Even within the ltered dataset,
using only events instead of averaging the whole headlines helps to bring down
the MSE for the C3D method.
4.4</p>
      </sec>
      <sec id="sec-4-3">
        <title>Apply to mock trading</title>
        <p>Settings The goal is to buy 1200m3 of natural gas within D days. A daily goal
is 1200 m3, on day d the algorithm should have bought 12D00 d m3. If the algorithm</p>
        <p>
          D
does not buy on day d0, it must buy the neglected amount in the next purchase.
Given day d and prediction Y = fyd+1; yd+2:::; yd+10g from the model trained
with NYTf + TG + FT, if 8y 2 Y : pd &lt; y, buy immediately. The experiments
in di erent markets and time frames are in Fig. 5 and Table 5. To see if the
event extraction pipeline chooses the relevant words, we rank the words with
the highest TF-IDF score in Table 6. Due to their high loss in Table 3b, we
exclude [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] and ARIMA in this experiment.
        </p>
        <p>Result analysis Both methods decide to buy on 07 February 2012 (Fig. 5e
and Figure 5f) when the market reaches its peak at 40.27 e/m3. A query for
\natural gas" from 06 February 2012 to 08 February 20127 returns a handful
of results and does not show any news covering the shocking increment of this
market. We conclude that this movement went under the radar. In the case of
the sharp increment on 01 March 2018, there was news related to the matter,
but not in both of our ltered and un ltered news dataset.</p>
        <p>
          On a brighter note, in Fig. 5b and 5f, C3D is always able to buy when
the market is at the lowest peak (12 September 2018 in Future Market and 11
March 2012 in Spot Market). News headlines include "Energy price cap could
be a muddle that satis es no one", "Trump Administration Wants to Make It
Easier to Release Methane Into Air", "Republicans' tired remedy for rising gas
prices won't x anything", "California drivers are using a lot less gas than they
did in 2005". These decisions, however, do not save much money due to their
small volumes. It is also evident in the small amount the third last purchase in
Fig. 5b. Therefore, the amount of money saved may not be a strong performance
indicator. Approaches using reinforcement learning are surveyed in [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ], which
7 https://www.google.com/search?q=%22natural+gas%22+%2B+news&amp;tbs=cdr:
1,cd min:2/6/2012,cd max:2/8/2012
LSTM
        </p>
        <p>LSTM</p>
        <p>LSTM
Concatenation</p>
        <p>Concatenation</p>
        <p>Concatenation</p>
        <p>Concatenation
Embedding</p>
        <p>Embedding</p>
        <p>Embedding</p>
        <p>Embedding
Sentences 1 Price 1</p>
        <p>Sentences 2 Price 2</p>
        <p>Sentences 3 Price 3</p>
        <p>
          Sentences 4 Price 4
claims that RL delivers a substantive improvement on pro tability and forecast
accuracy. They also advocate for a combination of RL and deep neural networks.
(a) LSTM with Sentence embedding (Section 4.2) in Future Market 2018
(b) C3D with Event embedding (Section 4.3) in Future Market 2018
(c) LSTM with Sentence embedding (Section 4.2) in Spot market 2018
(d) C3D with Event embedding (Section 4.3) in Spot Market 2018
(e) Stacked LSTM with Sentence embedding (Section 4.2) in Spot Market 2012
(f) C3D with Event embedding (Section 4.3)in Spot Market 2012
We proposed a new method to predict the natural gas price. Instead of averaging
the embedding vectors, we extract and organize events from news and reshape
them into 3D tensors. A limitation of our method is the reliance on the window
approach for prediction. It is tricky to determine the length of a window that
includes all events that have e ects on the price of a speci c day. An alternative
is using a chain of linked events, proposed in [
          <xref ref-type="bibr" rid="ref31">31</xref>
          ]. Furthermore, our method
cannot take events that happen on a non-trading day into account due to the
absence of price data leading to the wrong dimension of input data. The news
headlines curation needs minimum collecting e orts. Transfer learning only
requires retraining on the last layers. Overall, our approach allows easier adaption
to di erent domains prediction with minimal changes. We compare the money
saved using our method and the average market price and prove its e ciency as
well as the importance of a better purchase strategy.
Acknowledgement We are immensely grateful to Dr. Bernard Sonnenschein
for his comments on an earlier version of the manuscript.
        </p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Aiello</surname>
            ,
            <given-names>L.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Petkos</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Martin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corney</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Papadopoulos</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Skraba</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Goker</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kompatsiaris</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jaimes</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Sensing trending topics in twitter</article-title>
          .
          <source>Trans. Multi</source>
          .
          <volume>15</volume>
          (
          <issue>6</issue>
          ),
          <volume>1268</volume>
          {1282 (Oct
          <year>2013</year>
          ). https://doi.org/10.1109/TMM.
          <year>2013</year>
          .
          <volume>2265080</volume>
          , https://doi.org/10.1109/TMM.
          <year>2013</year>
          .2265080
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Araki</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitamura</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Open-domain event detection using distant supervision</article-title>
          .
          <source>In: Proceedings of the 27th International Conference on Computational Linguistics</source>
          . pp.
          <volume>878</volume>
          {
          <fpage>891</fpage>
          .
          <article-title>Association for Computational Linguistics (</article-title>
          <year>2018</year>
          ), http://aclweb.org/ anthology/C18-1075
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Ariyo</surname>
            ,
            <given-names>A.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Adewumi</surname>
            ,
            <given-names>A.O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ayo</surname>
            ,
            <given-names>C.K.</given-names>
          </string-name>
          :
          <article-title>Stock price prediction using the arima model</article-title>
          .
          <source>In: 2014 UKSim-AMSS 16th International Conference on Computer Modelling and Simulation</source>
          . pp.
          <volume>106</volume>
          {
          <issue>112</issue>
          (March
          <year>2014</year>
          ). https://doi.org/10.1109/UKSim.
          <year>2014</year>
          .67
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Atzeni</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dridi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Reforgiato Recupero</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Fine-grained sentiment analysis on nancial microblogs and news headlines</article-title>
          . In: Dragoni,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Solanki</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Blomqvist</surname>
          </string-name>
          , E. (eds.) Semantic Web Challenges. pp.
          <volume>124</volume>
          {
          <fpage>128</fpage>
          . Springer International Publishing,
          <string-name>
            <surname>Cham</surname>
          </string-name>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Bao</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yue</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rao</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>A deep learning framework for nancial time series using stacked autoencoders and long-short term memory</article-title>
          . In: PloS one (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Betancourt</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rodr</surname>
            <given-names>guez</given-names>
          </string-name>
          , A.,
          <string-name>
            <surname>Boyd</surname>
          </string-name>
          , N.:
          <article-title>Modelling and prediction of nancial trading networks: An application to the NYMEX natural gas futures market</article-title>
          .
          <source>ArXiv</source>
          e-prints (
          <year>Oct 2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Boudoukh</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Feldman</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kogan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Richardson</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Which news moves stock prices? a textual analysis</article-title>
          .
          <source>Working Paper</source>
          <volume>18725</volume>
          , National Bureau of Economic Research (January
          <year>2013</year>
          ). https://doi.org/10.3386/w18725, http://www.nber.org/ papers/w18725
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Box</surname>
            ,
            <given-names>G.E.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jenkins</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          :
          <article-title>Time Series Analysis, Forecasting and Control</article-title>
          . HoldenDay, Inc.,
          <source>USA</source>
          (
          <year>1990</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>Christopher</given-names>
            <surname>Walker</surname>
          </string-name>
          , Stephanie Strassel,
          <string-name>
            <surname>J.M.K.M.</surname>
          </string-name>
          <article-title>: Ace 2005 multilingual training corpus (</article-title>
          <year>2015</year>
          ), https://catalog.ldc.upenn.edu/LDC2006T06
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Denil</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Demiraj</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kalchbrenner</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Blunsom</surname>
          </string-name>
          , P., de Freitas, N.:
          <article-title>Modelling, visualising and summarising documents with a single convolutional neural network</article-title>
          .
          <source>CoRR abs/1406</source>
          .3830 (
          <year>2014</year>
          ), http://arxiv.org/abs/1406.3830
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Ding</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Duan</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>Using structured events to predict stock price movement: An empirical investigation</article-title>
          .
          <source>In: Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          . pp.
          <volume>1415</volume>
          {
          <fpage>1425</fpage>
          .
          <article-title>Association for Computational Linguistics (</article-title>
          <year>2014</year>
          ). https://doi.org/10.3115/v1/
          <fpage>D14</fpage>
          -1148, http://aclweb.org/anthology/D14-1148
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Ding</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Duan</surname>
          </string-name>
          , J.:
          <article-title>Deep learning for event-driven stock prediction</article-title>
          .
          <source>In: Proceedings of the 24th International Conference on Arti cial Intelligence</source>
          . pp.
          <volume>2327</volume>
          {
          <fpage>2333</fpage>
          . IJCAI'15, AAAI Press (
          <year>2015</year>
          ), http://dl.acm.org/citation.cfm?id=
          <volume>2832415</volume>
          .
          <fpage>2832572</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Engle</surname>
            ,
            <given-names>R.F.</given-names>
          </string-name>
          :
          <article-title>Autoregressive conditional heteroscedasticity with estimates of the variance of united kingdom in ation</article-title>
          .
          <source>Econometrica</source>
          <volume>50</volume>
          (
          <issue>4</issue>
          ),
          <volume>987</volume>
          {
          <fpage>1007</fpage>
          (
          <year>1982</year>
          ), http: //www.jstor.org/stable/1912773
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Erosheva</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fienberg</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>La</surname>
            <given-names>erty</given-names>
          </string-name>
          , J.:
          <article-title>Mixed-membership models of scienti c publications</article-title>
          .
          <source>Proceedings of the National Academy of Sciences 101(suppl. 1)</source>
          ,
          <volume>5220</volume>
          {
          <fpage>5227</fpage>
          (
          <year>2004</year>
          ). https://doi.org/10.1073/pnas.0307760101, http://www.pnas. org/content/101/suppl 1/5220.abstract
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Fama</surname>
            ,
            <given-names>E.F.</given-names>
          </string-name>
          :
          <article-title>E cient capital markets: A review of theory and empirical work</article-title>
          .
          <source>The Journal of Finance</source>
          <volume>25</volume>
          (
          <issue>2</issue>
          ),
          <volume>383</volume>
          {
          <fpage>417</fpage>
          (
          <year>1970</year>
          ), http://www.jstor.org/stable/2325486
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Feuerriegel</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neumann</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>News or noise? how news drives commodity prices</article-title>
          .
          <source>In: ICIS</source>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17. G. Malkiel,
          <string-name>
            <surname>B.</surname>
          </string-name>
          :
          <article-title>The e cient market hypothesis and its critics</article-title>
          .
          <source>Journal of Economic Perspectives</source>
          <volume>17</volume>
          ,
          <issue>59</issue>
          {
          <volume>82</volume>
          (02
          <year>2003</year>
          ). https://doi.org/10.1257/089533003321164958
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Hogenboom</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Frasincar</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kaymak</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          , Jong, F.
          <string-name>
            <surname>D.:</surname>
          </string-name>
          <article-title>An overview of event extraction from text</article-title>
          . In: Workshop on Detection, Representation, and
          <article-title>Exploitation of Events in the Semantic Web (DeRiVE</article-title>
          <year>2011</year>
          ) at Tenth International Semantic Web Conference (ISWC
          <year>2011</year>
          ). Volume 779 of CEUR Workshop Proceedings., CEURWS.org (
          <year>2011</year>
          )
          <volume>48</volume>
          {
          <fpage>57</fpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Huynh</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dang</surname>
            ,
            <given-names>L.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Duong</surname>
            ,
            <given-names>D.:</given-names>
          </string-name>
          <article-title>A new model for stock price movements prediction using deep neural network (</article-title>
          <year>2017</year>
          ). https://doi.org/10.1145/3155133.3155202
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Kaastra</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Boyd</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Designing a neural network for forecasting nancial and economic time series (</article-title>
          <year>1996</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Lekovic</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Evidence for and against the validity of e cient market hypothesis</article-title>
          .
          <source>Economic Themes</source>
          <volume>56</volume>
          ,
          <issue>369</issue>
          {
          <volume>387</volume>
          (11
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Malkiel</surname>
            ,
            <given-names>B.G.: A Random</given-names>
          </string-name>
          <string-name>
            <surname>Walk Down Wall Street. Norton</surname>
          </string-name>
          , New York (
          <year>1973</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>Meng</surname>
            ,
            <given-names>T.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khushi</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Reinforcement learning in nancial markets</article-title>
          .
          <source>Data</source>
          <volume>4</volume>
          (
          <issue>3</issue>
          ),
          <volume>110</volume>
          (Jul
          <year>2019</year>
          ). https://doi.org/10.3390/data4030110, https://doi.org/10.3390/ data4030110
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <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: Proceedings of the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing of the AFNLP: Volume 2 -</source>
          Volume 2. pp.
          <volume>1003</volume>
          {
          <fpage>1011</fpage>
          . ACL '
          <volume>09</volume>
          ,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computational Linguistics, Stroudsburg, PA, USA (
          <year>2009</year>
          ), http://dl.acm.org/citation.cfm?id=
          <volume>1690219</volume>
          .
          <fpage>1690287</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>Peng</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jiang</surname>
          </string-name>
          , H.:
          <article-title>Leverage nancial news to predict stock price movements using word embeddings and deep neural networks</article-title>
          .
          <source>CoRR abs/1506</source>
          .07220 (
          <year>2015</year>
          ), http://arxiv.org/abs/1506.07220
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>Poria</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cambria</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hazarika</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vij</surname>
            ,
            <given-names>P.:</given-names>
          </string-name>
          <article-title>A deeper look into sarcastic tweets using deep convolutional neural networks</article-title>
          .
          <source>CoRR abs/1610</source>
          .08815 (
          <year>2016</year>
          ), http: //arxiv.org/abs/1610.08815
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <surname>Ritter</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mausam</surname>
            , Etzioni,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clark</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Open domain event extraction from twitter</article-title>
          .
          <source>In: Proceedings of the 18th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining</source>
          . pp.
          <volume>1104</volume>
          {
          <fpage>1112</fpage>
          . KDD '12,
          <string-name>
            <surname>ACM</surname>
          </string-name>
          , New York, NY, USA (
          <year>2012</year>
          ). https://doi.org/10.1145/2339530.2339704, http://doi.acm.
          <source>org/ 10</source>
          .1145/2339530.2339704
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>Roache</surname>
            ,
            <given-names>S.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rossi</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>The e ects of economic news on commodity prices</article-title>
          .
          <source>The Quarterly Review of Economics and Finance</source>
          <volume>50</volume>
          (
          <issue>3</issue>
          ),
          <volume>377</volume>
          {
          <fpage>385</fpage>
          (
          <year>2010</year>
          ), https: //EconPapers.repec.org/RePEc:eee:quaeco:v:50:y:2010:i:3:p:
          <fpage>377</fpage>
          -
          <lpage>385</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          29.
          <string-name>
            <surname>Ruder</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , Gha ari, P.,
          <string-name>
            <surname>Breslin</surname>
            ,
            <given-names>J.G.</given-names>
          </string-name>
          :
          <article-title>INSIGHT-1 at semeval-2016 task 5: Deep learning for multilingual aspect-based sentiment analysis</article-title>
          .
          <source>CoRR abs/1609</source>
          .02748 (
          <year>2016</year>
          ), http://arxiv.org/abs/1609.02748
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          30.
          <string-name>
            <surname>Schuler</surname>
            ,
            <given-names>K.K.</given-names>
          </string-name>
          :
          <article-title>Verbnet: A Broad-coverage, Comprehensive Verb Lexicon</article-title>
          .
          <source>Ph.D. thesis</source>
          , Philadelphia, PA, USA (
          <year>2005</year>
          ),
          <fpage>aAI3179808</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          31.
          <string-name>
            <surname>Shekarpour</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shalin</surname>
            ,
            <given-names>V.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Thirunarayan</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sheth</surname>
            ,
            <given-names>A.P.:</given-names>
          </string-name>
          <article-title>CEVO: comprehensive event ontology enhancing cognitive annotation</article-title>
          .
          <source>CoRR abs/1701</source>
          .05625 (
          <year>2017</year>
          ), http://arxiv.org/abs/1701.05625
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          32.
          <string-name>
            <surname>Siami-Namini</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Namin</surname>
            ,
            <given-names>A.S.:</given-names>
          </string-name>
          <article-title>Forecasting economics and nancial time series: ARIMA vs</article-title>
          . LSTM. CoRR abs/
          <year>1803</year>
          .06386 (
          <year>2018</year>
          ), http://arxiv.org/abs/
          <year>1803</year>
          . 06386
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          33.
          <string-name>
            <surname>Skabar</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cloete</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>Neural networks, nancial trading and the e cient markets hypothesis</article-title>
          .
          <source>Aust. Comput. Sci. Commun</source>
          .
          <volume>24</volume>
          (
          <issue>1</issue>
          ),
          <volume>241</volume>
          {249 (Jan
          <year>2002</year>
          ), http://dl. acm.org/citation.cfm?id=
          <volume>563857</volume>
          .
          <fpage>563829</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          34.
          <string-name>
            <surname>Taylor</surname>
          </string-name>
          , S.J.,
          <string-name>
            <surname>Letham</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Forecasting at scale</article-title>
          .
          <source>The American Statistician</source>
          <volume>72</volume>
          (
          <issue>1</issue>
          ),
          <volume>37</volume>
          {
          <fpage>45</fpage>
          (
          <year>2018</year>
          ). https://doi.org/10.1080/00031305.
          <year>2017</year>
          .
          <volume>1380080</volume>
          , https://doi.org/10. 1080/00031305.
          <year>2017</year>
          .1380080
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          35.
          <string-name>
            <surname>Tran</surname>
            ,
            <given-names>D.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iosi</surname>
            <given-names>dis</given-names>
          </string-name>
          , A.,
          <string-name>
            <surname>Kanniainen</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gabbouj</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Temporal attention augmented bilinear network for nancial time-series data analysis</article-title>
          .
          <source>CoRR abs/1712</source>
          .00975 (
          <year>2017</year>
          ), http://arxiv.org/abs/1712.00975
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          36.
          <string-name>
            <surname>Tran</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bourdev</surname>
            ,
            <given-names>L.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fergus</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Torresani</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Paluri</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>C3D: generic features for video analysis</article-title>
          .
          <source>CoRR abs/1412</source>
          .0767 (
          <year>2014</year>
          ), http://arxiv.org/abs/1412.0767
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          37.
          <string-name>
            <surname>Valipour</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Banihabib</surname>
            ,
            <given-names>M.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Behbahani</surname>
            ,
            <given-names>S.M.R.</given-names>
          </string-name>
          :
          <article-title>Comparison of the arma, arima, and the autoregressive arti cial neural network models in forecasting the monthly in ow of dez dam reservoir</article-title>
          .
          <source>Journal of Hydrology 476(Complete)</source>
          ,
          <volume>433</volume>
          {
          <fpage>441</fpage>
          (
          <year>2013</year>
          ). https://doi.org/10.1016/j.jhydrol.
          <year>2012</year>
          .
          <volume>11</volume>
          .017
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          38.
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , H.,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hao</surname>
          </string-name>
          , H.:
          <article-title>Semantic clustering and convolutional neural network for short text categorization</article-title>
          . pp.
          <volume>352</volume>
          {
          <issue>357</issue>
          (01
          <year>2015</year>
          ). https://doi.org/10.3115/v1/
          <fpage>P15</fpage>
          -2058
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          39.
          <string-name>
            <surname>Weischedel</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palmer</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Marcus</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hovy</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pradhan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramshaw</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xue</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taylor</surname>
          </string-name>
          , A.,
          <string-name>
            <surname>Kaufman</surname>
          </string-name>
          , J.,
          <string-name>
            <surname>Franchini</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          , et al.:
          <source>Ontonotes release 5.0 ldc2013t19. Linguistic Data Consortium</source>
          , Philadelphia, PA (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref40">
        <mixed-citation>
          40.
          <string-name>
            <surname>Wex</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Widder</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liebmann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neumann</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Early warning of impending oil crises using the predictive power of online news stories</article-title>
          .
          <source>In: 2013 46th Hawaii International Conference on System Sciences</source>
          . pp.
          <volume>1512</volume>
          {
          <issue>1521</issue>
          (Jan
          <year>2013</year>
          ). https://doi.org/10.1109/HICSS.
          <year>2013</year>
          .186
        </mixed-citation>
      </ref>
      <ref id="ref41">
        <mixed-citation>
          41.
          <string-name>
            <surname>Zhong</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ng</surname>
          </string-name>
          , H.T.:
          <article-title>It makes sense: A wide-coverage word sense disambiguation system for free text</article-title>
          .
          <source>In: Proceedings of the ACL 2010 System Demonstrations</source>
          . pp.
          <volume>78</volume>
          {
          <fpage>83</fpage>
          . ACLDemos '10,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computational Linguistics, Stroudsburg, PA, USA (
          <year>2010</year>
          ), http://dl.acm.org/citation.cfm?id=
          <volume>1858933</volume>
          .
          <fpage>1858947</fpage>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>