• No results found

Multilabel text classification of public procurements using deep learning intent detection

N/A
N/A
Protected

Academic year: 2021

Share "Multilabel text classification of public procurements using deep learning intent detection"

Copied!
68
0
0

Loading.... (view fulltext now)

Full text

(1)

IN

DEGREE PROJECT MATHEMATICS, SECOND CYCLE, 30 CREDITS

STOCKHOLM SWEDEN 2019,

Multilabel text classification of

public procurements using deep

learning intent detection

ADIN SUTA

KTH ROYAL INSTITUTE OF TECHNOLOGY

(2)
(3)

Multilabel text classification of

public procurements using deep

learning intent detection

ADIN SUTA

Degree Projects in Mathematical Statistics (30 ECTS credits)

Master's Programme in Applied and Computational Mathematics (120 credits) KTH Royal Institute of Technology year 2019

Supervisor at E-avrop: Joakim Poromaa Helger Supervisor at KTH: Tatjana Pavlenko

Examiner at KTH: Tatjana Pavlenko

(4)

TRITA-SCI-GRU 2019:089 MAT-E 2019:45

Royal Institute of Technology School of Engineering Sciences KTH SCI

SE-100 44 Stockholm, Sweden URL: www.kth.se/sci

(5)

Abstract

Textual data is one of the most widespread forms of data and the amount of such data available in the world increases at a rapid rate. Text can be understood as either a se- quence of characters or words, where the latter approach is the most common. With the breakthroughs within the area of applied artificial intelligence in recent years, more and more tasks are aided by automatic processing of text in various applications. The models introduced in the fol- lowing sections rely on deep-learning sequence-processing in order to process and text to produce a regression algo- rithm for classification of what the text input refers to. We investigate and compare the performance of several model architectures along with different hyperparameters.

The data set was provided by e-Avrop, a Swedish com- pany which hosts a web platform for posting and bidding of public procurements. It consists of titles and descriptions of Swedish public procurements posted on the website of e-Avrop, along with the respective category/categories of each text.

When the texts are described by several categories (multi label case) we suggest a deep learning sequence-processing regression algorithm, where a set of deep learning classifiers are used. Each model uses one of the several labels in the multi label case, along with the text input to produce a set of text - label observation pairs. The goal becomes to investigate whether these classifiers can carry out different levels of intent, an intent which should theoretically be im- posed by the different training data sets used by each of the individual deep learning classifiers.

(6)
(7)

Referat

Data i form av text ¨ar en av de mest utbredda formerna av data och m¨angden tillg¨anglig textdata runt om i v¨arlden

¨okar i snabb takt. Text kan tolkas som en f¨oljd av bokst¨aver eller ord, d¨ar tolkning av text i form av ordf¨oljder ¨ar abso- lut vanligast. Genombrott inom artificiell intelligens under de senaste ˚aren har medf¨ort att fler och fler arbetsuppgif- ter med koppling till text assisteras av automatisk text- bearbetning. Modellerna som introduceras i denna uppsats

¨

ar baserade p˚a djupa artificiella neuronn¨at med sekventi- ell bearbetning av textdata, som med hj¨alp av regression orutsp˚ar tillh¨orande ¨amnesomr˚ade f¨or den inmatade tex- ten. Flera modeller och tillh¨orande hyperparametrar utreds och j¨amf¨ors enligt prestanda.

Datam¨angden som anv¨ants ¨ar tillhandah˚allet av e-Avrop, ett svenskt f¨oretag som erbjuder en webbtj¨anst f¨or offent- ligg¨orande och budgivning av offentliga upphandlingar. Da- tam¨angden best˚ar av titlar, beskrivningar samt tillh¨orande

¨amneskategorier f¨or offentliga upphandlingar inom Sverige, tagna fr˚an e-Avrops webtj¨anst.

ar texterna ¨ar m¨arkta med ett flertal kategorier, f¨oresl˚as en algoritm baserad p˚a ett djupt artificiellt neuronn¨at med sekventiell bearbetning, d¨ar en m¨angd klassificeringsmodel- ler anv¨ands. Varje s˚adan modell anv¨ander en av de m¨arkta kategorierna tillsammans med den tillh¨orande texten, som skapar en m¨angd av text - kategori par. M˚alet ¨ar att ut- reda huruvida dessa klassificerare kan uppvisa olika former av upps˚at som teoretiskt sett borde vara medf¨ort fr˚an de olika datam¨angderna modellerna mottagit.

(8)
(9)

Acknowledgements

I would like to thank my family for supporting me in the period of working on this thesis, and during the entirety of my studies. I would like to thank Joakim Poromaa Helger for providing the data set and for being available to explain all my questions regarding it. Finally I would like to thank Tatjana Pavlenko for the help, feedback and guidance regarding the work on this thesis.

(10)
(11)

Contents

1 Introduction 1

1.1 Background . . . 2

1.1.1 Company description and background information . . . 2

1.1.2 Description of the CPV code system . . . 2

1.2 Problem . . . 3

1.3 Purpose . . . 3

1.4 Goal . . . 4

1.5 Methodology . . . 5

1.6 Delimitation . . . 5

1.7 Outline . . . 6

2 Extended background 7 2.1 Natural language processing . . . 7

2.2 Word embedding . . . 7

2.2.1 Word embedding from n-grams . . . 8

