<!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>EquatorNLP: Pattern-based Information Extraction for Disaster Response</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Lars Döhling</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Ulf Leser</string-name>
          <email>leser@informatik.hu-berlin.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Humboldt-Universität zu Berlin, Department of Computer Science</institution>
          ,
          <addr-line>Unter den Linden 6, 10099 Berlin</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>One of the most severe problems in early phases of disaster response is the lack of information about the current situation. Such information is indispensable for planning and monitoring rescue operations, but hardly available due to the breakdown of information channels and normal message routes. However, during recent disasters in developed countries, such as the flooding of New Orleans or the earthquake in New Zealand, a wealth of detailed information was posted by affected persons in media, such as Flickr, Twitter, or personal blogs. Finding and extracting such information may provide valuable clues for organizing aid, but currently requires humans to constantly read and analyze these messages. In this work, we report on a study for extracting such facts automatically by using a combination of deep natural language processing and advanced machine learning. Specially, we present an approach that learns patterns in dependency representations of sentences to find textually described facts about human fatalities. Our method achieves a F1 measure of 66.7% on a manually annotated corpus of 109 news articles about earthquake effects, demonstrating the general efficacy of our approach.</p>
      </abstract>
      <kwd-group>
        <kwd>Information Extraction</kwd>
        <kwd>Dependency Graph</kwd>
        <kwd>Earthquake</kwd>
        <kwd>Disaster Response</kwd>
        <kwd>Named Entity Recognition</kwd>
        <kwd>Relationship Extraction</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>After disastrous events like earthquakes, decision makers require precise and
timely information about the current situation for planning and monitoring
rescue operations effectively. During the last years, the Internet has become a major
source for such information, in particular, if no acquaintance is available on-site.
For earthquake events, many key information like the number affected are
published on the Internet. This includes structured information provided by
earthquake agencies (e.g. GEOFON1 or USGS2) as well as textual updates published
1 http://geofon.gfz-potsdam.de/geofon
2 http://earthquake.usgs.gov/earthquakes
by news agencies or recently by Internet users themselves, called user-generated
content (e.g. Twitter or personal blogs). Given the example sentence “The death
toll in an earthquake in south-west China is now at least 32, with 467 injuries,
state media says.”3, one can identify several text snippets expressing
presumably demanded facts. It contains trigger words like “death toll” or “earthquake”,
figures like “32” or “467” as well as temporal (“now”) or spatial (“south-west
China”) attributes. Furthermore, these token or token sequences – subsequently
called entities – are semantically connected to each other, forming so called
relationships; “death toll” is related to “32” and “at least” whereas “467” refers to
“injuries”. Moreover, both are associated with “earthquake” and “China”.
Obviously, texts offer valuable information for decision making but require accurate
analysis, which is still a manual and therefore time-consuming, expensive task.
Hence, automating this analysis will aid humans to accomplish rescue operations
successfully.</p>
      <p>As a first step towards automatic textual analysis, we report on extracting
facts from news articles, describing human impacts from earthquakes. To model
these impacts, we define a 5-ary relationship, whose complexity imposes several
challenges for extraction by
– consisting of more than two entities,
– allowing incomplete tuples and
– potentially spanning multiple sentences.</p>
      <p>
        For extracting this relationship, we apply deep natural language processing
combined with graph-based synthesis techniques. More specifically, we match
patterns in sentence-based dependency graphs to compose a graphical model
representing semantic connections between entities and examine this for connected
subgraphs. Our evaluation demonstrates the general efficacy of our proposed
method stack – called EquatorNLP4 – by achieving 66.7% F1 measure [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] on a
novel, manually created news corpus.
1.1
      </p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>Due to the increasing amount of information available in a textual form (e.g.
PubMed or Wikipedia), assisting humans by automatically analyzing these texts
has become an important research topic in the last decade. Information
extraction (IE) studies the problem of extracting structured information from
unstructured text. Typically, this involves recognizing entities (named entity recognition,
NER) and relationships between them (relationship extraction, RE).</p>
      <p>
        Different methods have been proposed for NER, e.g. dictionary-based,
