-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path2.1-Introduction_to_ANN-Slides.qmd
More file actions
1414 lines (874 loc) · 46.6 KB
/
2.1-Introduction_to_ANN-Slides.qmd
File metadata and controls
1414 lines (874 loc) · 46.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Advanced Machine Learning 4 Metabolomics"
subtitle: 'Neural Networks, Deep Learning and Artificial Intelligence'
format:
revealjs:
incremental: false
transition: slide
background-transition: fade
transition-speed: slow
scrollable: true
menu:
side: left
width: half
numbers: true
slide-number: c/t
show-slide-number: all
progress: true
css: "css4CU.css"
theme: sky
knit:
quarto:
chunk_options:
echo: true
cache: false
prompt: false
tidy: true
comment: NA
message: false
warning: false
knit_options:
width: 75
bibliography: "DeepLearning.bib"
editor_options:
chunk_output_type: console
---
# From Artificial Neural Networks to Artifial Intelligence
## Historical Background (1)
- In the post-pandemic world, a lightning rise of AI, with a mess of realities and promises is impacting society.
- Since ChatGPT entered the scene everybody has an experience, an opinion, or a fear on the topic.
{fig-align="center" width="100%"}
## Is it just machine learning?
- Most tasks performed by AI can be described as Classification or Prediction used in applications as:
- Recommendation systems,
- Image recognition, Image generation
- Natural language processing
- AI relies on machine learning algorithms, to make predictions based on large amounts of data.
- AI has far-reaching implications beyond its predictive capabilities, including ethical, social or technological.
## AI, ANNs and Deep learning
- In many contexts, talking about AI means talking about
*Deep Learning (DL)*.
- DL is a successful AI model which has powered many application such as *self-driving cars, voice assistants, and medical diagnosis systems*.
- DL originates in the field of *Artificial Neural Networks*
- But DL extends the basic principles of ANNs by:
- Adding complex architectures and algorithms and
- At the same time becoming more automatic
## The early history of AI (1)
```{r, out.width="90%", fig.cap= "[A Quick History of AI, ML and DL](https://nerdyelectronics.com/a-quick-history-of-ai-ml-and-dl/)"}
knitr::include_graphics("images/AIHistory1.jpg")
```
## Milestones in the history of DL
We can see several hints worth to account for:
- The **Perceptron** and the first **Artificial Neural Network** where the basic building block was introduced.
- The **Multilayered perceptron** and back-propagation where complex architectures were suggested to improve the capabilities.
- **Deep Neural Networks**, with many hidden layers, and auto-tunability capabilities.
## From ANN to Deep learning
{fig-align="center" width="100%"}
:::{.font90}
Source: [Alex Amini's MIT Introduction to Deep Learning' course](introtodeeplearning.com)
:::
## Success stories
Success stories such as
- the development of self-driving cars,
- the use of AI in medical diagnosis, and
- online shopping personalized recommendations
have also contributed to the widespread adoption of AI.
## Not to talk abou the fears
:::: {.columns}
::: {.column width='60%'}
- AI also comes with fears from multiple sources from science fiction to religion
- Mass unemployment
- Loss of privacity
- AI bias
- AI fakes
- Or, simply, AI takeover
:::
::: {.column width='40%'}
<br>