2.3 Artificial Neural network . . . 10

2.3.1 Fully connected neural network . . . 10

2.3.2 Recurrent neural network . . . 12

2.3.3 Attention in neural networks . . . 17

2.3.4 Training of artificial neural networks . . . 18

2.3.5 Neural networks for regression . . . 20

3 Methods 22 3.1 Data . . . 22

3.2 Input space . . . 24

3.3 Output space . . . 26

3.4 Loss function . . . 27

3.5 Validation . . . 27

3.6 Training models . . . 28

3.6.1 Single label case . . . 28

3.6.2 Multi label case . . . 29

4 Results 32

(12)

set . . . 35

5 Discussion 42 5.1 Performance of neural networks . . . 42

5.1.1 Input space . . . 42

5.1.2 Output space . . . 43

5.2 Deep learning classifiers with intent . . . 43

5.3 Future work . . . 44

6 Conclusion 45

Bibliography 46

(13)

List of Figures

1.1 A part of the CPV-code tree from the e-Avrop website search function. 3 2.1 An illustration of the word distance in the vector space. Reproduced

from Vector Representations of Words [10]. . . . 8

2.2 An single neuron with four inputs. Reproduced from Goldberg and Hirst [15]. . . 11

2.3 Feed-forward neural network with two hidden layers. Reproduced from Goldberg and Hirst [15]. . . 11

2.4 Graphical representation of an RNN (recursive). Reproduced from Gold- berg and Hirst [15]. . . 13

2.5 Graphical representation of the computing of a biRNN of the word jumped. The input sequence to the biRNN is the sentence “the brown fox jumped over the dog. Reproduced from Goldberg and Hirst [15]. . . 14

2.6 Computing the biRNN* for the sentence “the brown fox jumped.” Re- produced from Goldberg and Hirst [15]. . . 15

3.1 Frequency of observations in each of the most general categories. All observations of the 30 000 public procurements are plotted. . . 23

3.2 Frequency of observations in each of the most general categories. All observations of the 30 000 public procurements are plotted. . . 24

3.3 Histogram made out of all observation of number of words per title. . . 25

3.4 Histogram made out of all observation of number of words per description. 25 3.5 Histogram of number of codes per CPV code description. . . 26

3.6 Cross Validation - example of data partition if 20 data points into 4 subsets, train on 3 subsets and test on 1 subset. Reproduced from K fold and other cross-validation techniques [31]. . . . 28

3.7 Depth of nodes illustrated. . . 29

4.1 Training and validation loss of the GRU max model. . . 32

4.2 Training and validation loss of the LSTM max model. . . 33

4.3 Training and validation loss of the LSTM conv model. . . 33

4.4 Training and validation loss of the GRU att model. . . 34

4.5 Training and validation loss of the LSTM att model. . . 34

(14)

4.7 Training and validation loss of the GRU att model for the ”Ties 1” data set. . . 36 4.8 Training and validation loss of the GRU att model for the ”Ties 2” data

set. . . 36 4.9 Training and validation loss of the GRU att model for the ”detailed”

data set. . . 37 4.10 Training and validation loss of the GRU att model for the ”general” data

set. . . 38 4.11 Training and validation loss of the GRU att model for the ”Ties 1” data

set. . . 38 4.12 Training and validation loss of the GRU att model for the ”Ties 2” data

set. . . 39 4.13 Training and validation loss of the GRU att model for the ”detailed”

data set. . . 39 4.14 Histogram of classification depth for the general/detailed model. . . 40

(15)

List of Tables

3.1 Table of models tested in the single-label case. . . 28 3.2 Table of input/output dimensions of the ANN. . . 29 4.1 Table of difference in average classification depth between the different

deep learning classifiers. . . 41

(16)
(17)

Chapter 1

Introduction

The history of writing is the development of expressing language by letters or other marks which traces back to at least two ancient civilizations [1]. Both in ancient Sumer (Mesopotamia) between 3400 and 3300 BC and much later in Mesoamerica at around 300 BC, the concept of writing was conceived independently [2]. Written language enables humans to capture and convey complex messages which in turn allows for spreading of information and knowledge around the world. Today, and since the beginning of the first written text, we are accumulating more and more information over time which with the advancement of information technology allows for storage of unprecedented amounts of data, while becoming more accessible than ever before.

To program computers to understand human written language is a task which has been in development ever since the initial rise of computational machines. Nat- ural language processing (NLP) is the subfield of computer science, information engineering and artificial intelligence concerned with the interactions between hu- man (natural) languages and computers, in particular processing and analyzing large amounts natural language data. In many industries, effective automated text classification could be of great use to quickly sort through and analyze large amounts of data, assisting humans in such tasks or perhaps some day completely replacing text classification tasks which rely on human analysis.

Recently, state of the art text classification algorithms has often relied on numer- ical vector representations of natural language words (word embeddings) [3]. These models are able to represent words from natural language as numbers, allowing this information to be processed by a computer via a classification algorithm. The word representations are trained using large corpuses of millions of words, where a vector space is created and word similarity is easily captured. This is useful in deep learning, where words are transformed into numbers and fed into an artificial neural network (ANN).

In this thesis, the task of automating manual text classification was implemented to handle the problem of categorization of public procurements in Sweden. Using the CPV code (Common public Procurement Vocabulary code) categorization system,