rulebased or machine learning [
        <xref ref-type="bibr" rid="ref20 ref29">20,29</xref>
        ]. Hybrids like the one applied in this study
usually perform best [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ]. The achievable F1 measure highly depends on the
concrete domain and ranges up to 95% [
        <xref ref-type="bibr" rid="ref10 ref14 ref19 ref32">10,19,14,32</xref>
        ]. To the best of our knowledge,
3 http://news.bbc.co.uk/2/hi/asia-pacific/7591152.stm
4 EarthQU ake dAta collecTOR [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] with N atural Language Processing
this study is the first about IE in the earthquake domain, hence no quantitative
results are available yet.
      </p>
      <p>
        Regarding RE, co-occurrence forms an intuitive approach [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. Beside that,
pattern matching [
        <xref ref-type="bibr" rid="ref30">30</xref>
        ] and machine learning [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] have been adopted as well. As
in EquatorNLP, these methods recently utilize deep natural language processing
like dependency parsing [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. Little is known about extracting complex n-ary
relationships like the one examined in this paper, since most research has focused
on binary relationships. Inspired by the promising results in [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ], we transferred
their subgraph-based idea into our domain (see section 2.4). In general, RE
is regarded as being more difficult than NER, resulting in lower F1 measures,
ranging from 40% [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] to 80% [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
2
2.1
      </p>
      <sec id="sec-2-1">
        <title>Materials and Methods</title>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>What we extract: Definition of the 5-ary Relationship</title>
      <p>To model earthquake damages, our examined relationship consists of five
different entity types, including several subtypes. Note that the concatenated
parenthesized letters will subsequently be used as abbreviations.</p>
      <p>– (O)bject: Describes the victims, e.g. “people” or “students”.
– (Q)uantity: Describes the number of victims and consists of the four subtypes
• (c)ardinal: “12”, “ten”, “no”, “a”, “1.3 million”
• (o)rdinal: “second”, “10th”
• (v)ague: “many”, “hundreds”, “some”
• (r)esidue: “everybody”
– (M)odifier: Refers to a quantity and modifies its value, e.g. “at least”, “about”
or “more than”.
– (I)ndicator: Describes the type of damage and consists of six subtypes
• (k)illed: “killed”, “death tool”, “died”
• (i)njured: “injured”
• (t)rapped: “trapped”
• (m)issing: “missing”
• (h)omeless: “homeless”
• (a)ffected: “affected”
– (N)egation: Infrequently required to correctly describe a damage, e.g. “not”.</p>
      <p>Given this definition, the previous example “The death toll in an earthquake
in south-west China is now at least 32, with 467 injuries, state media says.”
contains five entities: “death toll” (Ik), “at least” (M), “32” (Qc), “467” (Qc) and
“injuries” (Ii). Note that entities may span multiple token – called multi-token
entities. Together, these entities form two [N, M, Q, O, S] relationship tuples: [—
, "‘at least"’, "‘32"’, —, "‘death toll"’] and [—, —, "‘467"’, —, "‘injuries"’]. We
define that not all entity slots have to be filled to form a valid tuple, indicated
by —. However, we postulate two constraints concerning incomplete relationship
instances: (i) An entity I is mandatory and (ii) an entity Q is mandatory, if an
entity M is set.
2.2</p>
    </sec>
    <sec id="sec-4">
      <title>Corpus</title>
      <p>
        To train and later test our proposed machine-learning-based extraction methods,
we required an annotated set of documents – called corpus – as a gold standard.
As to the best of our knowledge, currently no appropriate corpus exits for our
purpose, we created a new one. Our corpus consists of 109 English articles about
earthquakes and their aftermath: 24 from BBC News5, 2 from Equator [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], 41
from Wikipedia6 and 42 from Yahoo! News7. They were randomly selected from
a collection of documents retrieved from these four sources in spring 2010.
      </p>
      <p>From each article, we extracted the text including the headline and
annotated it manually according to the relationship definition given above. We
removed cross-sentence (28) and unary (4) instances from the corpus, since our
relationship extraction methods operate on the sentence level and are unsuitable
for unary tuples (see section 2.4). Finally, we partitioned this altered corpus into
a training (2⁄3) and an evaluation set (1⁄3) by stratified random sampling on
the sentence level. Table 1 presents the resulting distribution of the relationship
tuples in the different partitions.
k
i
t
m
h
a
per size, defined by filled entity slots 1
2
3
4
5
A prerequisite for relationship extraction is the detection of target entities in the
text. For this task, we used a regular expression (Qc only) in combination with a
5 http://news.bbc.co.uk
6 http://en.wikipedia.org/wiki/Historical_earthquakes,
http://en.wikipedia.org/wiki/List_of_20th_century_earthquakes,
http://en.wikipedia.org/wiki/List_of_21st_century_earthquakes
7 http://news.yahoo.com/science/earthquakes
dictionary (all other types), both derived from the training data. As each token
sequence can only be assigned to at most one entity type, the question emerged
how to disambiguate competing matches. we applied the following plausible order
of precedence: The regular expression matches prior to the dictionary, longer
token sequences match prior to shorter (“as high as” M versus “high” Qv) and
finally the most frequent type found for this token sequence in the training data.
Overall, the dictionary extracted from the training data set contained 218 entries
with an average length of 1.78 token.
2.4</p>
    </sec>
    <sec id="sec-5">
      <title>Relationship Extraction</title>
      <p>After recognizing the entities, the next step is to extract the actual relationship
instances. Our proposed method consisted of two steps:
1. Discovering pairs of entities by pattern matching in dependency graphs.
2. Synthesizing complex instances from maximal cliques in entity graphs build
from these entity pairs.</p>
      <p>
        Dividing the extraction process into these two steps enabled us to apply
wellknown extraction methods for binary relationships. Furthermore, we gained more
training instances, reducing the sparse data problem [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] existing for the
complete relationship.
      </p>
      <p>
        Matching Dependency Patterns Dependency models are syntactical
models expressing the hierarchical dependencies between the words of a sentence.
Those dependencies may be visualized as a directed, labeled graph whose root
is the verb. Figure 1 depicts the running example in the Stanford Dependencies
representation [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ]. The arrows indicate the dependency direction from regent
to dependent and are labeled with the dependency type.
      </p>
      <p>
        These models offers a direct access to sentence structures [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] and have the
potential to reveal relations between words apart more easily than regular
expressions [
        <xref ref-type="bibr" rid="ref12 ref7">12,7</xref>
        ] (e.g. between “death toll” and “32” in the example). Therefore,
examining patterns between entities in dependency graphs has been a
successful approach in modern relationship extraction. For our work, we selected the
shortest paths between two entities as patterns [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
      <p>
        We applied the Stanford converter [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ] to compute the dependency graph for
each sentence, which requires constituent parses [
        <xref ref-type="bibr" rid="ref1 ref23">23,1</xref>
        ] as input (another
syntactical model). Those parses were generated by the Charniak PCFG parser [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]
in combination with the Charniak-Johnson Max-Ent reranking parser [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], using
McClosky’s self-trained models [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ].
      </p>
      <p>During training, we extracted all shortest paths between entities and stored
them in a pattern catalog. To abstract from the actual token of an entity, we
joined all parting token vertices in advance into one entity vertex. Concurrently,
we replaced each entity vertex in the pattern by its type to mask the actual value.
Figure 2 illustrates the transformed example graph and the extracted patterns.
Since dependency graphs can contain cycles, there might exist more than one
32</p>
      <p>says
ccomp
shortest path between two entities with – of course – equal length. Hence, a
relationship instance consisting of k entities will produce at least k2 patterns.
Overall, the catalog extracted from the training data set contained 396 unique
patterns with an average length of 2.83 edges.</p>
      <p>During extraction, we applied this catalog to create links between two entities
in accordingly transformed dependency graphs, resulting in entity graphs (see
Figure 3 for an example).</p>
      <p>Entity vertex
Token vertex
Patterns
death toll Ik
det</p>
      <p>prep
The</p>
      <p>in</p>
      <sec id="sec-5-1">
        <title>QQck nsubj ISkt</title>
        <p>QQck quantmod MM
32 Qc
nsubj cop advmod quantmod prep
is now at least M with
pobj
injuries Ii</p>
        <p>num
467 Qc</p>
      </sec>
      <sec id="sec-5-2">
        <title>ISkt nsubj QQck quantmod MM</title>
        <p>ISil
num</p>
        <p>
          QQck
Baseline To determine whether deep linguistic parsing like the dependency
model is beneficial for relation extraction or not, we also use a
co-occurrencebased classifier as a baseline for recognizing entity pairs. For each entity e, all
closest (in terms of token distance) entities within sentence scope having a
different type then e are postulated as being linked to e. For example, this would
imply a (false) connection between “32” and “injuries” in the running example,
as for “32” the distance to “injuries” is less then to “death toll”.
Synthesizing Relationship Instances After detecting pairs of entities, the
final step is to synthesize relationship instances from them. To address this, we
identified maximal cliques in the entity graphs [
          <xref ref-type="bibr" rid="ref27">27</xref>
          ] which are consistent to our
relationship definition.
        </p>
        <p>Consider the entity graph in Figure 3 as one possible outcome of the
previous pair-recognizing step when applied to the running example. To form
relationship instances, we combined all those entities which are directly connected
among each other in the entity graph. Such a set of vertices is called a clique.
In Figure 3, all cliques of size two or greater are marked by eclipses (C0 to C5).
Among these, we considered only those cliques that are consistent to our
relationship definition (C0, C2 and C4). Furthermore, we ignored cliques which are
contained in others (C2). All such non-redundant cliques are called maximal.
In our example, only C0 and C4 comply with the requirements ’maximal’ and
’relationship-definition-consistent’ and would in this case form the final output
of the complete information extraction pipeline.</p>
        <p>C 4</p>
        <p>C 2
ddeeaatthhttoollllIIkk</p>
        <p>C 3
3322QQcc</p>
        <p>C 1
aattlleeaassttMM M M</p>
        <p>C 5</p>
        <p>iinnjjuurriieessIIii
446677QQcc</p>
        <p>
          C 0
Based on the training data set, we derived optimal extraction pipeline
configurations and tested them on the evaluation set. Before presenting our findings,
we will explain the evaluation measures used and the underlying configuration
parameters.
To measure the performance of our pipeline, we determined precision (P), recall
(R) and F1 measure [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ] for all three extraction steps: recognizing entities (NER),
extracting entity pairs (BinRE) and synthesizing relationship instances (RE).
Each measure is based on the concept of ’true positive’. We applied a strict
evaluation schema, therefore considering a reported entity as a true positive, if
and only if both the type and the token agreed with the gold standard [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ].
Propagated to the relationship level, an instance was considered a true positive
if and only if all participating entities were true positives and the instance had
equal size.
3.2
        </p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Pipeline Configuration Parameters</title>
      <p>
        Both NER and dependency-based BinRE are requiring well-defined matching
criteria. On the entity level, we applied character-based equality. This could be
relaxed by case insensitivity (IgnoreCase4NER) or stemming [
        <xref ref-type="bibr" rid="ref17 ref23 ref31">31,17,23</xref>
        ]
(UseStem4NER). On the dependency level, we chose between different dependency
schemata [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ] (DependencySchema). Furthermore, we altered the token vertex
matching by case insensitivity (IgnoreCase4RE), stemming (UseStem4RE) or
using Part-Of-Speech tags [
        <xref ref-type="bibr" rid="ref11 ref23">11,23</xref>
        ] (UsePOS4RE). For matching entity vertices,
we additionally ignored the subtype (IgnoreEntitySubtype). Moreover, matching
pattern edges was modified by ignoring their direction (IgnoreDepDirection) and
their label (IgnoreDepType). Given these parameters, Table 2 lists the
configurations for maximal precision, recall and F1, estimated from stratified 10-fold
cross-validation [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] on the training data.
Based on the previously deduced pipeline parameters, we evaluated our proposed
methods on the evaluation data set. The results for each pipeline step are shown
in Table 3. While our approach achieved a surprisingly high recall for entity
recognition (93.8%), the corresponding precision was quite low (22.7%). Further
analysis revealed that the majority of false positives were produced by the regular
expression matching each number in the text (e. g. year or monetary amount).
      </p>
      <p>On the entity pair level, our proposed dependency pattern matching
significantly outperformed the baseline in terms of precision (73.0% versus 29.0%).
Considering recall, the relation was inverted (74.3% versus 87.2%), resulting in a
Pipeline Setup
Baseline
Dependency Pmax</p>
      <p>Rmax</p>
      <p>F1max
OracleNER &amp; Baseline
&amp; Dependency F1max</p>
      <p>P</p>
      <p>NER</p>
      <p>R
significantly higher F1 measure for the former (73.6% versus 43.6%). Obviously,
matching dependency patterns is more insusceptible to low-precision NER than
co-occurrence-based classification.</p>
      <p>The same tendencies were observed for relationship instances with a
significantly better F1 measure of 66.7% versus 36.9%. Additional examination
showed that, for both methods, the reported overall precision and recall scores
were roughly consistent across instance types (k, i. . . ) and sizes (2, 3. . . ).</p>
      <p>Due to EquatorNLP’s pipeline architecture, the observed BinRE and RE
performances were certainly biased by the preceding NER step. To quantify the
effect of error propagation and therefore disclosing their ’true’ capabilities, we
also tested a perfect NER (OracleNER in Table 2 and 3). Although our results
confirmed the global trends for the distribution of precision, recall among the two
BinRE methods, their absolute difference in F1 measure were nearly eliminated
(82.0% versus 80.8%).
4</p>
      <sec id="sec-6-1">
        <title>Conclusions and Future Work</title>
        <p>
          In this paper, we demonstrated that matching dependency patterns combined
with detecting maximal cliques is a promising approach for extracting human
impacts from earthquake reports. Our evaluation on a manual annotated corpus
resulted in a maximal F1 measure of 66.7%, outperforming a co-occurrence-based
approach significantly. We also showed that our proposed extraction pipeline
provides P / R adaptability. Additional experiments with oracle NER imply that
under this setting, co-occurrence-based extraction provides competitive results,
particularly with regard to its significantly lower computational runtime [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ].
        </p>
        <p>Note that the computed recall and F1 measures are slightly biased, since
our proposed extraction pipeline operates only on the sentence level and does
not cover unary relationship instances. As these instances form approximately
5% of all tuples in news articles (see section 2.2), this might be acceptable for
particular applications.</p>
        <p>As stated before, our evaluation was focused exclusively on domain specific
texts. We cannot expect the same performance for unfiltered texts. The
application on 113 general news articles yielded a precision of only 3.2%. This result
is less surprising if one takes a closer look at Figure1, showing that the domain
trigger “earthquake” is not part of any shortest path between entities. In fact,
only 1 out of all 396 extracted patterns contains a trigger word. Certainly,
incorporating semantic knowledge for filtering texts would increase precision. On the
other hand, this nonspecifity might be considered as an advantage, suggesting
that our pipeline is applicable to other types of disasters.</p>
        <p>
          To finally set the achieved F1 measure of 66.7% in context to a prospective
human performance, we assessed this by calculating the inter annotator
agreement (IAA) [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ] for two independent annotations. The score of 70.3% for strict
agreement on relationship instances for 30 articles indicates at least a cardinal
task complexity. Great caution should be exercised in comparing these two values
directly, since they belong to different dimensions: the former measures validity,
while the latter measures objectivity.
4.1
        </p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>Future Work</title>
      <p>
        Given these results and our conclusions, we identified several challenges for future
research. Obviously, we require domain specific texts as pipeline input, proposing
text classification as a preprocessing step. As decision makers are interested in
information about specific events, we plan to extend our relationship and its
extraction to temporal and spatial attributes. Furthermore, we intend to apply
high-precision machine learning techniques like condition random fields [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] for
NER, hopefully increasing RE recall without losing precision by enabling less
strict pattern matching criteria. Finally, we intend to explore user-generated
content like on Twitter as a novel information source.
      </p>
      <p>Acknowledgements We kindly thank Sebastian Arzt and Tim Rocktäschel
for contributing the IAA annotations; furthermore Samira Jaeger for providing
valuable feedback.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Bies</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ferguson</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Katz</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>MacIntyre</given-names>
            , R.,
            <surname>Tredinnick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            ,
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Marcinkiewicz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.A.</given-names>
            ,
            <surname>Schasberger</surname>
          </string-name>
          ,
          <string-name>
            <surname>B.</surname>
          </string-name>
          :
          <article-title>Bracketing Guidelines for Treebank II Style, Penn Treebank Project (</article-title>
          <year>1995</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Bjorne</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ginter</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pyysalo</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tsujii</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salakoski</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Complex event extraction at pubmed scale</article-title>
          .
          <source>Bioinformatics</source>
          <volume>26</volume>
          (
          <issue>12</issue>
          ),
          <fpage>382</fpage>
          -
          <lpage>390</lpage>
          (
          <year>June 2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Brants</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Inter-annotator agreement for a german newspaper corpus</article-title>
          .
          <source>In: Proceedings of the Second International Conference on Language Resources</source>
          and
          <string-name>
            <surname>Evaluation (LREC-2000)</surname>
          </string-name>
          (
          <year>2000</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Bunescu</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mooney</surname>
            ,
            <given-names>R.:</given-names>
          </string-name>
          <article-title>A shortest path dependency kernel for relation extraction</article-title>
          .
          <source>In: HLT '05: Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing</source>
          . pp.
          <fpage>724</fpage>
          -
          <lpage>731</lpage>
          . Association for Computational Linguistics, Morristown, NJ, USA (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Charniak</surname>
          </string-name>
          , E.:
          <article-title>A maximum-entropy-inspired parser</article-title>
          .
          <source>In: Proceedings of the 1st North American chapter of the Association for Computational Linguistics conference</source>
          . pp.
          <fpage>132</fpage>
          -
          <lpage>139</lpage>
          . Morgan Kaufmann Publishers Inc., San Francisco, CA, USA (
          <year>2000</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Charniak</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Johnson</surname>
          </string-name>
          , M.:
          <article-title>Coarse-to-fine n-best parsing and maxent discriminative reranking</article-title>
          .
          <source>In: ACL '05: Proceedings of the 43rd Annual Meeting on Association for Computational Linguistics</source>
          . pp.
          <fpage>173</fpage>
          -
          <lpage>180</lpage>
          . Association for Computational Linguistics, Morristown, NJ, USA (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Clegg</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shepherd</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Benchmarking natural-language parsers for biological applications using dependency graphs</article-title>
          .
          <source>BMC Bioinformatics</source>
          <volume>8</volume>
          (
          <issue>1</issue>
          ),
          <volume>24</volume>
          + (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Döhling</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Woith</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fahland</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Leser</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          : Equator:
          <article-title>Faster decision making for geoscientists</article-title>
          .
          <source>In: Proceeding of Workshop on IT support for rescue teams</source>
          <year>2011</year>
          (
          <year>2011</year>
          ), (to appear)
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Efron</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tibshirani</surname>
            ,
            <given-names>R.J.:</given-names>
          </string-name>
          <article-title>An Introduction to the Bootstrap</article-title>
          . Chapman &amp; Hall/CRC (
          <year>1993</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Farmakiotou</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Karkaletsis</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Koutsias</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sigletos</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Spyropoulos</surname>
            ,
            <given-names>C.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatopoulos</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Rule-based named entity recognition for greek financial texts</article-title>
          .
          <source>In: In Proceedings of the Workshop on Computational Lexicography and Multimedia Dictionaries (COMLEX</source>
          <year>2000</year>
          ). pp.
          <fpage>75</fpage>
          -
          <lpage>78</lpage>
          (
          <year>2000</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Francis</surname>
            ,
            <given-names>W.N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kucera</surname>
          </string-name>
          , H.: Brown Corpus Manual (
          <year>1979</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Fundel</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Küffner</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zimmer</surname>
          </string-name>
          , R.:
          <article-title>RelEx - Relation extraction using dependency parse trees</article-title>
          .
          <source>Bioinformatics</source>
          <volume>23</volume>
          (
          <issue>3</issue>
          ),
          <fpage>365</fpage>
          -
          <lpage>371</lpage>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Han</surname>
            ,
            <given-names>J</given-names>
          </string-name>
          .,
          <string-name>
            <surname>Kamber</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Data Mining: Concepts and Techniques</article-title>
          . Morgan Kaufmann, 2nd ed.
          <source>edn. (4</source>
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Isozaki</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kazawa</surname>
          </string-name>
          , H.:
          <article-title>Efficient support vector classifiers for named entity recognition</article-title>
          .
          <source>In: Proceedings of the 19th international conference on Computational linguistics</source>
          . pp.
          <fpage>1</fpage>
          -
          <lpage>7</lpage>
          . Association for Computational Linguistics, Morristown, NJ, USA (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Jenssen</surname>
          </string-name>
          , T.K.,
          <string-name>
            <surname>greid</surname>
            ,
            <given-names>A.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Komorowski</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hovig</surname>
          </string-name>
          , E.:
          <article-title>A literature network of human genes for high-throughput analysis of gene expression</article-title>
          .
          <source>Nature genetics 28(1)</source>
          ,
          <fpage>21</fpage>
          -
          <lpage>28</lpage>
          (5
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Kawtrakul</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yingsaeree</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Andrès</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>A framework of nlp based information tracking and related knowledge organizing with topic maps</article-title>
          .
          <source>In: NLDB</source>
          . pp.
          <fpage>272</fpage>
          -
          <lpage>283</lpage>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Kraaij</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pohlmann</surname>
          </string-name>
          , R.:
          <article-title>Viewing stemming as recall enhancement</article-title>
          .
          <source>In: Proceedings of the 19th annual international ACM SIGIR conference on Research and development in information retrieval</source>
          . pp.
          <fpage>40</fpage>
          -
          <lpage>48</lpage>
          . SIGIR '96,
          <string-name>
            <surname>ACM</surname>
          </string-name>
          , New York, NY, USA (
          <year>1996</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Lafferty</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McCallum</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pereira</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>Conditional random fields: Probabilistic models for segmenting and labeling sequence data</article-title>
          .
          <source>In: Proceedings of the Eighteenth International Conference on Machine Learning</source>
          . pp.
          <fpage>282</fpage>
          -
          <lpage>289</lpage>
          . Morgan Kaufmann (
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Leaman</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gonzalez</surname>
          </string-name>
          , G.:
          <article-title>Banner: an executable survey of advances in biomedical named entity recognition</article-title>
          .
          <source>Pacific Symposium on Biocomputing. Pacific Symposium</source>
          on Biocomputing pp.
          <fpage>652</fpage>
          -
          <lpage>663</lpage>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Leser</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hakenberg</surname>
          </string-name>
          , J.:
          <article-title>What makes a gene name? named entity recognition in the biomedical literature</article-title>
          .
          <source>Briefings in Bioinformatics</source>
          <volume>6</volume>
          (
          <issue>4</issue>
          ),
          <fpage>357</fpage>
          -
          <lpage>369</lpage>
          (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hsinchun</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Kernel-based learning for biomedical relation extraction</article-title>
          .
          <source>Journal of the American Society for Information Science and Technology</source>
          <volume>59</volume>
          (
          <issue>5</issue>
          ),
          <fpage>756</fpage>
          -
          <lpage>769</lpage>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Raghavan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schütze</surname>
          </string-name>
          , H.: Introduction to Information Retrieval. Cambridge University Press (7
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schütze</surname>
          </string-name>
          , H.:
          <article-title>Foundations of Statistical Natural Language Processing</article-title>
          . The MIT Press, 2nd printing w.
          <source>corrections edn. (6</source>
          <year>2000</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Marneffe</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>MacCartney</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Generating typed dependency parses from phrase structure parses</article-title>
          .
          <source>In: Proceedings of LREC-06</source>
          . pp.
          <fpage>449</fpage>
          -
          <lpage>454</lpage>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25. de Marneffe,
          <string-name>
            <given-names>M.C.</given-names>
            ,
            <surname>Manning</surname>
          </string-name>
          , C.D.:
          <article-title>Stanford typed dependencies manual, revised in february 2010 edn</article-title>
          . (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>McClosky</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Charniak</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Johnson</surname>
          </string-name>
          , M.:
          <article-title>Effective self-training for parsing</article-title>
          .
          <source>In: Proceedings of the main conference on Human Language Technology Conference of the North American Chapter of the Association of Computational Linguistics</source>
          . pp.
          <fpage>152</fpage>
          -
          <lpage>159</lpage>
          . Association for Computational Linguistics, Morristown, NJ, USA (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <surname>McDonald</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pereira</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kulick</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Winters</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jin</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>White</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Simple algorithms for complex relation extraction with applications to biomedical ie</article-title>
          .
          <source>In: ACL '05: Proceedings of the 43rd Annual Meeting on Association for Computational Linguistics</source>
          . pp.
          <fpage>491</fpage>
          -
          <lpage>498</lpage>
          . Association for Computational Linguistics, Morristown, NJ, USA (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>Mikheev</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moens</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grover</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Named entity recognition without gazetteers</article-title>
          .
          <source>In: Proceedings of the ninth conference on European chapter of the Association for Computational Linguistics</source>
          . pp.
          <fpage>1</fpage>
          -
          <lpage>8</lpage>
          . Association for Computational Linguistics, Morristown, NJ, USA (
          <year>1999</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          29.
          <string-name>
            <surname>Nadeau</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sekine</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>A survey of named entity recognition and classification</article-title>
          .
          <source>Linguisticae Investigationes</source>
          <volume>30</volume>
          (
          <issue>1</issue>
          ),
          <fpage>3</fpage>
          -
          <lpage>26</lpage>
          (
          <year>January 2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          30.
          <string-name>
            <surname>Pietschmann</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Relationship extraction by frequent patterns in dependency graphs (in German)</article-title>
          .
          <source>Diplom thesis</source>
          , HU-Berlin (
          <year>September 2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          31.
          <string-name>
            <surname>Porter</surname>
            ,
            <given-names>M.F.</given-names>
          </string-name>
          :
          <article-title>An algorithm for suffix stripping</article-title>
          .
          <source>Program</source>
          <volume>14</volume>
          (
          <issue>3</issue>
          ),
          <fpage>130</fpage>
          -
          <lpage>137</lpage>
          (
          <year>July 1980</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          32.
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Su</surname>
          </string-name>
          , J.:
          <article-title>Named entity recognition using an hmm-based chunk tagger</article-title>
          .
          <source>In: ACL '02: Proceedings of the 40th Annual Meeting on Association for Computational Linguistics</source>
          . pp.
          <fpage>473</fpage>
          -
          <lpage>480</lpage>
          . Association for Computational Linguistics, Morristown, NJ, USA (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>