<!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>Exploration of Approaches to Arabic Named Entity Recognition</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Husamelddin A.M.N Balla</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sarah Jane Delany</string-name>
          <email>sarahjane.delanyg@tudublin.ie</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Technological University Dublin School of Computer Science Dublin</institution>
          ,
          <country country="IE">Ireland</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The Named Entity Recognition (NER) task has attracted signi cant attention in Natural Language Processing (NLP) as it can enhance the performance of many NLP applications. In this paper, we compare English NER with Arabic NER in an experimental way to investigate the impact of using di erent classi ers and sets of features including language-independent and language-speci c features. We explore the features and classi ers on ve di erent datasets. We compare deep neural network architectures for NER with more traditional machine learning approaches to NER. We discover that most of the techniques and features used for English NER perform well on Arabic NER. Our results highlight the improvements achieved by using language-speci c features in Arabic NER.</p>
      </abstract>
      <kwd-group>
        <kwd>Named Entity Recognition</kwd>
        <kwd>Machine Learning</kwd>
        <kwd>Arabic NER</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Named Entity Recognition (NER) is the process of identifying the proper names
in text and classifying them as one of a set of prede ned categories of interest.
There are three universally accepted categories which are the names of locations,
people and organisations. There are other common categories such as
recognition of time/date expressions, measures (money, percent, weight etc.), email
addresses etc. In addition, there can be domain-speci c categories such as the
names of medical conditions, drugs, bibliographic references, names of ships, etc.
NER is useful for applications such as question answering, information retrieval,
information extraction, automatic summarization, machine translation and text
mining [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        Arabic is one of the ve o cial languages used by the United Nations.
Approximately 360 million people speak Arabic in more than 25 countries and
Copyright © 2020 for this paper by its authors. Use permitted under Creative
Commons License Attribution 4.0 International (CC BY 4.0).
Arabic script represents 8.9% of the world's languages [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Although there is
existing work on Arabic NER, it still in the primary stage compared with
English NER [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Certain characteristics of the Arabic language o er challenges for
the task of NER. Unlike English and other European languages, capitalization
does not exist in Arabic script. Thus, employing capitalization as a feature in
Arabic NER is not an option. However, translation to English is one way to
solve this problem [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. The Arabic language is morphologically complicated, a
word may consist of pre xes, lemma and su xes in di erent combinations [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
That can a ect the performance in Arabic NER as typically features derived
from the su x and a x of the words are used. Also, spelling alternates can be a
challenge in Arabic NER. In the Arabic language, words (including named
entities) may be spelt in di erent ways but have the same exact meaning generating
a many-to-one ambiguity [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. The lack of resources in Arabic presents another
challenge for Arabic NER. There is a lack of the freely available Arabic datasets
and gazetteers as many of the available ones are not appropriate for Arabic NER
tasks because of the absence of NEs annotations.
      </p>
      <p>In this paper we explore approaches for NER on Arabic text to determine
how the state of the art approaches to NER work on the Arabic language. We
investigate the impact of using di erent classi ers and sets of features including
both language-independent and language-speci c features, testing them on ve
di erent datasets. We have taken English as the second source language in our
work because English NER is the most developed among other NER models.
Recently, research on English NER have achieved the best performance in the
eld and represents the state of the art. We also compare against the more recent
deep neural network approaches. The neural network approaches were found to
perform better than the traditional machine learning approaches for both Arabic
and English NER. However the SVM classi er outperformed the neural network
based model on one dataset (AQMAR). Our proposed models for the Arabic
NER outperformed other's proposed models on two Arabic datasets out of three.</p>
      <p>The rest of this paper is organized as follows. Related work is discussed in
section 2; the datasets and proposed models are presented in the methodology
section 3; experimental results and analysis in section 4 and nally the
conclusions are discussed in section 5.
2
2.1</p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <sec id="sec-2-1">
        <title>General NER</title>
        <p>
          There are three main approaches for the NER task: rule-based, machine-learning
and hybrid approaches. Early NER approaches were rule-based using
handcrafted rules. In rule based approaches, the rules are designed as regular
expressions for pattern matching generally with a list of lookup gazetteers [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ].
Rule based approaches require expert linguists to design rules for the NER task
and usually target a single language. Therefore, few researchers use rule-based
systems to develop NER systems [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]. Although the knowledge-based approach
can achieve good results, it requires a very exhaustive lexicon in order to work
well. That resulting in ine ciency as entities that don't exist in the lexicon
cannot be recognised [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ].
        </p>
        <p>
          There are common classi ers used for NER task such as Conditional
Random Fields (CRF), Support Vector Machines (SVM), Maximum Entropy (ME),
Decision Trees and Hidden Markov Models (HMM).An important factor in the
machine learning based approach is the features that are used. There are some
features that have been often used in NER systems such as the case of the word,
upper or lower, whether the entity is a digit or contains a digit, and the part
of speech associated with a word. The digit feature is useful in NER as it can
be used to recognize dates, percentages, money, etc., [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. The morphology of a
word can be captured by including pre xes or su xes as features. For example,
a word can be recognized as an organization if it ended with "tech", "ex" or
"soft" [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. To extract features a window is typically passed over the text. An
example of using window feature was proposed by [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] where the part-of-speech
of two words before the current word and two words after was used to recognize
the named entities. Word length (number of characters) has also found to be an
e cient feature for NER task [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
        </p>
        <p>
          The third approach to NER, the hybrid approach, which combines both
rulebased and machine learning to optimize the system performance [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], In this
approach, the output of the rule based system as tagged text is used as input to
the machine learning system).
        </p>
        <p>
          Most of the more recent proposed NER systems are based on recurrent neural
networks (RNN) architecture over characters or word embeddings [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ]. Those
features (word embeddings) are representations of words in n-dimensional space
using unsupervised learning over large collections of unlabeled data. The rst
neural network based approach for NER was proposed by [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]. The system used
feature vectors created from orthographic features (e.g., capitalization of the
rst character), lexicons and dictionaries. Later they replaced these manually
created feature vectors with word embeddings. Since then, and starting with [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ],
implementing neural networks for NER systems have become popular. These
kind of models are attractive because they do not require feature engineering
e orts, and are thus more domain independent. Current research has shown
using pre-trained word embeddings is important for neural network based NER
because they are more e ective and less time and resource consuming [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]. Also,
pre-trained character embeddings is essential for character-based languages such
as Chinese (one Chinese character may represent a word meaning) [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ].
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Arabic NER</title>
        <p>
          A number of research studies have focused on Arabic Named Entity
Recognition ANER. An early attempt for Arabic NER was proposed by [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] where they
used a rule-based approach. Their approach consists of a whitelist
representing a dictionary of names, and grammar in the form of regular expressions to
recognize the named entities. A machine learning-based approach was proposed
by [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ] where they developed an Arabic NER system named ANERsys 1.0.
Linguistic resources have been built by the authors for their experiments including
ANERCorp, the rst freely available manually annotated Arabic NER dataset
and ANERgazet, an Arabic gazetteer. Contextual and gazetteer features were
used in the rst version and then part-of-speech features were added in the
second version which improved the system performance. A hybrid approach which
combines rule-based and machine learning for Arabic NER was proposed by [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
They used the GATE toolkit 1 for the rule-based approach. The ML-based
component used a Decision Tree algorithm. The system used NE tags produced by
the rule-based approach besides other language independent features and Arabic
speci c features.
        </p>
        <p>
          The missing capitalization feature in the Arabic language is compensated for
in some Arabic NER work by using an Arabic morphological analyzer named
Buckwalter [
          <xref ref-type="bibr" rid="ref33">33</xref>
          ]. Among those features provided by Buckwalter is a feature
named English-gloss which provides the English translation for each word in the
input Arabic text. Later a tool named MADA was built on Buckwalter and
upgraded to be named MADAMIRA [
          <xref ref-type="bibr" rid="ref38">38</xref>
          ]. It provides up to 19 orthogonal features.
We used some of those features in our designated models which were proven to
be e cient in Arabic NER models [
          <xref ref-type="bibr" rid="ref38">38</xref>
          ]. More details of the implemented features
produced by MADAMIRA are in the features section.
        </p>
        <p>
          Similar to English, recent work in Arabic NER focuses on developing neural
network based approaches. A neural network based approach for Arabic NER
employing Bi-LSTM and CRF to predict the named entities has been used [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ].
However, their model is missing some techniques such as character
representations and hyper parameters tuning. Another approach proposed by [
          <xref ref-type="bibr" rid="ref40">40</xref>
          ] used
an LSTM neural network model combined with a CNN for character-level
features representation. Their model is well designed but is also missing the
hyperparameter tuning technique to boost the performance. Also, a new e cient
multi-attention technique has been used [
          <xref ref-type="bibr" rid="ref41">41</xref>
          ] which uses a combination of word
embeddings and character embeddings via an embedding-level attention
mechanism. The output is fed into an encoder unit with Bi-LSTM, followed by
another self-attention layer to boost the performance.They evaluated their model
on ACE and ANERCorp and Twitter datasets. Their model achieved relatively
better performance on the ACE dataset which has a di erent tagging style (not
CoNLL-2003 tagging style) and relatively lower performance on Twitter dataset
and that is probably due to the noisy text. Their model evaluation is very
similar to our neural network based model with a slight inprovement in our results
where we are using di erent hyperparameter values.
        </p>
        <p>
          Model learning as well as evaluation requires high quality annotated datasets.
Initial benchmark datasets were generally created by labeling news articles with a
small number of entity types, e.g. CoNLL-2003 [
          <xref ref-type="bibr" rid="ref39">39</xref>
          ] and ANERCorp dataset [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ].
Later, more datasets were created on numerous kinds of text sources including
conversation, Wikipedia articles, and social media such as WNUT-2017 [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ].
Arabic datasets are relatively few compared with English datasets and other
languages. This represents one of the Arabic NER challenges. Some of widely
        </p>
        <sec id="sec-2-2-1">
          <title>1 https://gate.ac.uk/sale/tao/split.html</title>
          <p>
            used Arabic datasets are ANERCorp created by Benajiba [
            <xref ref-type="bibr" rid="ref23">23</xref>
            ] and ACE2
(commercial dataset).
3
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Methodology</title>
      <p>In the proposed models, we implemented both traditional machine learning and
deep learning for running our experiments and evaluated their performance on
di erent datasets (English and Arabic).
3.1</p>
      <sec id="sec-3-1">
        <title>Datasets</title>
        <p>There are ve datasets used in the experimental comparison, two English datasets
and three Arabic datasets. To cover di erent datasets aspects (attributes), we
adopted diversity in the datasets represented in the di erent text source of each
dataset such as newspapers, Wikipedia and social media. Each dataset is split
into training, development and testing sets as indicated in the speci ed Table 1
for the English datasets and Table 2 for the Arabic datasets. The development
set was used for hyperparameter tuning to avoid over tting.</p>
        <p>
          English Datasets CoNLL-2003: This is a benchmark dataset which was
introduced in the Conference on Natural Language Learning (a shared task for named
entity recognition) [
          <xref ref-type="bibr" rid="ref39">39</xref>
          ] and it has been extensively used in the NER task. The
CoNLL-2003 datasets cover several languages and we will focus on the English
dataset. The English data was taken from the Reuters Corpus which consists
of Reuter's news stories between August 1996 and August 1999. There are four
types of named entities in the dataset which are persons (PER), organizations
(ORG), locations (LOC) and miscellaneous names (MISC).
        </p>
        <p>
          WNUT-2017: This high variance dataset was introduced in the Shared Task
on Novel and Emerging Entity Recognition 2017 [
          <xref ref-type="bibr" rid="ref29">29</xref>
          ]. The named entity tags
in this dataset have a wider range including Person, Location (including GPE
(Geo Political Entity)), Facility (center, station, etc.), Group (including
music band, sports team, and non-corporate organizations), Creative work (song,
movie, book, and so on), Corporation and Product (tangible goods, or
wellde ned services). The source of this dataset is comments taken from social
media websites including YouTube comments, Stack Over ow responses, Twitter
text for major events in 2016-2017, un ltered Twitter text 2010, and Reddit
comments.
        </p>
        <p>
          Arabic Datasets ANERCorp: This is a widely used Arabic corpus that was
developed by [
          <xref ref-type="bibr" rid="ref23">23</xref>
          ] and has the same format as the ConLL-2003 dataset. ANERcorp
consists of 316 articles chosen from di erent newspapers for the sake of
generalization. The named entities in this corpus are persons (PER), organizations
(ORG), locations (LOC) and miscellaneous names (MISC).
        </p>
        <sec id="sec-3-1-1">
          <title>2 https://www.ldc.upenn.edu/collaborations/past-projects/ace</title>
          <p>
            AQMAR: This dataset contains 28 hand-annotated Arabic articles collected
from Wikipedia with 74,000 tokens [
            <xref ref-type="bibr" rid="ref31">31</xref>
            ]. The format of this dataset is similar to
CoNLL-2003.
          </p>
          <p>
            WikiFANEGold: This dataset which is part of dataset named \gold-standard
ne-grained NE corpora" was manually created by [
            <xref ref-type="bibr" rid="ref32">32</xref>
            ]. The dataset contains
Wikipedia articles which were selected by choosing the articles that discuss
named entities and considering a fair level of distribution among the classes.
In addition, the textual data extracted from the Wikipedia articles was cleaned
by removing elements such as headings, lists, and captions on images and tables
etc. This dataset consists of 8 coarse-grained classes and 50 ne-grained classes.
The coarse grained named entities in this corpus are PER: Person, ORG:
Organisation, LOC: Location, GPE: Geo-Political, FAC: Facility, VEH: Vehicle,
WEA: Weapon, PRO: Product. We are using coarse grained named entities in
our experiments with a total size of 246,303 tokens.
          </p>
          <p>
            The gazetteers we used in our experiments are ANERgazet [
            <xref ref-type="bibr" rid="ref23">23</xref>
            ] for Arabic
NER and the English gazetteers used by [
            <xref ref-type="bibr" rid="ref30">30</xref>
            ] for English NER which contain
lists of persons, locations and organizations names.
In the traditional machine learning models we implemented supervised machine
learning approaches for the NER task as supervised learning approaches
outperform the unsupervised learning approaches [
            <xref ref-type="bibr" rid="ref20">20</xref>
            ]- [
            <xref ref-type="bibr" rid="ref23">23</xref>
            ]. A variety of classi ers
have been used for NER, however, in our experiments we used Conditional
Random Fields (CRF), Support Vector Machine (SVM) and Random Forest (RF)
algorithms which have been proven to perform well [
            <xref ref-type="bibr" rid="ref10 ref21 ref22">10, 21, 22</xref>
            ].
3.3
          </p>
        </sec>
      </sec>
      <sec id="sec-3-2">
        <title>Features</title>
        <p>Features to be used in the supervised machine learning approaches were selected
based on their performance in other NER research, we used both
languageindependent and language-speci c features. In our proposed models, and in line
with previous research, we used the following features which have been proven
to be e ective:</p>
        <p>
          First, the language-independent features:
{ The 3-character-su x of the word [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ]: word su x information is helpful
to identify NEs. This is based on the observation that the NEs share some
common su xes.
{ The 3-character-pre x of the word [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ].
{ Character length of a word [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ]: this is a logical valued feature used to check
whether the character length of the current word is less than three characters
or not. This is based on the observation that the very short words are rarely
NEs. If the length of the corresponding word is less than or equal to 3 then
the feature values are de ned and denoted by False.
{ Whether the word contains any digit (0-9) [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ]: This feature is helpful in
recognizing miscellaneous NEs, such as time expressions, measurement
expressions and numerical numbers etc.
{ Whether the word contains any punctuation [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ].
{ Previous NE tag: the previous predicted named entity tag of the current
token [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ].
        </p>
        <p>
          Second, the language-speci c features:
{ Whether the word starts with a capital letter (English only).
{ List lookup features (gazetteers) [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ]: a set of binary features which capture
whether the word is present as a speci c entity type in the gazeteer (English
and Arabic).
{ Part of Speech tags [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ]: this feature represents the part of speech tag of
the current word and its surrounding words (two previous and two after)
(English and Arabic).
        </p>
        <p>
          The following are the morphological features generated by MADAMIRA
tool [
          <xref ref-type="bibr" rid="ref38">38</xref>
          ] for the Arabic NER only:
{ Aspect: describes the aspect of an Arabic verb. It has four possible values:
        </p>
        <p>Command, Imperfective, Perfective and Not applicable.
{ Gender: the nominal Gender. This feature has three values: Feminine,
Masculine, Not applicable.
{ Person: indicates the person information. The possible values are: 1st, 2nd,
3rd, Not applicable.
{ Voice: the verb voice. The values for this feature are: Active, Passive, Not
applicable, Unde ned, etc.</p>
        <p>The baseline model (for both English and Arabic NER) we used included the
following features: the 3-character-su x of the word; the 3-character-pre x of the
word; character length of the word; whether the word contains any digit; whether
the word contains any punctuation, the Part of Speech tags and capitalization
(for English NER only).
3.4</p>
      </sec>
      <sec id="sec-3-3">
        <title>Deep Learning Based Models</title>
        <p>
          In this section, we describe the architecture of the neural network used which is
adopted from [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ]. The model uses an end-to-end approach that does not require
language-speci c feature engineering or data pre-processing beyond
implementing pre-trained word embeddings. The recognition accuracy can be improved in
sequence labeling tasks such as named entity recognition by using the sequence
around the word under prediction. Thus, using a Bidirectional Long Short-Term
Memory (Bi-LSTM) model can give good performance [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ]. The Bi-LSTM model
can learn from futuristic and past input features at a particular period of time
(e.g. a window approach). The Bi-LSTM model can learn from the past input
features using the forward pass technique and the futuristic input features using
the backward pass. According to the state-of-the art literature, the Bi-LSTM
model can be combined with a Conditional Random Field (CRF) layer to
enhance the model performance [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ]. The approach of this kind of model is to
inherit the ability of learning futuristic and past input features from the
BiLSTM model and then implement a sentence-level tag to predict the probable
tags with the aid of the CRF layer.
        </p>
        <p>
          In our experiments, we used both word embeddings and character
representation as features for our neural network based model (see Fig. 1). To encode
character-level information of a word, we used convolutional neural networks
(CNNs) for character-level representation. CNNs have been shown to be able
to extract morphological information from characters of words [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ] such as the
word pre x or su x and encode this information into neural representations.
We also choose to use a CNN because we are dealing with the Arabic language.
Since Arabic is rich morphological language, using such a technique for Arabic
NER will identify di erent character-level features (word pre xes and su xes)
through the CNN (see Fig. 2). A combination of character- and word-level
representations then was fed into a Bi-LSTM. We used a sequential CRF on top of
the Bi-LSTM to cooperatively decode labels for the entire sentence.
        </p>
        <p>
          Employing word embeddings bene ts NLP especially when we are dealing
with languages that have many rare words and large vocabularies [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ], such as
Arabic. The nature of the Arabic language, speci cally word in ections,
generates several lexical variations which lead to sparseness in the Arabic corpus. In
our work, for the English NER we used Glove embeddings with 100 dimensions
which is publicly available by Stanford, trained on Wikipedia and web text,
and contains 6 billion words [
          <xref ref-type="bibr" rid="ref27">27</xref>
          ]. For Arabic NER, we used AraVec which is a
pre-trained distributed word embedding [
          <xref ref-type="bibr" rid="ref28">28</xref>
          ]. AraVec is an open source project
which provides free to use Arabic word embeddings trained on more than 3
billion words from web pages and Wikipedia.
3.5
        </p>
      </sec>
      <sec id="sec-3-4">
        <title>Hyperparameter tuning</title>
        <p>
          In our experiments, we used random search for hyperparameters tuning because
it was proven to be more e cient than other tuning approach such as grid
search [
          <xref ref-type="bibr" rid="ref34">34</xref>
          ]. The hyper parameters identi ed for the traditional machine learning
and the neural network based models are stated in Table 3.
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experimental Results and Discussion</title>
      <p>To evaluate our NER models, we used the above mentioned datasets. The
CoNLL2003 dataset splits as training, development and test sets were those o ered by
the benchmark datasets. The rest of datasets were split into 80% for training,
10% for the development set and 10% for testing. The traditional F-score
measure was used to measure the performance. Results for the traditional machine
learning approaches are displayed in Table 3. The baseline model for each
classier included the implementation of the classi er with the language-independent
features listed in the features section. Since we are focusing on Arabic NER
in this paper, we separated the results into two rows for each Arabic dataset.
We compared the models performance using two sets of features, the baseline
language-independent features labeled as Sub and larger feature set, labelled
Full which included the language-speci c features listed in the features section.
Baseline results for the three classi ers are displayed in the columns labelled
SVM, RF and CRF respectively.</p>
      <p>Columns labelled with -P show the results of adding in the previous tag
because it has been shown that this feature has a big e ect on model
performance. We excluded this feature in the CRF model as it is, in e ect, already
included as CRF is a sequential classi er. We also experimented to see the
benet of adding in the use of gazetteers, labelled -G in the table. Results show that
adding gazetteers also boosted the model performance. The columns labelled as
-PG include both the previous tag and gazetteers G.</p>
      <p>From Table 4 we can reveal some information related to the impact of using
previous NE tag and gazetteers features on the performance of each model. On
the CoNLL-2003 dataset, the performance of the models improved dramatically
by using the previous NE tag as well as gazetteers particularly in the SVM
model. The best performance on CoNLL-2003 dataset was achieved by using
CRF model.</p>
      <p>The performance on the WNUT-2017 dataset as we can notice from Table
4 is relatively low due mainly to the noise in the text as it was collected from
social networks. Using the previous NE tag or gazetteers on this dataset didn't
improve the performance. Instead the performance was decreased probably due
to the fact that the previously predicted NE tag is more likely to be wrong
which impacts the overall model performance negatively. The same applies to
gazetteers - it is di cult to provide support in a gazetteer for such noisy text.
However, the CRF model again proved to be relatively successful on this dataset.</p>
      <p>In the Arabic datasets, using both language-independent and language-speci c
features and including the previous predicted NE tag and gazetteers as Full
features enhanced the general performance. The best performance was achieved
using the SVM model on ANERCorp and AQMAR datasets. The models
performance on AQMAR dataset was almost similar to ANERCorp but the
performance on WikiFANEGold dataset was lower which is possibly due to the higher
number of classes in this dataset. The best performance on this dataset was
achieved by using CRF model.</p>
      <p>The performance of the Full feature was better than that of the Sub features
on all Arabic datasets. However, the e ect of using the additional previous NE
tag -P and gazetteer -G is bigger as we notice from Table 4</p>
      <p>Table 5 shows the performance of the deep learning based models. The rst
column in the table labelled Bi-LSTM gives performance using only the
Bidirectional Long Short-Term Memory algorithm. The second column labelled
BiLSTM-CNN gives the performance of the combination of convolution neural
network CNN for character representation and Bi-LSTM. The third column
labelled Bi-LSTM-CNN-CRF gives performance including the addition of
Conditional Random Fields CRF algorithm.</p>
      <p>In general, the performance of the deep learning based models is higher than
the traditional machine learning based models. Again, the performance on the
English datasets is higher than the performance on the Arabic datasets and that
is probably due to the challenges with Arabic NER already discussed. Unlike the
traditional machine learning based models the di erences in performance across
the deep learning based models are small.</p>
      <p>
        The current best performance on the WikiFANEGold dataset [
        <xref ref-type="bibr" rid="ref35">35</xref>
        ] used
Buckwalter transliteration, English gloss, POS and NE tag in their model besides
window-based and dependency-based representation. They created an approach
to capture a global information in the corpus instead of focusing inside the
sentence using a CRF classi er in their model. Both the SVM classi er and the
deep learning approach used in this paper outperform this approach.
      </p>
      <p>
        For the ANERCorp dataset the current best performance [
        <xref ref-type="bibr" rid="ref36">36</xref>
        ] created a
neural network based model which they named Arti cial Neural Network (ANN).
Their approach included three stages: the rst stage was preprocessing the data,
in the second they converted Arabic letters to Roman alphabets and in the nal
stage they applied a neural network to classify their data. They split the dataset
into 90% for the training set and 10% for testing set. However, compared to our
models, they achieved better performance most probably because of the data
pre-processing and converting the Arabic letters to Roman alphabets.
      </p>
      <p>
        For the AQMAR dataset [
        <xref ref-type="bibr" rid="ref37">37</xref>
        ], the authors proposed a model that integrates
various custom-made techniques together, including representation learning (a
model using word embeddings and Bi-LSTM), feature engineering, sequence
labeling, and ensemble learning. They train multiple LSTM-CRF models to
construct the mapping from representations to predictions and then concatenate
their outputs as ensemble learning. Both the SVM-PG and the deep learning
BiLSTM-CNN-CRF approach used in this paper outperformed the state of the art
on this dataset. Our model SVM-PG gave the best performance on this dataset
and this is possibly because in our model, the performance was boosted by
using comprehensive language-speci c features in addition to the previous NE tag
and gazetteers. Also, in our approaches the hyper parameters were tuned using
random search technique while it was neglected in both compared models on
WikiFANEGold and AQMAR.
In this paper, we have explored a variety of di erent approaches to NER on
Arabic text with reference to how these approaches perform also on English
text. The exploration involves evaluating di erent classi ers and features on
a number of datasets. The selected datasets are diverse in terms of contents
source (e.g. news articles, twitter, etc.). We evaluated both language speci c
and language independent features. We found that adopting the language speci c
features and using gazetteers and the previous predicted named entity tag can
achieve higher performance in traditional machine learning based models. Also,
the deep learning based models have higher performance evaluations on the
most of datasets. Our proposed models outperformed the related work on two
Arabic datasets out of three. However, the performance on the English datasets
are higher than the Arabic datasets because of the characteristic of the Arabic
language represented in the morphological ambiguity.
      </p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Nadeau</surname>
            , David, and
            <given-names>Satoshi</given-names>
          </string-name>
          <string-name>
            <surname>Sekine</surname>
          </string-name>
          .
          <article-title>"A survey of named entity recognition and classi cation</article-title>
          .
          <source>" Lingvisticae Investigationes</source>
          <volume>30</volume>
          , no.
          <issue>1</issue>
          (
          <year>2007</year>
          ):
          <fpage>3</fpage>
          -
          <lpage>26</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Habash</surname>
          </string-name>
          , Nizar Y.
          <article-title>"Introduction to Arabic natural language processing</article-title>
          .
          <source>" Synthesis Lectures on Human Language Technologies</source>
          <volume>3</volume>
          , no.
          <issue>1</issue>
          (
          <year>2010</year>
          ):
          <fpage>1</fpage>
          -
          <lpage>187</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Farber</surname>
            , Benjamin, Dayne Freitag, Nizar Habash, and
            <given-names>Owen</given-names>
          </string-name>
          <string-name>
            <surname>Rambow</surname>
          </string-name>
          .
          <article-title>"Improving NER in Arabic Using a Morphological Tagger."</article-title>
          <source>In LREC</source>
          .
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Rau</surname>
          </string-name>
          , Lisa F.
          <article-title>"Extracting company names from text."</article-title>
          <source>In [1991] Proceedings. The Seventh IEEE Conference on Arti cial Intelligence Application</source>
          , vol.
          <volume>1</volume>
          , pp.
          <fpage>29</fpage>
          -
          <lpage>32</lpage>
          . IEEE,
          <year>1991</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Gaizauskas</surname>
            , Robert, Takahiro Wakao, Kevin Humphreys, Hamish Cunningham, and
            <given-names>Yorick</given-names>
          </string-name>
          <string-name>
            <surname>Wilks</surname>
          </string-name>
          .
          <article-title>"UNIVERSITY OF SHEFFIELD: DESCRIPTION OF THE LaSIE SYSTEMAS USED FOR MUC-6."</article-title>
          <source>In MUC-6:, November 6-8</source>
          ,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>Segura</given-names>
            <surname>Bedmar</surname>
          </string-name>
          , Isabel, Paloma Mart nez, and
          <article-title>Mar a Herrero Zazo. "Semeval-2013 task 9: Extraction of drug-drug interactions from biomedical texts</article-title>
          (ddiextraction
          <year>2013</year>
          ).
          <source>" ACL</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Shaalan</surname>
            , Khaled, and
            <given-names>Hafsa</given-names>
          </string-name>
          <string-name>
            <surname>Raza</surname>
          </string-name>
          .
          <article-title>"Arabic named entity recognition from diverse text types."</article-title>
          <source>In Int Conf on NLP</source>
          , pp.
          <fpage>440</fpage>
          -
          <lpage>451</lpage>
          . Springer, Berlin, Heidelberg,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Bick</surname>
          </string-name>
          , Eckhard.
          <article-title>"A Named Entity Recognizer for Danish."</article-title>
          <source>In LREC</source>
          .
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Chieu</surname>
          </string-name>
          , Hai Leong, and Hwee Tou Ng.
          <article-title>"Named entity recognition: a maximum entropy approach using global information."</article-title>
          <source>In Proceedings of the 19th Int Conf on Computational linguistics-Volume</source>
          <volume>1</volume>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>7</lpage>
          . ACL,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Abdul-Hamid</surname>
            , Ahmed, and
            <given-names>Kareem</given-names>
          </string-name>
          <string-name>
            <surname>Darwish</surname>
          </string-name>
          .
          <article-title>"Simpli ed feature set for Arabic named entity recognition."</article-title>
          <source>In Proceedings of the 2010 Named Entities Workshop</source>
          , pp.
          <fpage>110</fpage>
          -
          <lpage>115</lpage>
          . ACL,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Petasis</surname>
            , Georgios, Frantz Vichot, Francis Wolinski, Georgios Paliouras, Vangelis Karkaletsis, and
            <given-names>Constantine D.</given-names>
          </string-name>
          <string-name>
            <surname>Spyropoulos</surname>
          </string-name>
          .
          <article-title>"Using machine learning to maintain rule-based named-entity recognition and classi cation systems."</article-title>
          <source>In Proceedings of the 39th Annual Meeting on ACL</source>
          , pp.
          <fpage>426</fpage>
          -
          <lpage>433</lpage>
          .,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Kim</surname>
          </string-name>
          , Yoon, Yacine Jernite, David Sontag, and
          <string-name>
            <surname>Alexander</surname>
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Rush</surname>
          </string-name>
          .
          <article-title>"Characteraware neural language models."</article-title>
          <source>In Thirtieth AAAI Conference on Arti cial Intelligence</source>
          .
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Collobert</surname>
            , Ronan, Jason Weston, Leon Bottou, Michael Karlen, Koray Kavukcuoglu, and
            <given-names>Pavel</given-names>
          </string-name>
          <string-name>
            <surname>Kuksa</surname>
          </string-name>
          .
          <article-title>"Natural language processing (almost) from scratch</article-title>
          .
          <source>" Journal of machine learning research 12</source>
          , no.
          <source>Aug</source>
          (
          <year>2011</year>
          ):
          <fpage>2493</fpage>
          -
          <lpage>2537</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Collobert</surname>
            , Ronan, and
            <given-names>Jason</given-names>
          </string-name>
          <string-name>
            <surname>Weston</surname>
          </string-name>
          .
          <article-title>"A uni ed architecture for natural language processing: Deep neural networks with multitask learning."</article-title>
          <source>In Proceedings of the 25th international conference on Machine learning</source>
          , pp.
          <fpage>160</fpage>
          -
          <lpage>167</lpage>
          . ACM,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Habibi</surname>
            , Maryam, Leon Weber,
            <given-names>Mariana</given-names>
          </string-name>
          <string-name>
            <surname>Neves</surname>
            , David Luis Wiegandt, and
            <given-names>Ulf</given-names>
          </string-name>
          <string-name>
            <surname>Leser</surname>
          </string-name>
          .
          <article-title>"Deep learning with word embeddings improves biomedical named entity recognition</article-title>
          .
          <source>" Bioinformatics</source>
          <volume>33</volume>
          , no.
          <volume>14</volume>
          (
          <year>2017</year>
          ):
          <fpage>i37</fpage>
          -
          <lpage>i48</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Yin</surname>
            , Rongchao, Quan Wang,
            <given-names>Peng</given-names>
          </string-name>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>Rui</given-names>
          </string-name>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>and Bin</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
          </string-name>
          .
          <article-title>"Multi-granularity chinese word embedding."</article-title>
          <source>In Proceedings of the 2016 conference on empirical methods in natural language processing</source>
          , pp.
          <fpage>981</fpage>
          -
          <lpage>986</lpage>
          .
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Sa</surname>
            'a,
            <given-names>D. A.</given-names>
          </string-name>
          <string-name>
            <surname>Alzboun</surname>
            , Saia Khaled Tawalbeh, Mohammad Al-Smadi, and
            <given-names>Yaser</given-names>
          </string-name>
          <string-name>
            <surname>Jararweh</surname>
          </string-name>
          .
          <article-title>"Using bidirectional long short-term memory and conditional random elds for labeling arabic named entities: A comparative study</article-title>
          .
          <source>" In 2018 Fifth Int Conf on Social Networks Analysis, Management and Security (SNAMS)</source>
          , pp.
          <fpage>135</fpage>
          -
          <lpage>140</lpage>
          . IEEE,
          <year>2018</year>
          .ties.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Benajiba</surname>
            , Yassine, and
            <given-names>Paolo</given-names>
          </string-name>
          <string-name>
            <surname>Rosso</surname>
          </string-name>
          .
          <article-title>"ANERsys 2.0: Conquering the NER Task for the Arabic Language by Combining the Maximum Entropy with POS-tag Information."</article-title>
          <source>In IICAI</source>
          , pp.
          <fpage>1814</fpage>
          -
          <lpage>1823</lpage>
          .
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Derczynski</surname>
            , Leon, Eric Nichols, Marieke van Erp,
            <given-names>and Nut</given-names>
          </string-name>
          <string-name>
            <surname>Limsopatham</surname>
          </string-name>
          .
          <article-title>"Results of the WNUT2017 shared task on novel and emerging entity recognition."</article-title>
          <source>In Proceedings of the 3rd Workshop on Noisy User-generated Text</source>
          , pp.
          <fpage>140</fpage>
          -
          <lpage>147</lpage>
          .
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20. AbdelRahman, Samir, Mohamed Elarnaoty, Marwa Magdy, and
          <string-name>
            <given-names>Aly</given-names>
            <surname>Fahmy</surname>
          </string-name>
          .
          <article-title>"Integrated machine learning techniques for Arabic named entity recognition</article-title>
          .
          <source>" IJCSI 7</source>
          (
          <year>2010</year>
          ):
          <fpage>27</fpage>
          -
          <lpage>36</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Abdul-Hamid</surname>
            , Ahmed, and
            <given-names>Kareem</given-names>
          </string-name>
          <string-name>
            <surname>Darwish</surname>
          </string-name>
          .
          <article-title>"Simpli ed feature set for Arabic named entity recognition."</article-title>
          <source>In Proceedings of the 2010 Named Entities Workshop</source>
          , pp.
          <fpage>110</fpage>
          -
          <lpage>115</lpage>
          . Association for Computational Linguistics,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Ekbal</surname>
            , Asif, and
            <given-names>Sivaji</given-names>
          </string-name>
          <string-name>
            <surname>Bandyopadhyay</surname>
          </string-name>
          .
          <article-title>"Named entity recognition using support vector machine: A language independent approach."</article-title>
          <source>International Journal of Electrical, Computer, and Systems Engineering</source>
          <volume>4</volume>
          , no.
          <issue>2</issue>
          (
          <year>2010</year>
          ):
          <fpage>155</fpage>
          -
          <lpage>170</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <given-names>Y.</given-names>
            <surname>Benajiba</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , and
          <string-name>
            <surname>J. M.</surname>
          </string-name>
          <article-title>Bened ruiz, \Anersys: An arabic named entity recognition system based on maximum entropy,"</article-title>
          <source>in Int Conf on Intelligent Text Processing and Computational Linguistics</source>
          ,
          <year>2007</year>
          , pp.
          <volume>143</volume>
          {
          <fpage>153</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Lample</surname>
            , Guillaume, Miguel Ballesteros, Sandeep Subramanian, Kazuya Kawakami, and
            <given-names>Chris</given-names>
          </string-name>
          <string-name>
            <surname>Dyer</surname>
          </string-name>
          .
          <article-title>"Neural architectures for named entity recognition</article-title>
          .
          <source>" arXiv preprint arXiv:1603.01360</source>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>Chiu</surname>
          </string-name>
          ,
          <string-name>
            <surname>Jason</surname>
            <given-names>PC</given-names>
          </string-name>
          , and
          <string-name>
            <given-names>Eric</given-names>
            <surname>Nichols</surname>
          </string-name>
          .
          <article-title>"Named entity recognition with bidirectional LSTM-CNNs." Transactions of the ACL 4 (</article-title>
          <year>2016</year>
          ):
          <fpage>357</fpage>
          -
          <lpage>370</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>Zirikly</surname>
            , Ayah, and
            <given-names>Mona</given-names>
          </string-name>
          <string-name>
            <surname>Diab</surname>
          </string-name>
          .
          <article-title>"Named entity recognition for arabic social media."</article-title>
          <source>In Proceedings of the 1st Workshop on Vector Space Modeling for Natural Language Processing</source>
          , pp.
          <fpage>176</fpage>
          -
          <lpage>185</lpage>
          .
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <surname>Pennington</surname>
            , Je rey, Richard Socher, and
            <given-names>Christopher</given-names>
          </string-name>
          <string-name>
            <surname>Manning</surname>
          </string-name>
          .
          <article-title>"Glove: Global vectors for word representation."</article-title>
          <source>In Proceedings of the 2014 conference on empirical methods in natural language processing (EMNLP)</source>
          , pp.
          <fpage>1532</fpage>
          -
          <lpage>1543</lpage>
          .
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>Soliman</surname>
          </string-name>
          , Abu Bakr, Kareem Eissa, and
          <string-name>
            <surname>Samhaa</surname>
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>El-Beltagy</surname>
          </string-name>
          .
          <article-title>"Aravec: A set of arabic word embedding models for use in arabic nlp</article-title>
          .
          <source>" Procedia Computer Science</source>
          <volume>117</volume>
          (
          <year>2017</year>
          ):
          <fpage>256</fpage>
          -
          <lpage>265</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          29.
          <string-name>
            <surname>Derczynski</surname>
            , Leon, Eric Nichols, Marieke van Erp,
            <given-names>and Nut</given-names>
          </string-name>
          <string-name>
            <surname>Limsopatham</surname>
          </string-name>
          .
          <article-title>"Results of the WNUT2017 shared task on novel and emerging entity recognition."</article-title>
          <source>In Proceedings of the 3rd Workshop on Noisy User-generated Text</source>
          , pp.
          <fpage>140</fpage>
          -
          <lpage>147</lpage>
          .
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          30.
          <string-name>
            <surname>Nadeau</surname>
            , David,
            <given-names>Peter D.</given-names>
          </string-name>
          <string-name>
            <surname>Turney</surname>
            , and
            <given-names>Stan</given-names>
          </string-name>
          <string-name>
            <surname>Matwin</surname>
          </string-name>
          .
          <article-title>"Unsupervised named-entity recognition: Generating gazetteers and resolving ambiguity." In Conference of the Canadian society for computational studies of intelligence</article-title>
          , pp.
          <fpage>266</fpage>
          -
          <lpage>277</lpage>
          . Springer, Berlin, Heidelberg,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          31.
          <string-name>
            <surname>Mohit</surname>
          </string-name>
          , Behrang, Nathan Schneider, Rishav Bhowmick, Kemal O azer, and
          <string-name>
            <surname>Noah</surname>
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Smith.</surname>
          </string-name>
          <article-title>"Recall-oriented learning of named entities in Arabic Wikipedia."</article-title>
          <source>In Proceedings of the 13th Conf of the European Chapter of the ACL</source>
          , pp.
          <fpage>162</fpage>
          -
          <lpage>173</lpage>
          .,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          32.
          <string-name>
            <surname>Alotaibi</surname>
            , Fahd, and
            <given-names>Mark</given-names>
          </string-name>
          <string-name>
            <surname>Lee</surname>
          </string-name>
          .
          <article-title>"A hybrid approach to features representation for ne-grained Arabic named entity recognition."</article-title>
          <source>In Proceedings of COLING</source>
          <year>2014</year>
          ,
          <source>the 25th Int Conf on Computational Linguistics: Technical Papers</source>
          , pp.
          <fpage>984</fpage>
          -
          <lpage>995</lpage>
          .
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          33.
          <string-name>
            <surname>Buckwalter</surname>
          </string-name>
          , Tim.
          <article-title>"Issues in Arabic orthography and morphology analysis." In proceedings of the workshop on computational approaches to Arabic script-based languages</article-title>
          , pp.
          <fpage>31</fpage>
          -
          <lpage>34</lpage>
          . ACL,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          34.
          <string-name>
            <surname>Bergstra</surname>
            , James, and
            <given-names>Yoshua</given-names>
          </string-name>
          <string-name>
            <surname>Bengio</surname>
          </string-name>
          .
          <article-title>"Random search for hyper-parameter optimization</article-title>
          .
          <source>" Journal of Machine Learning Research</source>
          <volume>13</volume>
          , no.
          <source>Feb</source>
          (
          <year>2012</year>
          ):
          <fpage>281</fpage>
          -
          <lpage>305</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          35.
          <string-name>
            <surname>Alotaibi</surname>
            , Fahd, and
            <given-names>Mark</given-names>
          </string-name>
          <string-name>
            <surname>Lee</surname>
          </string-name>
          .
          <article-title>"A hybrid approach to features representation for ne-grained arabic named entity recognition."</article-title>
          <source>In Proceedings of COLING</source>
          <year>2014</year>
          ,
          <source>the 25th Int Conf on Computational Linguistics: Technical Papers</source>
          , pp.
          <fpage>984</fpage>
          -
          <lpage>995</lpage>
          .
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          36.
          <string-name>
            <surname>Mohammed</surname>
            , Naji F.,
            <given-names>and Nazlia</given-names>
          </string-name>
          <string-name>
            <surname>Omar</surname>
          </string-name>
          .
          <article-title>"Arabic named entity recognition using arti cial neural network</article-title>
          .
          <source>" Journal of Computer Science</source>
          <volume>8</volume>
          , no.
          <issue>8</issue>
          (
          <year>2012</year>
          ):
          <fpage>1285</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          37.
          <string-name>
            <surname>Liu</surname>
            , Liyuan,
            <given-names>Jingbo</given-names>
          </string-name>
          <string-name>
            <surname>Shang</surname>
          </string-name>
          , and Jiawei Han.
          <article-title>"Arabic Named Entity Recognition: What Works and What's Next."</article-title>
          <source>In Proceedings of the Fourth Arabic NLP Workshop</source>
          , pp.
          <fpage>60</fpage>
          -
          <lpage>67</lpage>
          .
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          38.
          <string-name>
            <surname>Pasha</surname>
            , Arfath, Mohamed Al-Badrashiny, Mona T. Diab, Ahmed El Kholy, Ramy Eskander, Nizar Habash, Manoj Pooleery, Owen Rambow, and
            <given-names>Ryan</given-names>
          </string-name>
          <string-name>
            <surname>Roth</surname>
          </string-name>
          .
          <article-title>"Madamira: A fast, comprehensive tool for morphological analysis and disambiguation of arabic."</article-title>
          <source>In LREC</source>
          , vol.
          <volume>14</volume>
          , pp.
          <fpage>1094</fpage>
          -
          <lpage>1101</lpage>
          .
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          39.
          <string-name>
            <surname>Sang</surname>
          </string-name>
          , Erik F., and Fien De Meulder.
          <article-title>"Introduction to the CoNLL-2003 shared task: Language-independent named entity recognition." arXiv preprint cs/0306050 (</article-title>
          <year>2003</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref40">
        <mixed-citation>
          40.
          <string-name>
            <surname>Khalifa</surname>
            , Muhammad, and
            <given-names>Khaled</given-names>
          </string-name>
          <string-name>
            <surname>Shaalan</surname>
          </string-name>
          .
          <article-title>"Character convolutions for Arabic Named Entity Recognition with Long Short-Term Memory Networks."</article-title>
          <source>Computer Speech and Language</source>
          <volume>58</volume>
          (
          <year>2019</year>
          ):
          <fpage>335</fpage>
          -
          <lpage>346</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref41">
        <mixed-citation>
          41.
          <string-name>
            <surname>Khalifa</surname>
            , Muhammad, and
            <given-names>Khaled</given-names>
          </string-name>
          <string-name>
            <surname>Shaalan</surname>
          </string-name>
          .
          <article-title>"Character convolutions for Arabic Named Entity Recognition with Long Short-Term Memory Networks."</article-title>
          <source>Computer Speech and Language</source>
          <volume>58</volume>
          (
          <year>2019</year>
          ):
          <fpage>335</fpage>
          -
          <lpage>346</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>