(18)

which is standardized in the EU, titles and descriptions of public procurements were used in order to classify them into one or several categories.

1.1 Background

1.1.1 Company description and background information

E-avrop s a Swedish company that provides a web platform for public procure- ments. The system enables a fully digitized procurement and purchasing process and is used by a large number of Swedish municipalities and government agencies, including Swedavia, the Swedish Work Environment Authority, PRV and others.

The company has 13 employees in Sweden with its head office in Danderyd.

1.1.2 Description of the CPV code system

In order to make each public procurement easily accessible and understandable for clients in EU, the Common Procurement Vocabulary (CPV) was introduced [4]. It is mandatory to classify each public procurement with regards to the CPV system since the 1st of february 2006 in EU.

The idea of the classification is that the contracting authority must choose the CPV code that best matches the current need and the object of the procurement. It is the object of the procurement that governs which CPV code to specify. When appro- priate and for better coding, multiple CPV codes can be used. If it is not possible to find a suitable and exact code, the contracting authority may instead make a reference to a suitable main group, subgroup or category.

In order for potential suppliers to be able to find relevant procurements, it is impor- tant that the contracting authority makes a correct CPV coding of the procurement, and that the supplier monitors the correct CPV codes based on what one wishes to deliver. Although the purchaser has the task of choosing the correct CPV code, this coding can be defective. The potential suppliers can often lack knowledge of the CPV classification system, which also means they miss out on contracts.

Each language has its own definition list, where the CPV code and its description exist. Such a description for the CPV code 30100000 may look like the following:

1. 30100000 - Kontorsmaskiner, kontorsutrustning och kontorsmateriel, utom datorer, skrivare och m¨obler (swedish description)

2. 30100000 - Office machinery, equipment and supplies except computers, printers and furniture (english description)

A Swedish contractor can thus advertise with the code 30100000 and ensure that even an English supplier will find it, provided that the English supplier monitors the specific code.

Since the codes are hierarchically structured, the collection is usually called a CPV tree. The following example shows how the structure can look.

(19)

1.2. PROBLEM

1. 30000000 - Office machinery, equipment and supplies except computers, printers and furniture

1.1. 30100000 Office machines, office equipment and office supplies, except computers, printers and furniture

1.2. 30200000 Computers and computer supplies

Figure 1.1: A part of the CPV-code tree from the e-Avrop website search function.

1.2 Problem

When classification of public procurements is done by a human, the classification process is straight forward: the number of CPV codes used to classify a public procurement should be enough so that the number of codes correctly capture all the categories in which the procurement belongs while excluding categories which are superfluous. This is therefore a case of multi label classification where each observation (title and description of the public procurement) belongs to one or several labels. Naturally, a classification needs to not only have correct labels but also correct amount of labels, which the classification algorithm needs to account for.

1.3 Purpose

The purpose of this thesis is to propose a way of multi label text classification with deep learning and pre-trained word embeddings. By choosing different training sets

(20)

for several ANN classifiers, the ANN’s focus on different parts of the data and have different intent. The main research question is therefore:

Can we construct a set of deep learning text classifiers where each classifier captures different characteristics of a text and provides differ- ent behaviour of classification?

The above research question will be evaluated according to 1) effectiveness, 2) applicability (on the specific data set used in the thesis).

1. Effectiveness: Performance of the models and how well the models capture different characteristics of a text.

2. Applicability: Applicability means the right amount of classifiers, observa- tions and labels to be used.

Evaluating different deep learning models according to performance on the partic- ular data set of public procurements and their respective differences is a way of measuring effectiveness. Note that applicability is subject to interpretation, but motivation of why certain methods and models are used is a way of presenting the applicability on a particular multi label data set. Different multi label text classifi- cation problems require a different amount of classifiers in order to capture different levels of intent.

1.4 Goal

The goal of this thesis is related to the purpose discussed in the previous section.

In order to be able to answer the research question and evaluate the answer the following goals need to be achieved:

1. Analysis of the particular data set at hand, motivating the right amount classifiers and the input/output of the deep learning model.

2. Suitable choice of structure for the deep learning text classification model in order to provide a base for the multi label case.

3. Analysis and evaluation of performance and applicability to be able to moti- vate the answer to the research question.

In this work, a way of handling multi label text classification is presented which on one hand relies on the deep learning model, and on the other hand relies on the feature extractions and understanding of the particular problem at hand. The former is mainly evaluated using the comparison of different models and is required to evaluate the latter. In order to be able to handle the multi label case of text clas- sification, the deep learning model must be chosen with care, with the applicability being a challenge since the measurement of applicability is not easily defined.

(21)

1.5. METHODOLOGY

1.5 Methodology

Today, there are several high-quality pre-trained word embeddings available that could be used as a transformation from natural language into vector representations of words. In this thesis, fastText from facebook was chosen as the input word embedding for the ANN used to classify public procurements. The reason is that the skip-gram model on which fastText is based on is state of the art while at the same time being trained at n-gram level. When the word embeddings are trained, they are not only trained on words but on word decompositions, so called n-grams. This is particularly useful in languages such as Swedish and German where compounding of words is very common. For this reason, out-of-vocabulary words are represented by their n-grams and always have a vector representation while misspellings are also evaluated by their n-gram. This makes fastText a robust word embedding, especially useful as a tool to interpret the Swedish language.