:::
::::
## Back to science
Where/How does it all fit?
```{r, fig.align='center', out.width="100%"}
knitr::include_graphics("images/AI-ML-DL-1.jpg")
```
## AI, ML, DL ...
- **Artificial intelligence**: Ability of a computer to perform tasks commonly associated with intelligent beings.
- **Machine learning**: study of algorithms that learn from examples and experience instead of relying on hard-coded rules and make predictions on new data
- **Deep learning**: sub field of ML focusing on learning data representations as successive successive layers of increasingly meaningful representations.
## How does DL improve
```{r, fig.align='center', out.width="100%", fig.cap="[ML and DL Approaches for Brain Disease Diagnosis](https://ieeexplore.ieee.org/document/9363896)"}
knitr::include_graphics("images/ML_vs_DL-2.png")
```
::: {.notes}
- DNN: feature extraction and classification without (or with much les) human intervention.
- DNN improves with data availability, without seemingly reaching plateaus.
:::
## Size does matter!
{fig-align="center" width="100%"}
## The impact of Deep learning {.smaller}
- Near-human-level image classification
- Near-human-level speech transcription
- Near-human-level handwriting transcription
- Dramatically improved machine translation
- Dramatically improved text-to-speech conversion
- Digital assistants such as Google Assistant and Amazon Alexa
- Near-human-level autonomous driving
- Improved ad targeting, as used by Google, Baidu, or Bing
- Improved search results on the web
- Ability to answer natural language questions
- Superhuman Go playing
## Not all that glitters is gold ...
- According to F. Chollet, the developer of Keras,
- "*we shouldn't believe the short-term hype, but should believe in the long-term vision*.
- *It may take a while for AI to be deployed to its true potential---a potential the full extent of which no one has yet dared to dream*
- *but AI is coming, and it will transform our world in a fantastic way*".
# The Artificial Neurone (AN)
## Emulating biological neurons
:::: {.columns}
::: {.column width='50%'}
```{r, fig.align='center', out.width="100%", fig.cap="[A biological Neuron]()"}
knitr::include_graphics("images/NaturalNeuron.png")
```
:::
::: {.column width='50%'}
```{r, fig.align='center', out.width="100%", fig.cap="[MuCulloch & Pitts proposal]()"}
knitr::include_graphics("images/MacCulloghPitts-Neuron.png")
```
:::
::::
- The first model of an artifial neurone was proposed by Mc Cullough & Pitts in 1943
## Mc Cullough's neuron
- It may be divided into 2 parts.
- The first part, $g$,takes an input (as the dendrites of a neuron would do),
- It performs an aggregation and
- based on the aggregated value the second part, $f$, makes a decision.
See [the source of this picture](https://towardsdatascience.com/mcculloch-pitts-model-5fdf65ac5dd1) for an illustration on how this can be used to emulate logical operations such as AND, OR or NOT, but not XOR.
## Limitations
This first attempt to emulate neurons succeeded but with limitations:
- What about non-Boolean (say, real) inputs?
- What if all inputs are not equal?
- What if we want to assign more importance to some inputs?
- What about functions which are not linearly separable? Say XOR function
## Overcoming the limitations
- To overcome these limitations Rosenblatt, proposed the perceptron model, or *artificial neuron*, in 1958.
- Generalizes McCullough-Pitts neuron in that *weights and thresholds can be learnt over time*.
- It takes a weighted sum of the inputs and
- It sets the output to iff the sum is more than an arbitrary threshold (**$\theta$**).
## Rosenblatt's perceptron
[{width="100%"}](https://towardsdatascience.com/perceptron-the-artificial-neuron-4d8c70d5cc8d)
## Rosenblatt's perceptron
:::{.font80}
- Instead of hand coding the thresholding parameter $\theta$,
- It is added as one of the inputs, with the weight $w_0=-\theta$.
:::
[{width="100%"}](https://towardsdatascience.com/perceptron-the-artificial-neuron-4d8c70d5cc8d)
## Comparison between the two
[{width="100%"}](https://towardsdatascience.com/perceptron-the-artificial-neuron-4d8c70d5cc8d)
## Comparison between the two
- This is an improvement because
- both, weights and threshold, can be learned and
- the inputs can be real values
- But there is still a drawback in that a single perceptron can only be used to implement linearly separable functions.
- Artificial Neural Networks improve on this by introducing *Activation Functions*
## Activation in biological neurons
- Biological neurons are specialized cells that transmit signals to communicate with each other.
- Neuron's activation is based on releasing *neurotransmitters*, chemicals that transmit signals between nerve cells.
- When the signal reaching the neuron exceeds a certain threshold, it releases neurotransmitters to continue the communication process.
## Activation functions in AN
- Analogously, *activation functions* in AN are functions to decide if the AN it is activated or not.
- AN's activation function is a mathematical function applied to the neuron's input to produce an output.
- In practice it extends to complicated functions that can learn complex patterns in the data.
- Activation functions can incorporate non-linearity, improving over linear classifiers.
## Activation function
```{r, fig.align='center', out.width="100%"}
knitr::include_graphics("images/ActivationFunction0.png")
```
## Artificial Neuron
With all these ideas in mind we can now define an Artificial Neuron as a *computational unit* that :
- takes as input $x=(x_0,x_1,x_2,x_3),\ (x_0 = +1 \equiv bias)$,
- outputs $h_{\theta}(x) = f(\theta^\intercal x) = f(\sum_i \theta_ix_i)$,
- where $f:\mathbb{R}\mapsto \mathbb{R}$ is called the **activation function**.
## Activation functions
:::{.font90}
- Goal of activation function is to provide the neuron with *the capability of producing the required outputs*.
- Flexible enough to produce
- Either linear or non-linear transformations.
- Output in the desired range (\[0,1\], {-1,1}, $\mathbb{R}^+$...)
- Usually chosen from a (small) set of possibilities.
- Sigmoid function
- Hyperbolic tangent, or `tanh`, function
- ReLU
:::
## The sigmoid function {.smaller}
::: columns
::: {.column width="50%"}
$$
f(z)=\frac{1}{1+e^{-z}}
$$
- Output real values $\in (0,1)$.
- Natural interpretations as *probability*
```{r, fig.align='center', out.width="100%"}
knitr::include_graphics("images/sigmoidFunction.png")
```
:::
::: {.column width="50%"}
```{r, fig.align='center', out.width="100%"}
knitr::include_graphics("images/sigmoidFunctionDerivative.png")
```
:::
:::
## the hyperbolic tangent {.smaller}
::: columns
::: {.column width="50%"}
Also called `tanh`, function:
$$
f(z)=\frac{e^{z}-e^{-z}}{e^{z}+e^{-z}}
$$
- outputs are zero-centered and bounded in −1,1
- scaled and shifted Sigmoid
- stronger gradient but still has vanishing gradient problem
- Its derivative is $f'(z)=1-(f(z))^2$.
:::
::: {.column width="50%"}
```{r, fig.align='center', out.width="100%"}
knitr::include_graphics("images/TanhFunction.png")
```
:::
:::
## The ReLU {.smaller}
::: columns
::: {.column width="50%"}
- *rectified linear unit*: $f(z)=\max\{0,z\}$.
- Close to a linear: piece-wise *linear* function with two linear pieces.
- Outputs are in %(0,\infty)\$ , thus not bounded
- Half rectified: activation threshold at 0
- No vanishing gradient problem
:::
::: {.column width="50%"}
```{r, fig.align='center', out.width="100%"}
knitr::include_graphics("images/ReLUFunction.png")
```
:::
:::
## More activation functions
{width="100%"}.
## Putting it all together
```{r, fig.align='center', out.width="100%"}
knitr::include_graphics("images/ArtificialNeuron.png")
```
## In words {.smaller}
- An ANN takes a vector of input values $x_{1}, \ldots, x_{d}$ and combines it with some weights that are local to the neuron $\left(w_{0}, w_{1}, . ., w_{d}\right)$ to compute a net input $w_{0}+\sum_{i=1}^{d} w_{i} \cdot x_{i}$.
- To compute its output, it then passes the net input through a possibly non-linear univariate activation function $g(\cdot)$, usually vchosen from a set of options such as *Sigmoid*, *Tanh* or *ReLU* functions
- To deal with the *bias*, we create an extra input variable $x_{0}$ with value always equal to 1 , and so the function computed by a single artificial neuron (parameterized by its weights $\mathbf{w}$ ) is:
$$
y(\mathbf{x})=g\left(w_{0}+\sum_{i=1}^{d} w_{i} x_{i}\right)=g\left(\sum_{i=0}^{d} w_{i} x_{i}\right)=g\left(\mathbf{w}^{\mathbf{T}} \mathbf{x}\right)
$$
# From neurons to neural networks
## The basic neural network {.smaller}
Following with the brain analogy one can combine (artificial) neurons to create better learners.
A simple artificial neural network is usually created by combining two types of modifications to the basic perceptron (AN).
- Stacking several neurons insteads of just one.
- Adding an additional layer of neurons, which is call a *hidden* layer,
This yields a system where the output of a \emph{neuron} can be the input
of another in many different ways.
## An Artificial Neural network
```{r, fig.align='center', out.width="90%"}
knitr::include_graphics("images/nn.jpg")
```
## The architecture of ANN {.smaller}
In this figure, we have used circles to also denote the inputs to the
network.
- Circles labeled +1 are *bias units*, and correspond to the intercept term.
- The leftmost layer of the network is called the *input layer*.
- The rightmost layer of the network is called the *output* layer.
- The middle layer of nodes is called the *hidden layer*, because its values are not observed in the training set.
Bias nodes are not counted when stating the neuron size.
With all this in mind our example neural network has three layers with:
- 3 input units (not counting the bias unit),
- 3 hidden units,
- 1 output unit.
## How an ANN works
An ANN is a predictive model (a *learner*) whose properties and behaviour can be well characterized.
<!-- In practice this means: -->
- It operates through a process known as *forward propagation*, which encompasses the information flow from the input layer to the output layer.
- Forward propagation is performed by composing a series of linear and non-linear (activation) functions.
- These are characterized (parametrized) by their *weights* and *biases*, that need to be *learnt*.
- This is done by *training the ANN*.
## Training the ANN {.smaller}
- In order for the ANN to perform well, the training process aims at finding the best possible parameter values for the learning task defined by the fnctions. This is done by
- Selecting an appropriate (convex) loss function,
- Finding those weights that minimize a the total *cost* function (avg. loss).
- This is usually done using some iterative optimization procedure such as *gradient descent*.
- This requires evaluating derivatives in a huge number of points.
- Such high number may be reduced by *Stochastic Gradient Descent*.
- The evaluation of derivatives is simplified thanks to *Backpropagation*.
## Forward propagation {.smaller}
As described above the process that encompasses the computations required to go from the input values to the final output is known as *forward propagation*.
The weights are combined with the input to produce the final output.
Each node, $a_i^{(2)}$ of the hidden layer opperates on all nodes of the input values
\begin{eqnarray}
a_1^{(2)}&=&f(\theta_{10}^{(1)}+\theta_{11}^{(1)}x_1+\theta_{12}^{(1)}x_2+\theta_{13}^{(1)}x_3)\\
a_2^{(2)}&=&f(\theta_{20}^{(1)}+\theta_{21}^{(1)}x_1+\theta_{22}^{(1)}x_2+\theta_{23}^{(1)}x_3)\\
a_3^{(2)}&=&f(\theta_{30}^{(1)}+\theta_{31}^{(1)}x_1+\theta_{32}^{(1)}x_2+\theta_{33}^{(1)}x_3))
\end{eqnarray}
The output of the hidden layer is transformed through the activation function:
$$
h_{\Theta}(x)=a_1^{(3)}=f(\theta_{10}^{(2)}+\theta_{11}^{(2)}a_1^{(2)}+\theta_{12}^{(2)}a_2^{(2)}+\theta_{13}^{(2)}a_3^{(2)}
$$
## A compact notation (1) {.smaller}
Let $z_i^{(l)}$ denote the total weighted sum of inputs to unit $i$ in layer $l$:
$$
z_i^{(2)}=\theta_{i0}^{(1)}+\theta_{i1}^{(1)}x_1+\theta_{i2}^{(1)}x_2+\theta_{i3}^{(1)}x_3,
$$
the output becomes: $a_i^{(l)}=f(z_i^{(l)})$.
Extending the activation function $f(\cdot)$ to apply elementwise to vectors:
$$
f([z_1,z_2,z_3]) = [f(z_1), f(z_2),f(z_3)],
$$
we can write the previous equations more compactly as:
```{=tex}
\begin{eqnarray}
z^{(2)}&=&\Theta^{(1)}x\nonumber\\
a^{(2)}&=&f(z^{(2)})\nonumber\\
z^{(3)}&=&\Theta^{(2)}a^{(2)}\nonumber\\
h_{\Theta}(x)&=&a^{(3)}=f(z^{(3)})\nonumber
\end{eqnarray}
```
## A compact notation (2)
More generally, recalling that we also use $a^{(1)}=x$ to also denote the values from the input layer,
Given layer $l$'s activations $a^{(l)}$, we can compute layer $l+1$'s activations $a^{(l+1)}$ as:
\begin{equation}
z^{(l+1)}=\Theta^{(l)}a^{(l)}
\label{eqforZs}
\end{equation}
\begin{equation}
a^{(l+1)}=f(z^{(l+1)})
\label{eqforAs}
\end{equation}
## A compact notation (3) {.smaller}
This can be used to provide a matrix representation for the weighted sum
of inputs of all neurons:
$$
z^{(l+1)}=
\begin{bmatrix}
z_1^{(l+1)}\\
z_2^{(l+1)}\\
\vdots\\
z_{s_{l+1}}^{(l)}
\end{bmatrix}=
\begin{bmatrix}
\theta_{10}^{(l)}& \theta_{11}^{(l)}&\theta_{12}^{(l)}&...&\theta_{1s_{l}}^{(l)}&\\
\theta_{20}^{(l)}& \theta_{21}^{(l)}&\theta_{22}^{(l)}&...&\theta_{2s_{l}}^{(l)}&\\
\vdots & \vdots& \vdots & \vdots & \vdots\\
\theta_{s_{l+1}0}^{(l)}& \theta_{s_{l+1}1}^{(l)}&\theta_{s_{l+1}2}^{(l)}&...&\theta_{s_{l+1}s_{l}}^{(l)}&\\
\end{bmatrix}
\cdot\begin{bmatrix}
1\\
a_1^{(l)}\\
a_2^{(l)}\\
\vdots\\
a_{s_l}^{(l)}
\end{bmatrix}
$$
## A compact notation (4) {.smaller}
So that, the activation is then:
$$
a^{(l+1)}=
\begin{bmatrix}
a_1^{(l+1)}\\
a_2^{(l+1)}\\
\vdots\\
a_{s_{l+1}}^{(l)}
\end{bmatrix}=f(z^{(l+1)})=\begin{bmatrix}
f(z_1^{(l+1)})\\
f(z_2^{(l+1)})\\
\vdots\\
f(z_{s_{l+1}}^{(l)})
\end{bmatrix}
$$
## Eficient Forward propagation
- The way input data is transformed, through a series of weightings and transformations, until the ouput layer is called *forward propagation*.
- By organizing parameters in matrices, and using matrix-vector operations, fast linear algebra routines can be used to perform the required calculations in a fast efficent way.
## Multiple architectures for ANN
- We have so far focused on a single hidden layer neural network of the example.
- One can. however build neural networks with many distinct architectures (meaning patterns of connectivity between neurons),
including ones with multiple hidden layers.
- See [here the Neural Network
Zoo](https://www.asimovinstitute.org/neural-network-zoo/).
## Multiple architectures for ANN {.smaller}
:::: {.columns}
::: {.column width='50%'}
- We have so far focused on a single hidden layer neural network of the example
- One can build neural networks with many distinct architectures (meaning patterns of connectivity between neurons), including ones with multiple hidden layers.
:::
::: {.column width='50%'}

[The Neural Network Zoo](https://www.asimovinstitute.org/neural-network-zoo/)
:::
::::
## Multiple layer dense Networks
- Most common choice is a $n_l$-layered network:
- layer 1 is the input layer,
- layer $n_l$ is the output layer,
- and each layer $l$ is densely connected to layer $l+1$.
- In this setting, to compute the output of the network, we can compute all the activations in layer $L_2$, then layer $L_3$, and so on, up to layer $L_{nl}$, using equations seen previously.
## Feed Forward NNs
- The type of NN described is called feed-forward *neural network (FFNN)*, since
- All computations are done by Forward propagation
- The connectivity graph does not have any directed loops or cycles.
# Training Neural Networks
## Training an ANN {.smaller}
- An ANN is a predictive model whose properties and behaviour can be mathematically characterized.
- In practice this means:
- The ANN acts by composing a series of linear and non-linear (activation) functions.
- These are characterized by their *weights* and *biases*, that need to be *learnt*
.
- *Training* the network is done by
- Selecting an appropriate (convex) loss function,
- Finding those weights that minimize a the total *cost* function (avg loss).
## The tools for training
- Training an ANN is usually done using some iterative optimization procedure such as *Gradient Descent*.
- This requires evaluating derivatives in a huge number of points.
- Such high number may be reduced by *Stochastic Gradient Descent*.
- The evaluation of derivatives is simplified thanks to *Backpropagation*.
## A loss function for optimization
Depending on the form of the activation function we may decide to use one or another form of loss function.
- At first an idea may be to use *squared error loss*:
$$
l(h_\theta(x),y)=\left (y-\frac{1}{1+e^{-\theta^\intercal x}}\right )^2
$$
- However it happens to be that, given a sigmoid activation function, the resulting loss function [* is not a convex problem*](https://towardsdatascience.com/why-not-mse-as-a-loss-function-for-logistic-regression-589816b5e03c) which means that MSE is not appropriate.
- Quadratic loss may be used, for instance, with ReLu activation.
## Illustrating non-convexity {.smaller}
```{r, eval=FALSE, echo=TRUE}
library(plot3D)
# Define the squared error loss function
squared_error <- function(y, y_hat) {
return(0.5 * (y - y_hat)^2)
}
# Define the logistic activation function
logistic <- function(z) {
return(1 / (1 + exp(-z)))
}
# Generate data
x <- seq(-10, 10, length.out = 200)
y <- seq(-10, 10, length.out = 200)
z <- outer(x, y, FUN = function(x, y) squared_error(1, logistic(x + y)))
# Plot the exaggerated loss surface
persp3D(x, y, z, theta = 30, phi = 30, expand = 0.5, col = "lightblue",
ticktype = "detailed", xlab = "Weight 1", ylab = "Weight 2", zlab = "Loss")
```
## Illustrating non-convexity {.smaller}
```{r echo=FALSE}
library(plot3D)
# Define the squared error loss function
squared_error <- function(y, y_hat) {
return(0.5 * (y - y_hat)^2)
}
# Define the logistic activation function
logistic <- function(z) {
return(1 / (1 + exp(-z)))
}
# Generate data
x <- seq(-10, 10, length.out = 200)
y <- seq(-10, 10, length.out = 200)
z <- outer(x, y, FUN = function(x, y) squared_error(1, logistic(x + y)))
# Plot the exaggerated loss surface
persp3D(x, y, z, theta = 30, phi = 30, expand = 0.5, col = "lightblue", ticktype = "detailed", xlab = "Weight 1", ylab = "Weight 2", zlab = "Loss")
```
## Cross-entropy loss function {.smaller}
$$
l(h_\theta(x),y)=\big{\{}\begin{array}{ll}
-\log h_\theta(x) & \textrm{if }y=1\\
-\log(1-h_\theta(x))& \textrm{if }y=0
\end{array}
$$
This function can also be written as:
$$
l(h_\theta(x),y)=-y\log h_\theta(x) - (1-y)\log(1-h_\theta(x))
$$
Using cross-entropy loss, the cost function is of the form:
\begin{eqnarray*}
J(\theta)=-\frac{1}{n}\big[\sum_{i=1}^n&&(y^{(i)}\log h_\theta(x^{(i)})+\\ &&(1-y^{(i)})\log(1-h_\theta(x^{(i)}))\big]
\end{eqnarray*}
Now, this is a convex optimization problem.
## Regularized cross entropy
In practice we often work with a *regularized version* of the cost function (we don't regularize the bias units)
```{=tex}
\begin{eqnarray*}
J(\Theta)&=&-\frac{1}{n}\big[\sum_{i=1}^n \sum_{k=1}^K y_k^{(i)}\log( h_\theta(x^{(i)}))_k\\
&+&(1-y_k^{(i)})\log(1-(h_\theta(x^{(i)}))_k)\big]\\
&+&\lambda\sum_{l=1}^{L-1}\sum_{i=1}^{s_l}\sum_{j=1}^{s_{l+1}}
(\theta_{ji}^{(l)})^2
\end{eqnarray*}
```
## Gradient Descent
- Training a network corresponds to choosing the parameters, that is, the weights and biases, that minimize the cost function.
- The weights and biases take the form of
matrices and vectors, but at this stage it is convenient to imagine them
stored as a single vector that we call $\theta$.
- Generally, we will suppose $\theta\in\mathbb{R}^p$, and write the cost function as $J(\theta)$ to emphasize its dependence on the parameters. So Cost
$J: \mathbb{R}^p\rightarrow \mathbb{R}$.
## Gradient Descent {.smaller}
{width="60%"}
## Gradient Descent {.smaller}
- *Gradient Descent* is a classical method in optimization that is often
referred to as *steepest descent*.
- Given a function $J(\theta)$ to be minimized, the method proceeds iteratively, computing a sequence of vectors $\theta^1, \theta^2, ..., \theta^n$ in $\mathbb{R}^p$ with the
aim of converging to a vector that minimizes the cost function.
- Suppose that our current vector is $\theta$.
*How should we choose a perturbation, $\Delta\theta$, so that the next vector, $\theta+\Delta\theta$, represents an improvement, that is: $J(\theta +\Delta\theta) < J(\theta)$?*
## Gradient Descent {.smaller}
- We proceed by linearization of the cost function using a Taylor approximation
- If $\Delta\theta$ is small, then ignoring terms of order $||\Delta\theta||^2$ or higher:
$$
J(\theta+\Delta\theta)\approx J(\theta)+\sum_{i=1}^p\frac{\partial J(\theta)}{\partial\theta_i}\Delta\theta_i
$$
- where ${\displaystyle \frac{\partial J(\theta)}{\partial\theta_i}}$ denotes the
partial derivative of the cost function with respect to the $i$-th weight.
## Gradient Descent {.smaller}
- Let $\nabla J(\theta)\in\mathbb{R}^p$
denote the *gradient*, i.e. the vector of partial derivatives.
\begin{equation}\label{g1}
\nabla J(\theta)=\left(\frac{\partial J(\theta)}{\partial\theta_1},...,\frac{\partial J(\theta)}{\partial\theta_p}\right)^\intercal
\end{equation}
- Now the approximation can be written as:
\begin{equation}\label{g2}
J(\theta+\Delta\theta)\approx J(\theta)+\nabla J(\theta)^\intercal\Delta\theta
\end{equation}
## Gradient Descent
- Recalling that our aim is to reduce the value of the cost function,
- Taylor approximation above motivates the idea of choosing $\Delta\theta$ to *make $\nabla J(\theta)^\intercal\Delta\theta$ negative*,
- because this will make the value of $J(\theta+\Delta\theta)$ smaller.
- The bigger in absolute value we can make this negative expression, the smaller will be the value of the cost function.
## The Cauchy-Schwarz inequality
- The [Cauchy-Schwarz inequality](https://en.wikipedia.org/wiki/Cauchy%E2%80%93Schwarz_inequality), states that for any $f,g\in\mathbb{R}^p$, we have:
$$
|f^\intercal g|\leq ||f||\cdot ||g||.
$$
- Moreover, the two sides are equal if and only if $f$ and $g$ are linearly dependent (meaning they are parallel).
## Back to gradient descent
- How much can $\nabla J(\theta)^\intercal\Delta\theta$ decrease?
- By Cauchy-Schwarz,biggest possible value for $\nabla J(\theta)^\intercal\Delta\theta$ is the upper bound, $||\nabla J(\theta)||\cdot ||\Delta\theta||$.
- The equality is only reached when $||\nabla J(\theta)||= ||\Delta\theta||$
- The highest possible negative value will come out when $-\nabla J(\theta)=\Delta\theta$
- That is, *we should choose $\Delta\theta$ to lie in the direction of $-\nabla J(\theta)$*.
## Gradient Descent
- Keeping in mind that the Taylor linearization of $J(\theta)$ is an approximation that is relevant only for small $\Delta\theta$,
- We will limit ourselves to a small step in that direction, defined by the *learning rate*. $\eta$.
- This leads to the update formula that defines the steepest descent method.
\begin{equation}\label{g3}
\theta \rightarrow \theta-\eta\nabla J(\theta)
\end{equation}
## Gradient Descent {.smaller}
In summary, givent a cost function $J(\theta)$ to be optimized the gradient descent optimization proceeds as follows:
1. **Initialize** $\theta_0$ randomly or with some predetermined values
2. **Repeat until convergence:**
$$
\theta_{t+1} = \theta_{t} - \eta \nabla J(\theta_{t})
$$
3. **Stop when:** $|J(\theta_{t+1}) - J(\theta_{t})| < \epsilon$
- $\theta_0$ is the initial parameter vector,
- $\theta_t$ is the parameter vector at iteration $t$,
- $\eta$ is the learning rate,
- $\nabla J(\theta_{t})$ is the gradient of the loss function with respect to $\theta$ at iteration $t$,
- $\epsilon$ is a small positive value indicating the desired level of convergence.
## Computing gradients {.smaller}
- The gradient method provides a way to optimize weights and biases $(\theta =\{W, b\})$ by minimizing the cost function, $J(\theta)$.
- This minimization requires, of course, the computation of an important number of partial derivatives
$$
\frac{\partial}{\partial\theta_j}J(\theta)
$$
- The algorithm used to perform these computation is known as the *backpropagation algorithm*
## A short history
- The backpropagation algorithm was originally introduced in the 1970s in a MSc thesis.
- In 1986 a [paper by Rumelhart, Hinton, and Williams](https://www.nature.com/articles/323533a0) describes several neural networks where backpropagation works far faster than earlier approaches to learning.
- This improvement in efficiency made it possible to use neural nets to solve problems which had previously been insoluble.
<!-- ## Backpropagation intuition {.smaller} -->
<!-- - A term originated in the expression "Error backpropagation -->
<!-- - Recall that the ANN computes its output through *forward propagation*: -->
<!-- - It takes the input values -->
<!-- - It applies a series of linear and non-linear transformations, through the networks layers, to produce the predicted value. -->
<!-- - The output will be different from the known output value in the train set -->
<!-- - The difference (the "error") is used *backwards* to adjust the weights, -->
<!-- - So that the error decreases as we iterate the process. -->
<!-- ## The delta rule {.smaller} -->
<!-- - How can we use the error to update the weights using the gradient method? -->
<!-- - The idea is to use the difference between the *real output* and the predicted output ("$\delta$") to update the weights in such a way that in the next iteration the error decrease. -->
<!-- - This difference is computed first for the layer -->
<!-- - And then is backpropagated to the previous layers until all the weights are recomputed and the process can re-start. -->
## Error backpropagation {.smaller}
$$
\begin{equation*}
\Delta w=\eta(c-y) d \tag{3.21}
\end{equation*}
$$
- La regla delta es la base de la retropropagación:
- $c$ es el valor que indica la clase en el ejemplo de entrenamiento,
- $y$ el valor de la función de salida para la instancia $d$, y
- $\eta$ la tasa o velocidad de aprendizaje (*learning rate*).
- El método utilizado para entrenar este tipo de redes, y basado en la regla delta, se muestra en el algoritmo siguiente (Algoritmo 1).
- Para que el algoritmo converja es necesario que las clases de los datos sean linealmente separables.
## Algoritmo 1 (Gradiente) {.smaller}
- **Entrada**: $W$ (conjunto de vectores de pesos) y $D$ (conjunto de instancias de entrenamiento)
- mientras $\left(y \not \approx c_{i} \forall\left(d_{i}, c_{i}\right) \in D\right)$ hacer
- para todo $\left(\left(d_{i}, c_{i}\right) \in D\right)$ hacer
- Calcular la salida $y$ de la red cuando la entrada es $d_{i}$
- si $\left(y \not \approx c_{i}\right)$ entonces
- Modificar el vector de pesos $w^{\prime}=w+\eta(c-y) d_{i}$
- fin si
- fin para
- fin mientras
**Devolver**: El conjunto de vectores de pesos $W$
## Retropropagación del error {.smaller}
- En las redes multicapa no podemos aplicar el algoritmo de entrenamiento visto en la sección anterior.