-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
1359 lines (1228 loc) · 55.3 KB
/
main.tex
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
\documentclass[aspectratio = 169, 15pt, handout]{beamer}
% use trans option for only slides.
% use beamer option for slides and notes side by side.
% use handout option for 4 in 1 slides and note.
% change in line 79 \setbeameroption{show notes on second screen=bottom or left to get left or bottom notes with slides.
\input{functions/constants.tex}
\input{functions/styles/stylesColors.tex}
\usetheme[
progressbar = frametitle,% progress bar of slides. Can be none, head, frametitle, foot
titleformat title = regular,% can be regular, smallcaps, allsmallcaps, allcaps
titleformat subtitle = regular,% can be regular, smallcaps, allsmallcaps, allcaps
titleformat section = regular,% can be regular, smallcaps, allsmallcaps, allcaps
titleformat frame = regular,% can be regular, smallcaps, allsmallcaps, allcaps
sectionpage = simple,% can be none, simple, progressbar
subsectionpage = none,% can be none, simple, progressbar
numbering = none,% for slide numbers can be none, counter, fraction
background = light% for slides and text dark light contrasts. Can be light or dark
]{metropolis}
\hyphenpenalty = 10000% no hyphenation in presentation
\usepackage{hyperref}
\hypersetup{
bookmarksopen = true,
bookmarksopenlevel=4,
pdfstartview={Fit},
pdfpagemode=FullScreen,
pdffitwindow=true,
breaklinks = true,% to correctly break links
pdftitle = {\mydocumentfulltitle\ (\myauthor)},
pdfauthor = {\myauthor},
pdfsubject = {\mydocumentfulltitle},
pdfcreator = {\myauthor},
pdfproducer = {\myauthor},
pdfkeywords = {\mykeywords}
}
\setsansfont{Roboto}% text font
\setmonofont{Roboto Mono}% monospace text font
\setbeamercolor{normal text}{
fg = darkgray,% frame text color
bg = whitesmoke% frame background color
}
\setbeamercolor{palette primary}{
fg = whitesmoke,% standout frame text color
bg = moderngreen% standout frame background color
}
\setbeamercolor{alerted text}{fg = darkgray}
\setbeamercolor{frametitle}{
fg = whitesmoke,% frame title text color
bg = moderngreen% frame title background color
}
\setbeamercolor{progress bar}{
fg = goldenyellow,% progress bar text color
bg = moderngreen% progress bar background color
}
\usepackage{booktabs}% good looking tables. Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage{multicol}% text in multiple columns, useful for side-by-side text and pictures
\usepackage{tikz}
\usetikzlibrary{backgrounds,calc}
%%%%% notes %%%%%
\usepackage{pgfpages}
\mode<handout>{% insert handout in \documentclass[handout]{beamer}
\pgfpagesuselayout{4 on 1}[
a4paper,
border shrink=5mm,
landscape
]
\setbeameroption{show notes}
}
\mode<beamer>{% insert beamer in \documentclass[beamer]{beamer}
\setbeameroption{show notes on second screen=left}% change =bottom for notes below or =left for notes on the left of the slides
}
%\setbeameroption{hide notes}% Show only slides
%\setbeameroption{show only notes}% Show only notes
%\setbeameroption{show notes on second screen=bottom}% Show notes and slides
\setbeamerfont{note page}{size=\large}
\setbeamertemplate{itemize/enumerate subbody begin}{\large}
%%%%%%%%%%%%%%%%%
\begin{document}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/coverpanamapapershidden.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
Qualcuno saprebbe riconoscere chi sono le persone in questa slide?
{\color{orange}\textit{wait 5 seconds}}
}
\note[item]{
Vediamolo:
{\color{orange}\textbf{This 00:10}} | {\color{red}\textbf{All 00:10}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/coverpanamapapersrevealed.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
Putin, Assad, Poroshenko, il re Salman, Ahmadinejad...
Tutti politici di altissimo livello...
}
\note[item]{
che apparvero nel...
{\color{orange}\textbf{This 00:10}} | {\color{red}\textbf{All 00:20}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/coverpanamapapersrevealedtitled.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
...Panama Papers leak.
}
\note[item]{
Ma cosa erano i Panama Papers?
{\color{orange}\textbf{This 00:15}} | {\color{red}\textbf{All 00:35}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/informer.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
\begin{itemize}
\item In aprile 2016,
\item grazie ad un informatore ...
\end{itemize}
{\color{orange}\textbf{This 00:5}} | {\color{red}\textbf{All 00:40}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/newspapers.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
\begin{itemize}
\item ... l'inchiesta di 307 giornalisti da 76 paesi ha portato alla luce documenti e informazioni
\item su migliardi di denaro dirottati da studi legali internazionali e banche verso paradisi fiscali
\item per conto di...
\end{itemize}
{\color{orange}\textbf{This 00:15}} | {\color{red}\textbf{All 00:55}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/Assad.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
... leader politici, criminali ...
{\color{orange}\textbf{This 00:05}} | {\color{red}\textbf{All 01:00}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/art.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
... funzionari d'intelligence, artisti ...
{\color{orange}\textbf{This 00:05}} | {\color{red}\textbf{All 01:05}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/FIFA1.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
... VIP dello sport ...
{\color{orange}\textbf{This 00:05}} | {\color{red}\textbf{All 01:10}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/Messi.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
... e dello spettacolo.
{\color{orange}\textit{wait 5 seconds}}
}
\note[item]{
\begin{itemize}
\item Quanto era grande il dataset leakato?
\item ... come erano strutturati i dati?
\end{itemize}
{\color{orange}\textbf{This 00:15}} | {\color{red}\textbf{All 01:25}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/datasetsizenew.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
Il leak era di dimensione 2.6 TB, 1500 volte più grande del Cablegate del 2010 di Wikileaks.
{\color{orange}\textbf{This 00:10}} | {\color{red}\textbf{All 01:35}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/datatypes.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
La maggior parte dei dati erano non strutturati, sotto forma di emails, immagini e files PDF inviati.
{\color{orange}\textbf{This 00:10}} | {\color{red}\textbf{All 01:45}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/datasetsizeandtypes.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
\begin{itemize}
\item Una domanda sorge spontanea:
\item Come si può indagare su un dataset così immenso
\item e in gran parte fatto di dati non strutturati?
\end{itemize}
{\color{orange}\textbf{This 00:15}} | {\color{red}\textbf{All 02:00}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/team.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
Loro, un team composto da giornalisti investigativi ed esperti di database a grafi ce l'hanno fatta.
{\color{orange}\textbf{This 00:10}} | {\color{red}\textbf{All 02:10}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/graphsmall.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
Facendo buon uso delle relazioni che derivano da dati interconnessi (ad esempio le mail, le dipendenze tra le entità) ...
{\color{orange}\textbf{This 00:10}} | {\color{red}\textbf{All 02:20}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/neo4jcypher.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
\begin{itemize}
\item ... e di nuove tecnologie (come i database a grafi),
\item hanno generato grafi con nodi rappresentanti le entità coinvolte
\item e archi rappresentanti le connessioni tra loro,
\end{itemize}
{\color{orange}\textbf{This 00:15}} | {\color{red}\textbf{All 02:35}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/panamapapers/graph.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
\begin{itemize}
\item il tutto interrogabile
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Questo è uno dei più eclatanti esempi a queste dimensioni
\item dell'utilizzo di database a grafi per svolgere un compito
\item che altri tipi di database semplicemente non potevano fare
\item (almeno i tempi di interrogazione non sarebbero stati umanamente accettabili)
\item perché non progettati per effettuare visite su grafi con dati non strutturati.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Nel lavoro svolto per la tesi, non si è parlato di Panama Papers.
\item Ma:
\end{itemize}
{\color{orange}\textbf{This 00:35}} | {\color{red}\textbf{All 03:10}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}[noframenumbering, standout]
\normalfont
\vspace*{0.75cm}
\fontsize{26pt}{33pt}\selectfont\textsc{\break\mydocumenttitle}
\begin{columns}[t]
\column{0.13\textwidth}
\column{0.69\textwidth}
\vspace*{-1.25cm}
\begin{center}
\Large\normalfont\mydocumentsubtitle
\vspace*{0.5cm}
\normalsize\textbf{\myauthor}
\end{center}
%\mydateofpublishing
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 0.25\paperwidth
]{images/LogoUniBGwhiterotatedcut.pdf}
};
\end{pgfonlayer}
\end{tikzpicture}
\column{0.13\textwidth}
\end{columns}
\note[item]{
\normalfont
\begin{itemize}
\item Facendo uso di un database a grafi per il salvataggio
\item e l'interrogazione di dati di un dataset di 5.6 milioni di pubblicazioni scientifiche accademiche da 2.8 milioni di ricercatori,
\item applicando al grafo da essi generati un algoritmo di Community Detection,
\item ovvero, di individuazione delle comunità
\item sono state individuate 180 mila Communities.
\item Inoltre, è stata sviluppata una Full-Stack Web Application per visualizzare queste comunità di collaborazione.
\end{itemize}
}
\note[item]{
\normalfont
Più in dettaglio:
{\color{orange}\textbf{This 00:40}} | {\color{red}\textbf{All 03:50}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\stepcounter{framenumber}
\begin{frame}{The work done}
\begin{enumerate}
\item \textbf{Literature review} of graph theory, graph databases and clustering algorithms.
\item \texttt{dblp.org} \textbf{Dataset download, conversion \& import} in ArangoDB Graph DBMS.
\item \textbf{Data transformations} to obtain vertices, edges and the complete graph.
\item \textbf{Community Detection Algorithm application} on the graph for clustering.
\item \textbf{Web Application development} to display the results of the clustering.
\end{enumerate}
\note[item]{
\begin{itemize}
\item \footnotesize È stata fatta una consultazione in letteratura dei concetti base di teoria dei grafi,
\item \footnotesize delle varie caratteristiche dei database a grafi
\item \footnotesize e degli algoritmi per l'individuazione delle communities in grafi.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item \footnotesize Poi è stato scaricato il dataset da dblp.org, è stato convertito
\item \footnotesize e importato su ArangoDB, il graph database management system scelto.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item \footnotesize Le collezioni di dati sono state sottoposte a trasformazioni per ottenere vertici,
\item \footnotesize archi e da questi il grafo completo dell'intero dataset.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item \footnotesize Su tale grafo poi è stato applicato un Label Propagation Community Detection Algorithm,
\item \footnotesize ovvero un algoritmo a propagazione di etichette per l'individuazione delle comunità di collaborazione scientifica.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item \footnotesize In fine, è stata sviluppata una Web Application per visualizzare le communities individuate.
\end{itemize}
}
\note[item]{
\footnotesize Vediamoli uno ad uno...
\large {\color{orange}\textbf{This 00:50}} | {\color{red}\textbf{All 04:40}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{Graph databases}
\centering
\includegraphics[width = 0.78\paperwidth, height = 0.78\paperheight, keepaspectratio]{images/BechbergerPerryman2020page8.pdf}
\note[item]{
\begin{itemize}
\item ... più i dati sono interconnessi e strutturati in modo complesso,
\item più fa senso usare database a grafi
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Inoltre se i nested JOINs da fare durante un'interrogazione sono più di 3 livelli di profondità,
\end{itemize}
{\color{orange}\textbf{This 00:15}} | {\color{red}\textbf{All 04:55}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/PregelDetectedCommunityOtherVerticesResultcut.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
\begin{itemize}
\item ovverò, in termini di grafi, se bisogna fare più di 3 salti di attraversamento degli archi,
\item allora i tempi di interrogazione usando database tradizionali diventano proibitivi.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Dunque, vediamo ora concretamente cosa è stato fatto.
\end{itemize}
{\color{orange}\textbf{This 00:20}} | {\color{red}\textbf{All 05:15}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{Le macchine}
\begin{tikzpicture}[remember picture,overlay]
\begin{pgfonlayer}{background}
\node[anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0in,0in)$) {
\includegraphics[
width = 1\paperwidth,
height = 1\paperheight,
keepaspectratio
]{images/machinesphotocut.jpg}
};
\end{pgfonlayer}
\end{tikzpicture}
\note[item]{
\begin{itemize}
\item Al fine di hostare il database,
\item servire l'API della Web Application
\item e l'interfaccia lato frontend del sito,
\item 3 macchine separate, un router e uno switch sono stati usati.
\item La quarta macchina è stata usata a scopi di sviluppo e accesso remoto.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Una volta installato i sistemi operativi sulle varie macchine
\item e ArangoDB sulla macchina scelta come host del database...
\end{itemize}
{\color{orange}\textbf{This 00:30}} | {\color{red}\textbf{All 05:45}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{The dataset: dblp.org}
\begin{center}
\vspace*{-0.1cm}
\includegraphics[
width = 0.70\paperwidth,
height = 0.70\paperheight,
keepaspectratio
]{images/dblpdatasetdownload.pdf}
\end{center}
\vspace*{-0.3cm}
{\color{darkgray}The dataset:}
\begin{columns}[t]
\column{.50\textwidth}
\vspace*{-0.6cm}
\begin{itemize}
\item Compressed archive of 623 MB.
\item Once extracted: Single XML file of 3.2 GB.
\end{itemize}
\column{.50\textwidth}
\vspace*{-0.6cm}
\begin{itemize}
\item 8.5 million XML entries on publications, authors, journals, institutions, citations etc.
\end{itemize}
\end{columns}
\note[item]{
\begin{itemize}
\item si procede al download del dataset dal sito di dblp.org .
\item Il dataset è fatto da un unico file compresso di dimensione 623 MB.
\item Una volta estratto, il singolo file XML è di 3.2 GB
\item e contiene circa 8 millioni e mezzo di voci XML su autori,
\item publicazioni, affiliazioni, citazioni, journals e così via.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Sicuramente i dati non possono essere importati nel database così
\item perché ArangoDB richiede che essi siano in formato line JSON.
\item Perciò serve convertire le voci XML in righe di line JSON.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Un altro problema è la dimensione da 3.2 GB del file XML,
\item non molto facile da manipolare.
\end{itemize}
{\color{orange}\textbf{This 00:40}} | {\color{red}\textbf{All 6:25}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{Data conversion, import and transformations}
\begin{center}
\vspace*{-0.1cm}
\includegraphics[
width = 0.7\paperwidth,
height = 0.7\paperheight,
keepaspectratio
]{images/datatransformations.pdf}
\end{center}
\vspace*{-0.3cm}
{\color{darkgray}The steps:}
\begin{columns}[t]
\column{.50\textwidth}
\vspace*{-0.3cm}
\begin{enumerate}
\item \small Conversion from XML to line JSON;
\item \small Import in ArangoDB collection;
\end{enumerate}
\column{.50\textwidth}
\vspace*{-1.3cm}
\begin{enumerate}
\setcounter{enumi}{2}
\item \small Transform imported data to vertex documents;
\item \small Link vertices by edges;
\item \small Build the graph.
\end{enumerate}
\end{columns}
\note{
Quindi le operazioni da effettuare per arrivare dai dati grezzi al grafo completo sono:
}
\note[item]{
\begin{itemize}
\item La suddivisione del file XML in tanti piccoli files
\item e la conversione di ciascuno di essi in formato line JSON.
\end{itemize}
}
\note[item]{
L'import dei line JSON in una collection in un database ArangoDB,
}
\note[item]{
\begin{itemize}
\item La trasformazione dei documenti importati
\item in modo che possano essere a tutti gli effetti dei vertici di un grafo.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item La creazione degli archi tra i vertici usando gli attributi \_from e \_to.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Costruzione del grafo finale con l'insieme delle collezioni dei vertici \item e l'insieme delle collezioni degli archi.
\end{itemize}
{\color{orange}\textbf{This 00:45}} | {\color{red}\textbf{All 07:10}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{The graph}
\begin{columns}
\column{.30\textwidth}
\small
{\color{darkgray}A subgraph of the obtained final graph:}
\column{.70\textwidth}
\begin{center}
\vspace*{-0.2cm}
\hspace*{0.1cm}
\includegraphics[
width = 1\textwidth,
height = 0.85\paperheight,
keepaspectratio
]{images/SnapshotArangoDBGraphPrevidiMazzolenishort.png}
\end{center}
\end{columns}
\note[item]{
Questo è un assaggio del grafo finale, o anche una verifica della sua validità.
}
\note[item]{
Il grafo finale è composto dall'insieme di tutti i vertici del dataset e da tutte le connessioni derivanti dalle informazioni dei loro attributi.
}
\note[item]{
In questo sottografo sono mostrate le connessioni di primo e secondo grado del professor Previdi, il vertice in mezzo.
}
\note[item]{
Si può notare in alto a destra professor Mazzoleni e Scandella.
}
\note[item]{
In alto a sinistra professor Ermidoro e in basso a destra professor Bitanti.
{\color{orange}\textbf{This 00:40}} | {\color{red}\textbf{All 07:50}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{Pregel Label Propagation Community Detection Algorithm}
\vspace*{0.5cm}
\begin{center}
\includegraphics[
width = 0.85\paperwidth,
height = 0.85\paperheight,
keepaspectratio
]{images/labelpropagation.pdf}
\end{center}
\vspace*{0.25cm}
{\color{darkgray}The algorithm:}
\begin{columns}[t]
\column{.50\textwidth}
\vspace*{-0.1cm}
\begin{enumerate}
\item \small Initially every vertex is labeled with a unique label.
\item \small The labels are propagated from vertex to vertex iteratively.
\end{enumerate}
\column{.50\textwidth}
\vspace*{-1cm}
\begin{enumerate}
\setcounter{enumi}{2}
\item \small At the end of an iteration, each vertex updates its label to the one with maximum weight of neighbor vertices.
\item \small Convergence is reached when each vertex is labeled as the majority of its neighbors.
\end{enumerate}
\end{columns}
\note[item]{
\small Ogni vertice è etichettato con una label unica.
}
\note[item]{
\small Le labels sono fatte propagare da un vertice all'altro in modo iterativo.
}
\note[item]{
\begin{itemize}
\item \small Alla fine di ogni iterazione di propagazione, un vertice aggiorna la sua label tale che corrisponda a quella col peso massimo dei vertici vicini e loro connessioni.
\item \small I pareggi sono decisi a random.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item \small Si raggiunge un punto di convergenza quando ogni nodo è etichettato come la maggioranza dei suoi vicini.
\item \small Può succedere che la convergenza ad un'unica soluzione non avvenga in un tempo ragionevole.
\item \small In tali casi, impostare un numero massimo di iterazioni può essere un trade-off tra accuratezza e tempo d'esecuzione.
\end{itemize}
{\color{orange}\textbf{This 00:45}} | {\color{red}\textbf{All 08:35}} | {\color{blue}\textit{\large go to next slide}}
}
\end{frame}
\begin{frame}{A generic Pregel algorithm}
\hspace*{-0.7cm}
{\color{darkgray}Pregel's supersteps:}
\begin{columns}[t]
\column{.35\textwidth}
\vspace*{-0.3cm}
\hspace*{-0.1cm}
{%
\color{darkgray}%
\small\textbf{Diffusion}: information is propagated from vertex to neighbors.
}
\hspace*{-0.1cm}
{%
\color{darkgray}%
\small\textbf{Fusion}: information is aggregated from neighbors to a set of entities
}
\column{.65\textwidth}
\vspace*{-1cm}
\hspace*{-2cm}
\begin{center}
\includegraphics[
width = 0.6\paperwidth,
height = 0.6\paperheight,
keepaspectratio
]{images/pregelpseudocode.pdf}
\end{center}
\vspace*{-0.1cm}
\begin{center}
\hspace*{-4.7cm}
\includegraphics[
width = 0.8\paperwidth,
height = 0.8\paperheight,
keepaspectratio
]{images/ArangoDBCustomPregel2020sendmessage.pdf}
\end{center}
\end{columns}
\note{
\begin{itemize}
\item \small Un generico algoritmo Pregel lavora in ambienti distribuiti,
\item \small con computazioni e dati sparsi in diverse macchine.
\end{itemize}
\begin{itemize}
\item \small Per convergere ad uno stato di consenso distribuito,
\item \small Pregel funziona con iterazioni di superpassi.
\end{itemize}
\small I superpassi sono due:
}
\note[item]{
\begin{itemize}
\item \small La fase di diffusione: l'informazione sulle etichette viene propagata da vertice a vertice.
\item \small Questo step è anche detto di comunicazione del label.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item \small L'altra fase è quella di fusione,
\item \small o di aggregazione dell'informazione dai vertici ad un insieme di nodi.
\end{itemize}
\large {\color{orange}\textbf{This 00:40}} | {\color{red}\textbf{All 9:15}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{Clustering results}
\begin{center}
\vspace*{-0.1cm}
\includegraphics[
width = 0.85\paperwidth,
height = 0.85\paperheight,
keepaspectratio
]{images/communitiesdetectedtable.pdf}
\end{center}
\note[item]{
\begin{itemize}
\item Nel grafo fatto da 8 milioni e mezzo di vertici e 24 milioni di archi,
\item sono state individuate 187 milla comunità.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Mediamente in una community ci sono
\item 16 ricercatori, 2 instituti di affiliazione, 1 journal.
\item Inoltre, generalmente i nodi di una community hanno fatto mediamente 40 pubblicazioni scientifiche e le pubblicazioni sono associate alla stessa scuola.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item Per vedere questi risultati in maniare visualmente apprezzabile,
\item è stata sviluppata una Full-stack Web Application.
\item Vediamo come è fatta:
\end{itemize}
{\color{orange}\textbf{This 00:35}} | {\color{red}\textbf{All 09:50}} | {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{Web Application's Architecture}
\begin{center}
\vspace*{0.5cm}
\hspace*{-0.2cm}
\includegraphics[
width = 0.9\paperwidth,
height = 0.9\paperheight,
keepaspectratio
]{images/architecture.pdf}
\end{center}
\note[item]{
\begin{itemize}
\item \small La Web Application è composta dall'interfaccia lato Frontend
\item \small e dall'API in backend che fa uso del graph database.
\end{itemize}
}
\note[item]{
\small Il client è implementato con React, TypeScript e Cytoscape per il rendering dei grafi.
}
\note[item]{
\begin{itemize}
\item \small L'API è sviluppato con GraphQL ed è servito da Apollo Server.
\item \small Arangojs è un driver JavaScript che viene usato per comunicare con ArangoDB.
\end{itemize}
}
\note[item]{
\begin{itemize}
\item \small Il database è ArangoDB, un DBMS multi model, che si presta da graph database.
\item \small Il linguaggio di querying del database è AQL, ArangoDB Querying Language.
\end{itemize}
}
\note[item]{
\small 3 macchine servono la WebApp, una per il FE, una per il BE e l'ultima per il DB.
\large {\color{orange}\textit{Wait 10 seconds}}
}
\note[item]{
\begin{itemize}
\item \small Fino ad ora abbiamo visto la trasformazione dei dati in grafo con ArangoDB.
\item \small Ora vediamo come è fatto l'API e poi successivamente il frontend.
\end{itemize}
{\color{orange}\textbf{This 00:50}} | {\color{red}\textbf{All 10:40}} | \large {\color{blue}\textit{Go to next slide}}
}
\end{frame}
\begin{frame}{GraphQL API}
\begin{center}
\includegraphics[
width = 0.85\paperwidth,
height = 0.85\paperheight,
keepaspectratio
]{images/graphqlapollonew.pdf}
\end{center}
\bigskip
{\color{darkgray}The API, initially REST then converted to a GraphQL API, is made of two resolvers:}
\begin{columns}[t]
\column{.50\textwidth}
\begin{enumerate}
\item A resolver function to handle the search form autocomplete suggestions.
\end{enumerate}
\column{.50\textwidth}
\begin{enumerate}
\setcounter{enumi}{1}
\item A resolver function to provide collaboration graph's data.
\end{enumerate}
\end{columns}
\note[item]{