The idea behind the architecture of the ANN models is that natural language is sequential in its nature (the next word depend on the previous word) which makes sequential encoders such as bidirectional LSTM and GRU layers viable in the first stage of the encoding process. The summation (convolutions, attention or capsule layers for example) are used as a way of summarizing the encoded text, while at the end of the models classifying with a fully connected layer. These models have become standard in the NLP community in the past few years when using neural networks for text classification tasks.

Based on these results, an ANN model is presented which performs best against other models of similar structure, by dividing the data into training and validation sets. In order to choose a proper amount of classifiers used in the final multi label classifier, the data is carefully analyzed to evaluate the applicability of these classifiers on the public procurements. The data is analyzed according to how many labels per observations is most common, the structure and behaviour these labels usually follow.

1.6 Delimitation

In this thesis we only experiment with fastText word embeddings while other word embeddings are not used. Performance of the models may be different than if other word embeddings would be used.

The ANN models are similar in nature, because of the assumption that sequen- tial data like text works best with a sequential encoder, a summation part and a final classification part. It is possible that other structures are more effective, but a delimitation was made in how many ANN models are tested and compared.

(22)

1.7 Outline

The structure of the thesis is as follows. In chapter 2, the mathematical theory of word embeddings and deep learning methods are presented. In chapter 3, the data is visualized in a way that the reader can understand the motivation behind the chosen methods, motivating the choice of models used later on. We then explain the chosen methods of handling input data, output data and single/multi label data.

In chapter 4, the results are presented. The results are divided into two categories, the single label and the multi label case. In chapter 5, these results are discussed and evaluated according to the research question. Chapter 6 contains conclusions from the experiments along with proposed valid future works.

(23)

Chapter 2

Extended background

2.1 Natural language processing

Natural language processing (NLP) also called computational linguistics is the sub- field of computer science concerned with the interactions between computer lan- guage and human (natural language). The earliest research in NLP is generally considered to have started in the 1950s where the so called Turing test was intro- duced, proposing a test in machine intelligence which to this day is widely known.

The Turing test, developed by Alan Turing in 1950, is a test of a machines ability to posses indistinguishable human behaviour and to appear to have human like intel- ligence and interaction. The test is based on a machines ability to analyze, process and contribute in an interaction based in a human language [5].

Up until the 1980s, the area of NLP relied on sets of complex hand written rules in order to execute decision making. In the late 1980s however, probabilistic models where introduced with machine learning algorithms, often based on decision trees or hidden Markov models [6]. These models required a higher amount of computational power which was had not been available until then. Today, computers have orders of magnitudes stronger computing power with more and more natural language data being accumulated over time, especially with the global usage of internet in recent years.

As the area of NLP is a crossover between natural language and computer lan- guage, an obvious question becomes: How do we transform natural language into a language that a computer can understand and process? In the following section, this transformation is thoroughly explained.

2.2 Word embedding

A word embedding is a dense numerical vector representation of a word, where features of words or phrases are mapped to vectors of real numbers. The majority of work advocate the use of dense, trainable embedding vectors for all features [7][8][9]. A model that transforms an input word to a fixed-length dense vector

(24)

is called a word embedding model. Today, word embedding models use various training methods, mostly neural networks, dimensionality reduction, probabilistic models or word co-occurence matrices. Large data sets are used in order to capture complex linguistical semantics.

Figure 2.1: An illustration of the word distance in the vector space. Reproduced from Vector Representations of Words [10].

Semantically, similar words tend to have similar embeddings and the similarity is measured using cosine similarity. In figure 2.1 this is illustrated by some famous examples. Here, male-female relationship between words are captured where for example the word embeddings of: ”king” − ”man” + ”woman” = ”queen”. Other semantics like verb tense or relationships like ”country” − ”capital” and many more linguistic linkages are captured in the vector space as illustrated in figure 2.1. These lingustical semantics are captured in the vector space, where similar words tend to have similar vector representations.

2.2.1 Word embedding from n-grams General skip-gram model

The general continuous skip-gram model for obtaining word embeddings is intro- duced by Mikolov et al. [11]. Given a word vocabulary of size W , where a word is identified by its index w ∈ {1, . . . , W } the goal is to learn a vectorial representa- tion of each word w. Word representations are trained to predict well words that appear in its context. More formally, given a large training corpus represented as a sequence of words w1, . . . , wT, the objective of the skipgram model is to maximize the following log likelihood:

T

X

t=1

X

c∈Ct

log p (wc|wt) , (2.1)

where the context Ct is the set of indices of words suurrounding word wt. The probability of observing a context word wcgiven wtwill be parameterized using the

(25)

2.2. WORD EMBEDDING

aforementioned word vectors. For now, let us consider that we are given a scoring function ρ which maps pairs of (word, context) to scores in R. One possible choice to define the probability of a context word is the softmax:

p (wc|wt) = eρ(wt,wc) PW

j=1eρ(wt,j). (2.2)

The problem of predicting context words can instead be framed as a set of indepen- dent binary classification tasks. The goal then becomes to predict the presence or absence of context words. For the word at position t we consider all context words as positive examples and sample negatives at random from the dictionary. For a chosen context position c, using the binary logistic loss, we obtain the following negative log-likelihood:

log1 + e−ρ(wt,wc)+ X

n∈Nt,c

log1 + eρ(wt,n), (2.3)

where Nt,c is a set of negative examples sampled from the vocabulary. By denoting the logistic loss function ` : x 7→ log (1 + e−x), we can re-write the objective as:

T

X

t=1

X

c∈Ct

` (ρ (wt, wc)) + X

n∈Nt,c

` (−ρ (wt, n))

. (2.4)

A natural parameterization for the scoring function ρ between a word wt and a context word wc is to use word vectors. Let us define for each word w in the vocabulary two vectors uw and vw in Rd. These two vectors are sometimes referred to as input and output in the literature. In particular, we have vectors uwt and vwc, corresponding, respectively, to words wt and wc. Then the score can be computed as the scalar product between word and context vectors as ρ (wt, wc) = u>w

tvwc. The model described in this section is the skipgram model with negative samling, introduced by Mikolov et al. [11].

Subword model

By using a distinct vector representation of each word, the skipgram model ignores the internal structure of words. Therefore, languages that use compound words (words that are put together using shorter words) have issues modelling the semantic complexity of the language. In this section, a different scoring function ρngram is proposed, in order to take into account sub word information.

Each word w is represented as a bag of character n-grams. We add special boundary symbols < and > at the beginning and end of words, allowing to dis- tinguish prefixed and suffixes from other character sequences. We also include the word w itself in the set of its n-grams, to learn the representation for each word (in addition to character n-grams). Taking the word where and n = 3 as an example, it will be represented by the character n-grams:

(26)

<wh, whe, her, ere, re>

and the special sequence

<where>.

Note that the sequence <her>, corresponding to the word her is different from the tri-gram her from the word where. Different sets of n-grams could be considered, for examples taking all prefixes and suffixes.

Suppose that you are given a dictionary of n-grams of size G. Given a word w, let us denote by Gw ⊂ {1, . . . , G} the set of n-grams appearing in w. We associate a vector representation τg to each n-gram g. We represent a word by the sum of the vector representations of its n-grams. We thus obtain the scoring function:

ρngram(w, c) = X

g∈Gw

τ>gvc. (2.5)

This simple model allows for sharing the representations across words, thus allowing to learn reliable representations for rare words [12].

In this thesis, the word embedding used is fastText, developed by facebook.

Trained on the entire Swedish wikipedia corpus (available for 157 languages), it utilizes the subword model which makes it robust for out-of-vocabulary words such as compund words, or misspellings [13].

2.3 Artificial Neural network

Artificial neural networks (ANN) are mathematical computing units, vaguely in- spired by the neurons of brains in humans and animals. While the connections between artificial neural networks and the brain are in fact rather slim, we repeat the metaphor in this section for completeness. An ANN is based on a collection of connected nodes or units called artificial neurons.

Typically, artificial neurons are divided into layers where each layer has a dif- ferent sub problem to solve in order to solve the problem as a whole. Below, we go through the layers that are used in the many NLP classification tasks [14], as well as in this thesis.

2.3.1 Fully connected neural network

In the metaphor, a neuron is a computational unit that has scalar inputs and out- puts. Each input has an associated weight. The neuron multiplies each input by its weight, and then sums1 them, applies a nonlinear function to the result and passes it to its output. The neurons are connected to each other, forming a network; the

1While summing is the most common operation, other functions, such as a max, are also possible.

(27)

2.3. ARTIFICIAL NEURAL NETWORK

output of a neuron may feed into the outputs of one or more neurons. Such networks were shown to be very capable computing devices.

Figure 2.2: An single neuron with four inputs. Reproduced from Goldberg and Hirst [15].

A typical feed-forward neural network may be drawn as in figure 2.3 where each neuron is connected to all of the neurons in the next layer - this is called a fully connected layer or an affine layer. Each circle is a neuron with incoming arrows being the neuron’s inputs and outgoing arrows being the neuron’s outputs. Each arrow carries a weight, reflecting its importance (not shown).

Figure 2.3: Feed-forward neural network with two hidden layers. Reproduced from Goldberg and Hirst [15].

(28)

The simplest neural network is called a perceptron. It is simply a linear model:

NNPerceptron(x) = x>W + b> (2.6)

x ∈ Rdin, W ∈ Rdin×dout, b ∈ Rdout,

where W is the weight matrix and b is a bias term. In order to go beyond linear functions, we introduce a nonlinear hidden layer (the network in figure 2.3 has two such layers), resulting in the Multi Layer Perceptron with one hidden-layer (MLP1).

A feed forward neural network with one hidden-layer has the form:

NNMLP1(x) = gx>W1+ b>1W2+ b>2 (2.7) x ∈ Rdin, W1 ∈ Rdin×d1, b1∈ Rd1, W2 ∈ Rd1×d2, b2 ∈ Rd2.

Here W1 and b1 are a matrix and bias term for the first linear transformation of the input, g is a nonlinear function that is applied element-wise (also called a nonlinearity or an activation function), and W2 and b2 are the matrix and bias term for a second linear transform. The nonlinear activation function g has a crucial role in the network’s ability to represent complex functions.

Breaking it down, x>W1 + b>1 is a linear transformation of the input x from din dimensions to d1dimensions, and the matrix W2together with a bias vector b2 are then used to transform the result into the d2 dimensional output vector. The same principle follows no matter the layer count, each output of a layer is the input to the next where only the last layer outputs the result [15].

2.3.2 Recurrent neural network

Recurrent neural networks (RNN) are constructed for dealing with sequential mod- eling, such as sound, voice, text etc [16]. It is convenient to view recurrent neural networks from the point of view of hidden Markov models.

We use xi:j to denote the sequence of vectors xi, . . . , xj. On a high-level, the RNN is a function that takes as input an arbitrary length ordered sequence of n din- dimensional vectors at time t, xt = x1:n= x1, x2, . . . , xn,xi∈ Rdinand returns as output a single dout dimensional vector yn∈ Rdout :

yn= RNN (x1:n)

xi ∈ Rdin yn∈ Rdout. (2.8) This implicitly defines an output vector yi for each prefix x1:i of the sequence x1:n. We denote by RNN? the function returning this sequence:

RNN?(x1:n; s0) =y1:n yi =O (si)

si =R (si− 1, xi)

(2.9)

(29)

2.3. ARTIFICIAL NEURAL NETWORK

xi∈ Rdin, yi∈ Rdout, si ∈ Rf (dout).

The output vector ynis then used for further prediction. For example, a model for predicting the conditional probability of an event e given the sequence x1:n can be defined as p(e = j|x1:n) = softmax (RNN (x1:n) · W + b)[j], the jth element in the output vector resulting from the softmax operation over a linear transformation of the RNN encoding yn= RNN (x1:n). The RNN function provides a framework for conditioning on the entire history of x1, x2, . . . , xi without resorting to the Markov assumption which was traditionally used for modeling sequences. Looking in a bit more detail, the RNN is defined recursively, by means of a function R taking as input a state vector si−1and an input vector xi and returning a new state vector si. The state vector si is then mapped to an output vector yi using a simple deterministic function O(·). The base of the recursion is an initial state vector s0, which is also an input to the RNN. For brevity, we often omit the initial vector s0, or assume it is the zero vector. When constructing an RNN, much like when constructing a feed forward network, one has to specify the dimension of the inputs xi as well as the dimensions of the outputs yi. The dimensions of the states si are a function of the output dimension.2

The functions R and O are the same across the sequence positions, but the RNN keeps track of the states of computation through the state vector si that is kept and being passed across invocations of R. Graphically, the RNN has been traditionally presented as in figure 2.4 [15].

Figure 2.4: Graphical representation of an RNN (recursive). Reproduced from Goldberg and Hirst [15].

Bidirectional RNN

A useful elaboration of an RNN is a bidirectional-RNN (also commonly referred to as biRNN) [17][18]. Consider the task of sequence tagging over a sentence x1, . . . , xn. An RNN allows us to compute a function of the ith word xi based on the past which

2While RNN architectures in which the state dimension is independent of the output dimension are possible, the current popular architectures, including the Simple RNN, the LSTM, and the GRU do not follow this flexibility.

(30)

are the words x1:i up to and including it. However, the following words xi+1:n may also be useful for prediction, as is evident by the common sliding-window approach in which the context of the focus word is categorized base on a window of k words surrounding it. Much like the RNN relaxes the Markov assumption and allows looking arbitrarily back into the past, the biRNN relaxes the fixed window size assumption, allowing to look arbitrarily far at both the past and the future within the sequence.

Consider an input sequence x1:n. The biRNN works by maintaining two sepa- rate states sfi and sbi for each input position i. The forward state sfi is based on x1, x2, . . . , xi, while the second RNNRb, Obis fed the input sequence in reverse.

The state representation si then composed of both the forward and backward states.

The output at position i is based on the concatenation of the two output vectors yi = hyfi; ybii = hOfsfi; Obsbii, taking into account both the past and the future. In other words, yi, the biRNN encoding of the ith word in a sequence is the concatenation of two RNNs, one reading the sequence from the beginning, and the other reading it from the end.

We define biRNN (x1:n, i) to be the output vector corresponding to the ith sequence position:

biRNN (x1:n, i) = yi=hRNNf (x1:i) ; RNNb(xn:i)i. (2.10) The vector yi can then be used directly for prediction, or fed as part of the input to a more complex network. While the two RNNs are run independently of each other, the error gradients at position i will flow both forward and backward through the two RNNs. Feeding the vector yi through an MLP prior to prediction will further mix the forward and backward signals. Visual representation of the biRNN architecture is given in Figure 2.5.

Figure 2.5: Graphical representation of the computing of a biRNN of the word jumped. The input sequence to the biRNN is the sentence “the brown fox jumped over the dog. Reproduced from Goldberg and Hirst [15].

(31)

2.3. ARTIFICIAL NEURAL NETWORK

Similarly to the RNN case, we also define biRNN?(x1:n) as the sequence of vectors y1:n:

biRNN?(x1:n) = yi:n= biRNN (x1:n, 1) , . . . , biRNN (x1:n, n) . (2.11) The n output vectors yi:ncan be efficiently computed in linear time by first running the forward and backward RNNs, and then concatenating the relevant outputs. This architecture is depicted in Figure 2.6.

Figure 2.6: Computing the biRNN* for the sentence “the brown fox jumped.” Re- produced from Goldberg and Hirst [15].

The biRNN is very effective for tagging tasks, in which each input vector cor- responds to one output vector. It is also useful as a general-purpose trainable feature-extracting component, that can be used whenever a window around a given word is required [15].

Problems in training the RNN

The simplest RNN formulation that is sensitive to the ordering of elements in the sequence is known as an Elman Network or Simple-RNN (S-RNN). The S-RNN was propoesed by Elman [16] and explored for use in language modeling by Ue´ni et al.

[19]. The S-RNN takes the following form:

si = RsRNN(xi, si−1) =gs>i−1Ws+ x>i Wx+ b> yi=OsRNN(si) = si

(2.12)

si, yi∈ Rds, xi∈ Rdx, Wx ∈ Rdx×ds, Ws∈ Rds×ds, b ∈ Rds.

That is, the state si−1 and the input xi are each linearly transformed with corre- sponding weight matrices, the results are added (together with a bias term) and

(32)

then passed through a nonlinear activation function g (commonly tanh or ReLU).

The S-RNN is hard to train effectively because of the vanishing gradient problem (Bengio, Simard, and Frasconi [20]). Error signals (gradients) in later steps in the sequence diminish quickly in the backpropagation process, and do not reach earlier input signals, making it hard for the S-RNN to capture long-range depen- dencies. Gating based architectures such as the Long-Short-Term-Memory (LSTM) or Gated-Recurrent-Units (GRU) are designed to solve this definciency [15].

LSTM

The LSTM architecture was designed to solve the vanishing gradients problem and is the first to introduce the gating mechanism [21]. The LSMT architecture explicitly splits the state vector st into two halves, where one half is treated as ”memory cells” and the other is working memory. The memory cells are designed to preserve the memory and also the error gradients across time and are controlled through differentiable gating components - smooth mathematical functions that simulate logical gates. At each input state, a gate is used to decide how much of the new input should be written to the memory cell, and how much of the current content of the memory cell should be forgotten. Mathematically, the LSTM architecture is defined as:

sj = RLSTM(sj−1, xj) =hqj; hji

qj =f qj−1+ i z hj =o tanhqj)

i =σx>j Wxi+ h>j−1Whi f =σx>j Wxf + h>j−1Whf



o =σx>jWxo+ h>j−1Who



z = tanhx>jWxz+ h>j−1Whz

(2.13)

yj = OLSTM(sj) = hj

sj ∈ R2·dh, xi ∈ Rdx, qj, hj, i, f , o, z ∈ Rdh, Wx◦∈ Rdx×dh, Wh◦∈ Rdh×dh Here is the element wise multiplication operation and σ is the sigmoid activation function. The state at time j is composed of two vectors, qj and hj where qj is the memory component and hj is the hidden state component. There are three gates, i, f and o, controlling for input, f orget and output. The gate values are computed based on linear combinations of the current input xj and the previous hidden state hj−1, passed through a tanh activation function. The gating mechanisms allow for gradients related to the memory part qj to stay high across very long time ranges [15].

(33)

2.3. ARTIFICIAL NEURAL NETWORK

GRU

The LSTM architecture is currently the most successful type of RNN, but it is also quite complicated. A simpler and less computationally expensive RNN architecture is the Gated Recurrent Unit (GRU), introduced by Cho et al. [22]. Like the LSTM, the GRU is based on a gating mechanism, but with fewer gates and without a separate memory component. The mathematical definition of the GRU is defined as:

sj =RGRU(sj−1, xj) = (1 − z) sj−1+ z ˜sj z =σx>j Wxz+ s>j−1Wsz

r =σx>j Wxr+ s>j−Wsr

s˜j = tanhx>j Wxs+ (r sj−1)>Wsg



(2.14)

yj = OGRU(sj) = sj

sj, ˜sj ∈ Rds, xi ∈ Rdx, z, r ∈ Rds, Wxz∈ Rdx×ds, Wsz ∈ Rds×ds. One gate (r) is used to control access to the previous state sj−1 and compute the proposed update ˜sj. The updated state sj (which also serves as the output yj) is then determined based on an interpolation of the previous state sj−1 and the proposal ˜sj, where the proportions of the interpolation are controlled using the gate z. The GRU was shown to be effective in language modeling and machine translation. However, the jury is still out between the GRU, the LSTM and possible alternative RNN architectures, and the subject is actively researched [15].

2.3.3 Attention in neural networks

In NLP, encoder-decoder networks are commonly used in text classification. A function is first used to encode the input (map the raw input to features) which sends the information to a decoder. The task of the decoder is to use the encoded information to produce something that can be used as a classification.

Using an RNN-architecture as an encoder, the vector that the RNN produces is forced to contain all the information required to be used for classification. This can in many cases be improved by adding an attention mechanism [23]. The work of Luong, Pham, and Manning [24] explores some of them in the context of machine translation. The attention mechanism is used as a decoder in order to decide on which parts of the encoding input it should focus. More concretely, the encoder- decoder with attention architecture encodes a length n input sequence x1:n using a biRNN, producing n vectors ϕ1:n:

ϕ1:n= ENC (x1:n) = biRNN?(x1:n) .

At any stage j the decoder chooses which of the vectors ϕ1:n it should attend to, resulting in a focused context vector ϕj = attendϕ1:n, ˆt1:j us then used for

(34)

conditioning the generation at step j:

p (tj+1 = k|ˆt1:j, x1:n= f (O (sj+1)) sj+1 =Rsj,hˆtj; ϕji

ϕj = attendϕ1:n, ˆt1:j ˆtj ∼ptjt1:j−1, x1:n.

(2.15)

The attention mechanism is thoroughly described in Bahdanau, Cho, and Bengio [23], who where first to introduce attention in the context of sequence to sequence generation. The function attend (·, ·) is a trainable, parametrized function. The implemented attention mechanism is soft, meaning that at each stage the decoder sees a weighted average of the vectors ϕ1:n, where the weights are chosen by the at- tention mechanism. More formally, at stage j the soft attention produces a mixture vector ϕj:

ϕj =

n

X

i=1

αj[i]· ϕi.

αj ∈ Rn+ is the vector of attention weights for stage j, whose elements αj[i] are all positive and sum to one.

The values αj[i]are produced in a two stage process: first, unnormalized attention weightsαj[i] are produced using a feed-forward network MLPatt taking account the decoder state at time j and each of the vectors ϕi:

αj j[1] , . . . , αj[n]=

=MLPatt([sj; ϕ1]) , . . . , MLPatt([sj; ϕn]) .

(2.16) The unnormalized weigths αj are then normalized into a probability distribution using the soft-max function:

αj = softmaxαj[1], . . . , αj[n].

The biRNN is used as an encoder to translate a sentence x1:ninto the context vectors ϕ1:nbecause of the sequential context property of the biRNN. The biRNN produces a window focused around the input item xi and not the item itself, which provides contextual information from the source input xi. When the attention mechanism is jointly trained with the biRNN encoder, the biRNN encoder may learn to encode the position of xi within the sequence, and the decoder could use this information to access the elements in order, or learn to pay more attention to elements in the beginning of the sequence then to elements at its end [15].

2.3.4 Training of artificial neural networks Loss function

A supervised learning algorithm is a training set of n training examples x1:n = x1, x2, . . . , xn together with corresponding labels y1:n = y1, y2, . . . , yn. We here

(35)

2.3. ARTIFICIAL NEURAL NETWORK

assume that the desired inputs and outputs are vectors: x1:n, y1:n. The goal of training a neural network is to return a function f () that accurately maps unseen input to their desired output, i.e., a function f () such that the predictions ˆy = f (x) are accurate. We introduce a loss function, quantifying the loss suffered when predicting ˆy while the true label is y. A loss function L( ˆy, y) assigns a numerical score (a scalar) to a predicted output ˆy given the true expected output y. Given a labeled training set (x1:n, y1:n), a per-instance loss function L and a parametrized function f (x; Θ), where Θ are the parameters of the neural network, we define the corpus-wide loss with respect to the parameters Θ as the average loss over all training examples:

L(Θ) = 1 n

n

X

i=1

L (f (xi; Θ) , yi) . (2.17) In this view, the training examples are fixed, and the values of the parameters determine the loss. The goal of the training algorithm is then to set the values of the parameters Θ such that the value of L is minimized [15]:

Θ = argminˆ

Θ

L(Θ) = argmin

Θ

1 n

n

X

i=1

L (f (xi; Θ) , yi) . (2.18)

An effective method for training linear models is using the SGD algorithm [25]

or a variant of it.

Regularization of parameters

Equation 2.18 attempts to minimize loss at all costs. To prevent overfitting to the training data and making the algorithm more generalized by posing soft restrictions on the forms of the solution, which is done by using a function R(Θ) taking as input the parameters and returning a scalar that reflect their ”complexity” which we want to keep as low as possible. By adding R to the objective, the optimization problem becomes:

Θ = argminˆ

Θ

loss

z }| {

1 n

n

X

i=1

L (f (xi; Θ) , yi) +

regularization

z }| { ρR(Θ)

. (2.19)

The function R is called a regularization term. This poses restriction on the pa- rameters, where large weights (emphasis on certain parts of the ANN structure) is punished by a larger loss. In this way, the model overfits less to the training data.

Another effective technique for preventing neural networks from overfitting the training data is dropout training [26][27]. The dropout method is designed to pre- vent the network from learning to rely on specific weights. It works by randomly dropping (setting to 0) a percentage of the neurons in the network (or in a specific layer) in each training batch.

References

Related documents

The result from the output gate o t and the result from the tanh layer is then element wise multiplied, and passed as the final output O t , which is sent to the the outer network,

In figures 4.1-4.3, we show examples of the training processes for our own word2vec model, in terms of loss and accuracy of the training and validation data over time. As expected,

Thus, the objective of this thesis is twofold; the first goal is to explore techniques for converting the free-text trader comments into meaningful numerical features, the second

Training of the motion stream is similar, but the input is individual op- tical flow frames, and it is the predicted motion attention output which is compared to corresponding

The DNN and volume classification methods performed well where the maximum and occurrence method performed the best and can be used to interpret RT volumes in MIQA and INCA for

The RMSProp optimizer is implemented for three learning rates and the results presented in Table 10 are the accuracies for the training, validation and test set, number of epochs

The primary goal of the project was to evaluate two frameworks for developing and implement- ing machine learning models using deep learning and neural networks, Google TensorFlow

End-to-end approach (left side): In the training phase directly feed the classification input samples X (i.e. the mammograms) into a clas- sification network.. According to