-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathindex.Rmd
1566 lines (936 loc) · 98.2 KB
/
index.Rmd
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: krantz
biblio-style: apalike
link-citations: yes
colorlinks: yes
lot: no
lof: no
site: bookdown::bookdown_site
description: MI2
graphics: yes
cover-image: images/cover.png
title: MI²
---
```{r setup, include=FALSE}
options(
htmltools.dir.version = FALSE, formatR.indent = 2, width = 55, digits = 4
)
output <- knitr::opts_knit$get("rmarkdown.pandoc.to")
is.html = !is.null(output) && output == "html"
```
# MI².AI {.unnumbered #mi2ai}
<script>
document.body.classList.add("index-page")
</script>
On a mission to responsibly build <br/>machine learning predictive models.
MI².AI is a group of mathematicians and computer scientists who love to play with predictive models.
We are spread between [Warsaw University of Technology](https://www.pw.edu.pl/engpw) and [University of Warsaw](https://en.uw.edu.pl). Here we have workshops and seminars, here we are forging new ideas, creating tools, solving problems, doing consulting and sharing our positive attitude. Feel free to jump in.
#### Mission {-}
Machine learning is like atomic energy. **We develop leaders, skills, methods, tools and good practices so that predictive models can be deployed responsibly and sustainably**.
#### Vision {-}
MI² is a group of experts supporting global initiatives aimed at responsible and sustainable machine learning. We support the development of future leaders of responsible machine learning through internships, PhDs, postdoctoral fellowships and so on. We seek for research grants and business projects to conduct both scientific and applied research. We develop and maintain the software and infrastructure necessary to build responsible and sustainable ML. We develop cooperation with international teams working on similar topics. We support companies to implement best practices related to responsible modelling in their operation. We conduct workshops and training on responsible predictive modelling.
## The Team {-}
<script>
document.querySelector(".page-inner section > *:first-child").classList.add("team-layout")
document.body.classList.add("team-page")
document.body.classList.add("two-columns")
$(function() {
// Thanks to Mark Avery
// http://stackoverflow.com/questions/8191015/how-do-i-lay-out-my-content-divs-in-a-similar-manner-to-facebook-timeline
var adjustArticleHeights = (function () {
var leftColumnHeight = 0,
rightColumnHeight = 0,
$articles = $('.masonry > *');
for (var i = 0; i < $articles.length; i++) {
if (leftColumnHeight > rightColumnHeight) {
rightColumnHeight += $articles.eq(i).addClass('right').outerHeight(true);
} else {
leftColumnHeight += $articles.eq(i).outerHeight(true);
}
}
return $articles;
})();
});
</script>
<div id="team-cover-img"></div>
#### Members {-}
* [Przemysław Biecek](the-team.html#przemysław-biecek), PhD, DSc (Team Leader)
* [Hubert Baniecki](the-team.html#hubert-baniecki), PhD student
* [Mustafa Cavus](the-team.html#mustafa-cavus), PhD
* [Weronika Hryniewska-Guzik](the-team.html#weronika-hryniewska-guzik), PhD student
* [Łukasz Jaremek](the-team.html#łukasz-jaremek), MSc student
* [Agata Kaczmarek](the-team.html#agata-kaczmarek), MSc student
* [Bartosz Kochański](the-team.html#bartosz-kochanski), PhD student
* [Filip Kołodziejczyk](the-team.html#filip-kołodziejczyk), MSc student
* [Mateusz Krzyziński](the-team.html#mateusz-krzyziński), MSc
* [Mateusz Kwiatkowski](the-team.html#mateusz-kwiatkowski), MSc student
* [Tymoteusz Kwieciński](the-team.html#tymoteusz-kwiecinski), BSc student
* [Stanisław Łaniewski](the-team.html#stanisław-łaniewski), PhD student
* [Wiktoria Mieleszczenko-Kowszewicz](the-team.html#wiktoria-mieleszczenko-kowszewicz), PhD
* [Dawid Płudowski](the-team.html#dawid-płudowski), MSc student
* [Nuno Sepúlveda](https://www.immune-stats.net), PhD
* [Bartek Sobieski](the-team.html#bartek-sobieski), MSc student
* [Jakub Świstak](the-team.html#jakub-swistak), MSc student
* [Paulina Tomaszewska](the-team.html#paulina-tomaszewska), PhD student
* [Piotr Wilczyński](the-team.html#piotr-wilczyński), MSc student
* [Katarzyna Woźnica](the-team.html#katarzyna-woźnica), PhD student
* [Vladimir Zaigrajew](the-team.html#vladimir-zaigrajew), PhD student
#### Collaborators {-}
* [Mariusz Adamek](https://www.mariuszadamek.io/), Prof, MD
* Przemysław Bombiński, PhD, MD
* [André Fonseca](https://www.immune-stats.net), PhD student
* [Stanisław Giziński](the-team.html#stanisław-giziński), MSc student
* Katarzyna Kobylińska, PhD student
* [Piotr Komorowski](the-team.html#piotr-komorowski), MSc
* [Anna Kozak](the-team.html#anna-kozak), MSc
* Marcin Luckner, PhD
* [João Malato](https://www.immune-stats.net), PhD student
* [Bartek Pieliński](the-team.html#bartosz-pieliński), PhD, DSc
* [Hanna Piotrowska](the-team.html#hanna-piotrowska), MA
* [Barbara Rychalska](the-team.html#barbara-rychalska), PhD
* Elżbieta Sienkiewicz, PhD
* [Julian Sienkiewicz](the-team.html#julian-sienkiewicz), PhD
* [Tomasz Stanisławek](the-team.html#tomasz-stanisławek), PhD
* Adrian Stańdo, MSc student
* [Mikołaj Spytek](the-team.html#mikołaj-spytek), MSc
* Patryk Szatkowski, PhD student, MD
* [Emilia Wiśnios](the-team.html#emilia-wiśnios), MSc student
* [Jakub Wiśniewski](the-team.html#jakub-wiśniewski), MSc student
* [Mateusz Wójcik](the-team.html#mateusz-wójcik), MSc student
<!-- #### Summer Interns {-} -->
#### Alumni {-}
* Piotr Czarnecki, MSc
* [Maciej Chrabąszcz](the-team.html#maciej-chrabąszcz), PhD student
* Alicja Gosiewska, MSc
* Adrianna Grudzień, BSc
* [Mateusz Grzyb](the-team.html#mateusz-grzyb), MSc student
* [Paulina Kaczyńska](the-team.html#paulina-kaczyńska), MSc
* Maria Kałuska, BSc
* Marcin Kosiński, MSc
* Adam Kozłowski, MSc
* Wojciech Kretowicz, BSc
* Michał Kuźba, MSc
* Szymon Maksymiuk, BSc
* Tomasz Mikołajczyk, PhD
* Katarzyna Pękala, MSc
* [Piotr Piątyszek](the-team.html#piotr-piątyszek), BSc
* [Hubert Ruczyński](the-team.html#hubert-ruczyński), MSc
* Adam Rydelek, BSc
* Bartosz Sawicki, BSc
* Patryk Słowakiewicz, BSc
* Michał Sokólski, MSc
* Mateusz Stączek, BSc
* Szymon Szmajdziński, BSc
* Zuzanna Trafas, BSc
* [Hoang Thien Ly](the-team.html#hoang-thien-ly), BSc
* Kinga Ułasik, BSc
* Anna Wróblewska, PhD
* [Paweł Wojciechowski](the-team.html#paweł-wojciechowski), BSc
* Hanna Zdulska, BSc
* [Artur Żółkowski](the-team.html#artur-żółkowski), BSc
<div class="masonry">
### Przemysław Biecek {-}
<img src="images/przemek.jpg" >
My personal mission is to enhance human capabilities by supporting them through access to data-driven and knowledge-based predictions. I execute it by developing methods and tools for responsible machine learning, trustworthy artificial intelligence and reliable software engineering.
I work as an associate professor at [Warsaw University of Technology](http://www.mini.pw.edu.pl/) and the [University of Warsaw](https://www.mimuw.edu.pl/). I graduated in software engineering and mathematical statistics and now work on model visualisation, explanatory model analysis, predictive modelling and data science for healthcare. In 2016, I formed the research group MI² which develops methods and tools for predictive model analysis.
Google Scholar: [Af0O75cAAAAJ](https://scholar.google.pl/citations?user=Af0O75cAAAAJ)
GitHub: [pbiecek](https://github.com/pbiecek)
LinkedIn: [pbiecek](https://www.linkedin.com/in/pbiecek/)
### Mariusz Adamek {-}
<img src="images/mariusz_adamek.jpg">
I work at two Medical Universities (Silesia and Gdańsk) holding a Professorship in Medicine and Health Sciences. My interests are focused on lung cancer prevention and screening, the latter by means of low-dose computed tomography (LDCT) with special emphasis put on molecular biology methods, prediction models and image analysis aimed to enhance the performance of lung screening outcomes.
Google Scholar: [Y20ONtQAAAAJ](https://scholar.google.com/citations?user=Y20ONtQAAAAJ)
### Hubert Baniecki {-}
<img src="images/hbaniecki.jpg" >
I'm a PhD student in Computer Science at the University of Warsaw. Prior, I did my MSc (2022) and BSc (2021) in Data Science at Warsaw University of Technology.
My main research interest is explainable machine learning, with particular emphasis on adversarial attacks & explanation evaluation.
Website: [hbaniecki.com](https://hbaniecki.com/)
### Mustafa Cavus {-}
<img src="images/mcavus.jpg" >
I work as an assistant professor at the [Eskisehir Technical University](https://www.eskisehir.edu.tr/). I joined the MI² DataLab as a post-doc researcher in 2021. I work on glocal explanations and imbalanced learning.
Google Scholar: [I63d1WIAAAAJ&hl](https://scholar.google.com.tr/citations?user=I63d1WIAAAAJ&hl)
GitHub: [mcavus](https://github.com/mcavs)
LinkedIn: [mcavus](https://www.linkedin.com/in/mustafacavusphd)
Twitter: [mcavus](https://twitter.com/mustafa__cavus)
### Julian Sienkiewicz {-}
<img src="images/jsienkiewicz.jpg" >
I work as an assistant professor at [Faculty of Physics, WUT](https://www.fizyka.pw.edu.pl). My main research area links with sociophysics, complex networks and agent-based models. In the scope of MI² DataLab I follow my other interest - scientometrics.
Google Scholar: [mIwu11QAAAAJ](https://scholar.google.pl/citations?user=mIwu11QAAAAJ)
LinkedIn: [julek-sienkiewicz-873829](https://www.linkedin.com/in/julek-sienkiewicz-873829/)
### Maciej Chrabąszcz {-}
<img src="images/maciej_chrabaszcz.jpg">
I am pursuing a PhD in Computer Science at Warsaw University of Technology, where I also obtained my MSc in Mathematical Statistics in 2023. My main research interests lie in the fields of responsible and explainable machine learning, with a focus on Red Teaming foundation models.
GitHub: [maciejchrabaszcz](https://github.com/maciejchrabaszcz)
LinkedIn: [maciej-chrabaszcz](https://www.linkedin.com/in/maciej-chrabaszcz/)
### Stanisław Giziński {-}
<img src="images/sgizinski.jpg" >
A Research Software Engineer and student of Machine Learning at Faculty of Mathematics Informatics and Mechanic, University of Warsaw. His work in the lab focuses on using natural language processing and network analysis to better understand the spread of AI public policies. Interested also in applying machine learning in bioinformatics.
Google Scholar: [Stanisław Giziński](https://scholar.google.com/citations?user=QVXc3jAAAAAJ)
GitHub: [Gizzio](https://github.com/Gizzio)
LinkedIn: [stanislaw-gizinski](https://www.linkedin.com/in/stanislaw-gizinski/)
### Mateusz Grzyb {-}
<img src="images/mgrzyb.png">
MSc student in Data Science at Warsaw University of Technology. Interested in artificial intelligence and scientific computing, but above all simply enjoys programming.
GitHub: [mgrzyb99](https://github.com/mgrzyb99)
### Weronika Hryniewska-Guzik{-}
<img src="images/whryniewska.png" >
PhD candidate in computer science at Warsaw University of Technology. Interested in deep learning modelling on medical images in the context of explainability and responsible AI.
Google Scholar: [aJeg3IQAAAAJ](https://scholar.google.pl/citations?user=aJeg3IQAAAAJ)
GitHub: [Hryniewska](https://github.com/Hryniewska)
LinkedIn: [weronikahryniewska](https://www.linkedin.com/in/weronikahryniewska)
### Paulina Kaczyńska{-}
<img src="images/paulina_kaczyńska.jpg" >
I am working towards a Master’s degree in Machine Learning at University of Warsaw. I am interested in Natural Language Processing and ML applications in social sciences
GitHub: [Kaczyniec](https://github.com/Kaczyniec)
### Bartosz Kochański {-}
<img src="images/bkochanski.jpg" >
PhD candidate in computer science at Warsaw University of Technology. MSc in electronics and computer science in medicine. BSc in biomedical engineering. Interested in medical image processing and computer-aided diagnosis.
Google Scholar: [Z2WIOZwAAAAJ](https://scholar.google.com/citations?hl=en&user=Z2WIOZwAAAAJ)
Github: [bartoszkochanski](https://github.com/bartoszkochanski)
LinkedIn: [bkochanski](https://www.linkedin.com/in/bkochanski/)
### Piotr Komorowski{-}
<img src="images/pkomorowski.jpg" >
Master's student in Machine Learning at the University of Warsaw. Mainly interested in image processing and XAI applied to medical images.
GitHub: [piotr-komorowski](https://github.com/piotr-komorowski)
LinkedIn: [Piotr-Komorowski](https://www.linkedin.com/in/piotr-komorowski/)
### Anna Kozak {-}
<img src="images/akozak.jpg" >
Graduated in mathematical statistics at Warsaw University of Technology. Interested in explainable artificial intelligence and data visualization. Organizes projects related to education.
Google Scholar: [JIrqf9kAAAAJ](https://scholar.google.pl/citations?user=JIrqf9kAAAAJ)
GitHub: [kozaka93](https://github.com/kozaka93)
LinkedIn: [kozakanna](https://www.linkedin.com/in/kozakanna)
<!-- ### Adam Kozłowski {-}
<img src="images/akozlowski.jpg" >
Graduated in Computer Science at ICM at the University of Warsaw. Currently working in a lab as Research Software Engineer in xLungs. Interested in image processing, deep learning on medical images, and computation acceleration.
GitHub: [adam-kozlowski-280](https://github.com/adam-kozlowski-280)
LinkedIn: [akozowski280](https://www.linkedin.com/in/adam-kozlowski-akozowski280/) -->
### Mateusz Krzyziński {-}
<img src="images/krzyzinskim.jpg" >
MSc student in Data Science at Warsaw University of Technology. Interested in explainable artificial intelligence, with particular emphasis on XAI methods for survival analysis models and XAI applications in the medical field. Also an enthusiast of data visualization.
Google Scholar: [i_r7EUgAAAAJ](https://scholar.google.com/citations?user=i_r7EUgAAAAJ)
GitHub: [krzyzinskim](https://github.com/krzyzinskim)
LinkedIn: [krzyzinskim](https://www.linkedin.com/in/krzyzinskim/)
### Mateusz Kwiatkowski {-}
<img src="images/mkwiatkowski.jpg" >
Graduate in Mathematics and Data Analysis at the Warsaw University of Technology and Master's student in Machine Learning at the University of Warsaw. Enthusiast of game theory and optimisation. Particularly interested in practical applications of mathematics, especially in XAI and AI safety.
GitHub: [MKwiatkowski25](https://github.com/MKwiatkowski25)
LinkedIn: [mateusz-kwiatkowski](https://www.linkedin.com/in/mateusz-kwiatkowski-698042315/)
### Tymoteusz Kwieciński {-}
<img src="images/kwiecinskit.jpg">
BSc student in Data Science at Warsaw University of Technology. Particularly interested in explainable artificial intelligence, computer vision and NLP.
GitHub: [Fersoil](https://github.com/Fersoil)
LinkedIn: [Tymoteusz-Kwieciński](https://www.linkedin.com/in/tymoteuszkwiecinski/)
### Stanisław Łaniewski {-}
<img src="images/Stanislaw Laniewski.jpg" >
PhD student in Quantitative Psychology and Economics at University of Warsaw, Machine Learning Researcher at MI2 Data Lab, Msc in Actuarial Science and Mathematical Finance at University of Amsterdam, former Quantitative Researcher at Flow Traders
His research focuses on enhancing classical methods used in discrete choice and finance with machine learning and how to apply them to explain behavioral phenomena and heuristics. He is also keen on finding balance between best predictive models and their explainability. Avid gamer who applies statistical techniques to deepen the understanding of best strategies
LinkedIn: [Stanisław-Łaniewski](https://www.linkedin.com/in/stanislawlaniewski/)
### Wiktoria Mieleszczenko-Kowszewicz {-}
<img src="images/wiktoria-mk.jpg" >
PhD in social science, graduated from an interdisciplinary doctoral program: information and communication technologies & psychology. Researcher interested in the use of LLMs in psychometrics and developing responsible AI solutions for positive societal impact.
LinkedIn: [Wiktoria Mieleszczenko-Kowszewicz](https://www.linkedin.com/in/wiktoriakowszewicz/)
### Piotr Piątyszek {-}
<img src="images/piotr_piatyszek.jpg" >
Undergraduate Data Science student at Warsaw University of Technology. Works as a research software engineer on enhancing accessibility and completeness of explainable AI. During pandemic contributes to a system of monitoring covid variants.
Github: [piotrpiatyszek](https://github.com/piotrpiatyszek)
### Bartosz Pieliński {-}
<img src="images/BPielinski.jpg" >
I am an Assistant Professor at the Faculty of Political Science and International Studies at Warsaw University. I am interested in applying quantitative methods to study public policies. I am a founding member of the Institutional Grammar Research Initiative, which is focused on developing a new way of analysing social rules. I have participated in several research projects covering social policy, non-profit organizations, social enterprises, and international organizations.
Website: [https://pielinski.info/](https://pielinski.info/)
Google Scholar: [hnWiaVEAAAAJ](https://scholar.google.com/citations?user=hnWiaVEAAAAJ)
LinkedIn: [Bartosz Pieliński](https://www.linkedin.com/in/pielinski/)
### Hanna Piotrowska {-}
<img src="images/HannaPiotrowska-kwadrat.jpg" >
Information designer, focusing mainly on data visualization, branding and book design, with a strong interest in Data Science and perception studies. Winner of numerous awards, including The Kantar Information Is Beautiful Awards, HOW International Design Awards, Polish Graphic Design Awards and KTR.
LinkedIn: [hanna-piotrowska](https://www.linkedin.com/in/hanna-piotrowska-2536214b/)
Twitter: [hannapio](https://twitter.com/hannapio)
Behance: [hannapio](https://www.behance.net/hannapio).
### Hubert Ruczyński {-}
<img src="images/hubert_ruczyński.jpg" >
I am working towards Masters's degree in Data Science at Warsaw University of Technology. I am also teaching students about data exploration and visualisation. My major interests are: AutoML | Natural Language Processing | Data Visualization | Fairness.
GitHub: [HubertR21](https://github.com/HubertR21)
LinkedIn: [Hubert Ruczyński](https://www.linkedin.com/in/hubert-ruczyński-95518b218/)
### Barbara Rychalska {-}
<img src="images/basia.jpeg" >
PhD candidate in computer science at Warsaw University of Technology. Mainly interested in deep learning for natural language processing (NLP), recommender systems and graph-based learning.
Google Scholar: [Wp0wHJoAAAAJ](https://scholar.google.com/citations?user=Wp0wHJoAAAAJ)
LinkedIn: [Barbara-Rychalska](https://www.linkedin.com/in/barbara-rychalska-97825634/)
<!-- ### Patryk Słowakiewicz {-}
<img src="images/PatrykSlowakiewicz.jpg" >
Student of Data Science at Warsaw University of Technology. Intrested in Tree-Based Machine Learning Models.
GitHub: [PSlowakiewicz](https://github.com/PSlowakiewicz)
LinkedIn: [Patryk Słowakiewicz](https://www.linkedin.com/in/patryk-s%C5%82owakiewicz-b0310723a/) -->
### Bartek Sobieski {-}
<img src="images/bsobieski.jpg" >
MSc student in Data Science at Warsaw University of Technology. Interested in deep learning and hyperparameter optimization.
GitHub: [sobieskibj](https://github.com/sobieskibj)
LinkedIn: [Bartłomiej-Sobieski](www.linkedin.com/in/bartłomiej-sobieski)
### Mikołaj Spytek {-}
<img src="images/spytekm.jpeg">
MSc student in Data Science at Warsaw University of Technology. Interested in explainable artificial intelligence, data vizualization and survival analysis.
Google Scholar: [1u49AqYAAAAJ](https://scholar.google.com/citations?user=1u49AqYAAAAJ)
GitHub: [mikolajsp](https://github.com/mikolajsp)
LinkedIn: [Mikołaj-Spytek](https://www.linkedin.com/in/miko%C5%82aj-spytek-154760212/)
### Jakub Świstak {-}
<img src="images/jswistak.jpg">
MSc student in Data Science at Warsaw University of Technology. Interested in artificial intelligence, NLP and computer vision.
GitHub: [jswistak](https://github.com/jswistak)
LinkedIn: [Jakub-Świstak](https://www.linkedin.com/in/jakubswistak/)
### Tomasz Stanisławek {-}
<img src="images/ts.jpg" >
PhD candidate in computer science at Warsaw University of Technology. Mainly interested in deep learning for natural language processing (NLP).
Google Scholar: [gq8NY_UAAAAJ](https://scholar.google.pl/citations?user=gq8NY_UAAAAJ)
GitHub: [tstanislawek](https://github.com/tstanislawek/)
LinkedIn: [Tomasz-Stanisławek](https://pl.linkedin.com/in/tomasz-stanis%C5%82awek-91092729/)
<!-- ### Mateusz Stączek {-}
<img src="images/mstaczek.jpg">
BSc student in Data Science at the Warsaw University of Technology. Interested in exploring various explanation methods for image classification models and visualizing the results.
GitHub: [mstaczek](https://github.com/mstaczek) -->
### Paulina Tomaszewska {-}
<img src="images/ptomaszewska.jpg" >
PhD candidate in Computer Science at Warsaw University of Technology. Gained experience in AI at leading universities during: Deep Learning Summer School at Tsinghua University (China), one-semester exchange at Nanyang Technological University (Singapore) and research internships at Gwangju Institute of Science and Technology (South Korea) and Institute of Science and Technology (Austria). Mainly interested in Deep Learning, Computer Vision and Transfer Learning. Recently, focused on digital pathology.
Google Scholar: [eO245iMAAAAJ](https://scholar.google.com/citations?user=eO245iMAAAAJ)
LinkedIn: [paulina-tomaszewska](https://www.linkedin.com/in/paulina-tomaszewska-2a8517109/)
### Hoang Thien Ly {-}
<img src="images/lhthien.jpeg" >
Bachelor student in Maths and Data Analysis at Warsaw University of Technology. Interested in working with data, and learning explainable artificial intelligence methods.
Google Scholar: [JkysewYAAAAJ](https://scholar.google.com/citations?hl=en&authuser=1&user=JkysewYAAAAJ)
GitHub: [lhthien09](https://github.com/lhthien09)
LinkedIn: [hthienly](https://www.linkedin.com/in/hthienly/)
### Piotr Wilczyński {-}
<img src="images/pwilczynski.jpg">
BSc student in Data Science at Warsaw University of Technology. Interested in Large Language Models, AI Deception and Natural Language Processing. Currently working on my thesis, which applies Computer Vision to medicine.
GitHub: [wi1lku](https://github.com/wi1lku)
LinkedIn: [Piotr-Wilczyński](https://www.linkedin.com/in/piotr-wilczy%C5%84ski-5a529320b/)
### Jakub Wiśniewski {-}
<img src="images/jakwisn.jpg" >
Research Software Engineer and third year Data Science student at Warsaw University of Technology. Developer of tools for bias detection and fairness. Currently researching responsible applications of deep learning. President of Data Science Science Club at WUT.
Google Scholar: [_6eQsXMAAAAJ](https://scholar.google.com/citations?user=_6eQsXMAAAAJ)
GitHub: [jakwisn](https://github.com/jakwisn)
LinkedIn: [jakwisn](https://www.linkedin.com/in/jakwisn)
### Emilia Wiśnios {-}
<img src="images/ewisnios.jpg" >
Research Software Engineer and student of Machine Learning at Faculty of Mathematics, Informatics and Mechanics, University of Warsaw. Interested in natural language processing and reinforcement learning.
GitHub: [emiliawisnios](https://github.com/emiliawisnios)
LinkedIn: [emilia-wisnios](https://www.linkedin.com/in/emilia-wisnios/)
### Paweł Wojciechowski {-}
<img src="images/wojciechowskip.jpeg">
Graduated with a bachelor's degree in Data Science from Warsaw University of Technology. Interested in explainable artificial intelligence, computer vision, and active learning.
GitHub: [p-wojciechowski](https://github.com/p-wojciechowski)
LinkedIn: [wojciechowski-p](https://www.linkedin.com/in/wojciechowski-p/)
### Katarzyna Woźnica {-}
<img src="images/woznicak.jpeg" >
PhD candidate in computer science at Warsaw University of Technology. Graduated in mathematical statistics. Interested in automated machine learning especially in hyperparameter tuning for tabular data. Carrying statistical analysis and predictive modelling for healthcare.
Google Scholar: [tAQS1gQAAAAJ](https://scholar.google.pl/citations?user=tAQS1gQAAAAJ)
GitHub: [woznicak](https://github.com/woznicak)
LinkedIn: [woznicak](https://www.linkedin.com/in/woznicak)
### Vladimir Zaigrajew {-}
<img src="images/vladimir_zaigrajew.jpg">
PhD candidate in computer science at Warsaw University of Technology. Interested in deep learning, primarily on images, with a focus on representation learning.
GitHub: [WolodjaZ](https://wolodjaz.github.io)
LinkedIn: [vladimir-zaigrajew](https://www.linkedin.com/in/vladimirzaigrajew/)
### Artur Żółkowski {-}
<img src="images/zolkowskia.jpg">
BSc student in Data Science at Warsaw University of Technology. Interested in explainable artificial intelligence, computer vision and NLP.
GitHub: [arturzolkowski](https://github.com/arturzolkowski)
LinkedIn: [Artur-Żółkowski](https://www.linkedin.com/in/azolkowski/)
### Filip Kołodziejczyk {-}
<img src="images/filip_kolodziejczyk.jpeg">
MSc student in Data Science at Warsaw University of Technology. Interested primarly in Large Language Models. Currently researching Red Teaming of such models. At the same time, a DevOps professional.
GitHub: [FilipKolodziejczyk](https://github.com/FilipKolodziejczyk)
LinkedIn: [filip-kołodziejczyk-00](https://www.linkedin.com/in/filip-kołodziejczyk-00/)
### Agata Kaczmarek {-}
<img src="images/agata_kaczmarek.jpg">
MSc student in Data Science at Warsaw University of Technology. Interested in explainable artificial intelligence, computer vision and NLP. Currently working on PINEBERRY project for space operations.
LinkedIn: [agata-kaczmarek](https://www.linkedin.com/in/agata-kaczmarek-090aa9182/)
### Łukasz Jaremek {-}
<img src="images/lukasz_jaremek.png">
MSc student in Data Science at Warsaw University of Technology, with a focus on computer vision. Currently researching diffusion models and working as big data cloud developer with AI.
GitHub: [LJaremek](https://github.com/LJaremek)
LinkedIn: [LJaremek](https://www.linkedin.com/in/LJaremek/)
### Dawid Płudowski {-}
<img src="images/dawid_pludowski.png">
MSc student in Data Science at Warsaw University of Technology. Interested in AutoML, explainable artificial intelligence and anomaly detection on time series. Currently working on PINEBERRY project for space operations.
GitHub: [DawidPludowski](https://github.com/DawidPludowski)
LinkedIn: [dawid-płudowski](https://www.linkedin.com/in/dawid-płudowski-2a2303256/)
<!--
### Hanna Zdulska {-}
<img src="images/zdulskah.jpg" ></p>
Software engineer and Data Science BSc student at Warsaw University of Technology. Experienced in web scraping, interested in natural language processing (NLP) and legal status of Artificial Intelligence. Beginner chess players.</p>
GitHub: [HaZdula](https://github.com/hazdula)
LinkedIn: [Zdulskah](https://www.linkedin.com/in/zdulskah/)
### Bartosz Sawicki {-}
<img src="images/sawickib.jpeg" >
Works towards BSc degree in Data Science at Warsaw University of Technology. Interested in data visualization.
GitHub: [SawickiBartosz](https://github.com/SawickiBartosz)
### Szymon Szmajdziński {-}
<img src="images/szymon_photo.png" >
Data Science student at Warsaw University of Technology. Machine learning enthusiast. Interested in automated machine learning and explainable artificial intelligence.
GitHub: [Szmajsz](https://github.com/Szmajasz)
LinkedIn: [szymszmaj](https://www.linkedin.com/in/szymszmaj/)
### Zuzanna Trafas {-}
<img src="images/ztrafas.png" >
A third-year Computer Science student at Poznan University of Technology. Interested in explainable artificial intelligence and computer vision.
GitHub: [Zuzanna-Trafas](https://github.com/Zuzanna-Trafas)
LinkedIn: [zuzanna-trafas](https://www.linkedin.com/in/zuzanna-trafas/)
### Kinga Ułasik {-}
<img src="images/kingau.jpg" >
A Data Science student at the Warsaw University of Technology. Interested in data vizualization, machine learning and programming. Besides studies, an astronomy amateur and a musician.
GitHub: [ARUMHC](https://github.com/ARUMHC)
### Maria Kałuska {-}
<img src="images/mkaluska.jpg" >
Pursuing a Bachelor's degree in Data Science at Warsaw University of Technology. Interested in machine learning and neural networks for computer vision.
GitHub: [kaluskam](https://github.com/kaluskam)
LinkedIn: [Maria-Kałuska](https://www.linkedin.com/in/marysia-ka%C5%82uska-ba16bb208/)
### Alicja Gosiewska {-}
<img src="images/alicja_gosiewska.jpg" >
PhD student in Computer Science at Warsaw University of Technology, holds a Master’s degree in Mathematics. Interested in Machine Learning benchmarks and eXplainable Artificial Intelligence for tabular data.
Google Scholar: [YiwwR6EAAAAJ](https://scholar.google.pl/citations?user=YiwwR6EAAAAJ&hl=pl)
GitHub: [agosiewska](https://github.com/agosiewska)
LinkedIn: [alicja-gosiewska](https://www.linkedin.com/in/alicja-gosiewska/)
### Michał Kuźba {-}
<img src="images/Michal Kuzba.png" >
Data Scientist, holds a Master's degree in Computer Science from University of Warsaw. Interested in NLP, conversational explanations of AI, human aspects of Machine Learning and geographical data.
Google Scholar: [9RU1uwcAAAAJ](https://scholar.google.com/citations?user=9RU1uwcAAAAJ)
GitHub: [kmichael08](https://github.com/kmichael08)
LinkedIn: [michalkuzba](https://www.linkedin.com/in/michalkuzba/)
### Tomasz Mikołajczyk {-}
<img src="images/tomekm.jpg" >
PhD in social sciences, but in recent years has devoted himself to the area of data analysis and visualization. He is interested in the development of the area of explainable artificial intelligence.
GitHub: [tmikolajczyk](https://github.com/tmikolajczyk)
LinkedIn: [tomasz-mikolajczyk-ds](https://www.linkedin.com/in/tomasz-mikolajczyk-ds)
### Mateusz Wójcik {-}
<img src="images/mateusz_wojcik.jpg" >
Machine Learning Engineer, Research Software Engineer, MSc student in Data Science with Bachelor's degree in mathematics at Warsaw University of Technology. Interested in deep learning for computer vision, geospatial data, and medical imaging.
GitHub: [marneusz](https://github.com/marneusz)
LinkedIn: [mateusz-wójcik](https://www.linkedin.com/in/mateusz-w%C3%B3jcik-859a62264/)
-->
</div>
## Open Positions {-}
<img src="images/positions_mi2.png" style="width: 100%;">
We have an open call for [xLungs](https://www.mi2.ai/research-grants.html#x-lungs-2021-2024) project for following positions. If you are interested in any of them please send your CV and Motivation Letter to przemyslaw.biecek at pw.edu.pl. We reserve the right to contact only selected candidates.
### MI2 policy on benefits and obligations {-}
We are seeking highly motivated and talented researchers at different career levels to join MI2.AI research team in the exciting field of explainability and red-teaming of AI models.
There is a common recruitment policy for all positions.
We are looking for
* people interested in research who want to create methods and tools that have a real impact (not yet another paper).
* proactive people with initiative.
* people with proficiency in programming languages commonly used in AI research, at least one out of Python, R or Julia.
* solid understanding of AI/ML models, including their architecture and training processes.
* good communication skills and proficiency in academic writing; excellent problem-solving skills.
We offer:
- the opportunity to learn from experienced and motivated researchers at different career levels as well as the opportunity to work with a rich network of international and interdisciplinary collaborators (for example Harvard Medical School, Vienna University, LMU, NTU, KDD Lab, Bari University and many others).
- an option for a tenure-track position after the completion of the postdoc.
- possibility to present research results at international conferences.
- access to our supercomputers, among them Eden with 32x A100 cards and 1.5TB of storage, a perfect place for training large DNN models.
**Salary**
Salary depend on experience and type of project (some applied projects tend to have higher salaries than typical research projects).
Average rates range from 50-60 PLN/hour (equivalent to 8-9.5k FTE) for a motivated student with confirmed experience, through to 80-85 PLN/hour (equivalent to 12-13k FTE) for an experienced PhD student. The base salary for a post-doc (no obligatory teaching duties) is 120-140k gross per year (this is a base salary, extras depend on activity).
### Research Software Engineer {-}
In addition to research positions, we also offer positions for skilled programmers interested in research.
**Required:**
* Background in Computer Science, Mathematics, Statistics or similar.
* Experience in ML/AI models, the expaerience in Computer Vision or NLP will be a plus
**Scope of work:**
* Developing machine learning models for medical images (CT, MRI) or medical tabular data
* Developing explanations for ML models for medical or tabular data
* Prototyping solutions for end-users
<!--
### Low commitment projects (1/5 FTE) in 2023 {-}
Ex 1: Any object can be embedded with an appropriately trained neural network. But can objects be embedded using tree-based models? This project (an ideal candidate for MSc thesis) is about exploring different embedding construction techniques based on random forest or boosting methods.
Ex 2: Analysis of champion-challenger model pairs on subsets of observations obtained using data segmentation. The project consists of an extension of the EPP method (Elo for predictive models) based on segmented data (e.g. by k-means or by random splits). In addition to the performance analysis, a PD profile comparison analysis is also performed on the splits.
### Mid commitment projects (2-2.5/5 FTE) in 2023 {-}
Ex 1: Development of techniques for explaining segmentation models for 1d (feature-producing models, e.g. survival models), 2d (image-producing models) or 3d data. (CT, hyperspectral images) Experience and knowledge of classical explanatory techniques (SHAP, LRP, CRP) are desirable.
Ex 2: Development of red-teaming techniques for LLaMA 2-type language models. Development of test suites testing the vulnerability of the model to a set of prompting-based attacks.
### Full-time positions for post-docs in 2023 {-}
In addition to the research tasks listed above, responsibilities include mentoring junior staff (students, PhD students) and leading small research groups.
**Additional information about costs of living in Warsaw**
[From FENS](https://fens.org.pl/en/job-offers/):
Warsaw is the capital of Poland, so in principle it is one of the most expensive cities in the country but living in Warsaw is still much cheaper than in the majority of European cities. In general, a single person in Warsaw is able to cover all necessary expenses (flat, media, transport, food) with ca. 5000-5500 PLN per month. A typical cost of renting a 2-room flat (30-40 square meters) varies between 2000-3000 PLN, depending on the part of the city. Electricity and media (TV, Internet) are usually not included in the rent and have to be paid separately. The cost of the lunch in the vicinity of the main campus of WUT is ca. 25-40 PLN, while a monthly ticket for public transport is 110 or 180 PLN depending on the area of validity. Public health insurance is included in the post (this includes also admission to hospitals), however the medicines are paid separately.
I am looking for a post-doc to join the MI2.AI team for one or two years within [HOMER](https://www.mi2.ai/research-grants.html#homer-2020-2025) project.
The ideal fit is someone with (experience in Medical Image Analysis with deep learning models) OR (someone with experience in AutoML for tabular data).
Experience or interest in **XAI** / **fairness** will always be a huge plus in our team.
We have a young and very energetic team focused on growth in AI. Full time position. Salary above academic average. Little or no didactics. Strong focus on doing things that are **meaningful**.
**Required:**
* PhD in Computer Science, Mathematics, Statistics or similar. (Different background? We encourage cross-domain short research visits).
* Experience in Scientific Programming (R and/or Python and/or C++)
* Good track of Scientific Records
**Scope of work:**
* Automated model exploration
* Interpretable measures for model performance
* Meta/transfer learning in automated model development
* Automated model validation
* Experiments with XAI for deep learning
**Offer:**
* Excellent atmosphere for work in a young and very active ML lab
* Conferences and training budget
* Short visits in cooperating abroad group
* Access to CPU / GPU clusters
* Full-time job at Warsaw University of Technology
* plus results-driven extras
* contract for 6 months (short visit) / 12 months or 24 months (long visit)
<!-- ### ARES {-}
PhD position funded by the PRELUDIUM BIS grant ARES (*Attack-Resistant Explanations toward Secure and trustworthy AI*).
Machine learning explainability, fairness, robustness, and security are critical elements of trustworthy Artificial Intelligence, an area of strategic importance. The main goals:
* develop adversarial attacks on state-of-the-art explanations to investigate vulnerabilities and limitations of the existing explainability and fairness approaches in machine learning, and
* introduce novel robust explanations that are stable against manipulation and intuitive to evaluate.
These are targeted at progressing responsible machine learning toward a secure and trustworthy adoption of AI solutions.
**Join us, and change the way how ML models will be explained and evaluated.**
<img src="images/mi2-ares.png" style="width: 100%;"> -->
### How to write a good motivation letter {-}
If you would like to join our team, it is very important to prepare a good motivation letter. I get dozens of resumes a month and if they look like an automated letter generated with LLM sent to generic recipent I usually don't even write back to them.
We don't do mass recruitment, we recruit 3-4 new people per year and they often work for us for a few years. If you want to work with us then prepare a good cover letter, and especially remember to:
- write clearly what you are applying for. Whether it's a diploma thesis, summer internship, work on a project, which project. Be specific, because if you don't know what you want to do with us, no one will figure it out for you.
- we value in the team people who are able to solve difficult problems. Don't write that you have done 40 projects, but describe the most difficult one you have completed.
- if you have already worked somewhere, write what you did there and what you learned, not just the name of the company or position.
- before you send a letter review the list of our projects, the list of published articles, maybe talk to people who already work in our team and in your letter write in your own words why you want to work with us and at what
## Seminars {-}
<div class="two-column-entry">
<div class="two-column-entry-image">
<img src="images/seminar.png">
</div>
<div class="two-column-entry-text">
We meet every Monday, at 10 am online or in MI2DataLab (room 044, Faculty of Mathematics and Information Science, Warsaw University of Technology).
Join us at http://meet.drwhy.ai/
List of topics and materials from past seminars: https://github.com/MI2DataLab/MI2DataLab_Seminarium
</div>
</div>
## Papers {-}
<script>
document.body.classList.add("two-columns")
document.querySelector(".page-inner section > *:first-child").classList.add("two-columns-layout")
</script>
<div>
<img src="images/paper_agg2exp.png">
<a href="https://doi.org/10.48550/arXiv.2407.16653">Aggregated Attributions for Explanatory Analysis of 3D Segmentation Models</a>
<p>Maciej Chrabaszcz<sup>=</sup>, Hubert Baniecki<sup>=</sup>, Piotr Komorowski, Szymon Płotka, Przemysław Biecek</p>
<p><strong>WACV (2025)</strong></p>
We introduce Agg^2Exp, a methodology for aggregating fine-grained voxel attributions of the segmentation model's predictions. Unlike classical explanation methods that primarily focus on the local feature attribution, Agg^2Exp enables a more comprehensive global view on the importance of predicted segments in 3D images. As a concrete use-case, we apply Agg^2Exp to discover knowledge acquired by the Swin UNEt TRansformer model trained on the TotalSegmentator v2 dataset for segmenting anatomical structures in computed tomography medical images.
</div>
<div>
<img src="images/tlos2.jpg">
<a href="https://doi.org/10.1016/j.artmed.2024.103026">Interpretable machine learning for time-to-event prediction in medicine and healthcare</a>
<p>Hubert Baniecki, Bartlomiej Sobieski, Patryk Szatkowski, Przemyslaw Bombinski, Przemyslaw Biecek</p>
<p><strong>Artificial Intelligence in Medicine (2025)</strong></p>
We formally introduce time-dependent feature effects and global feature importance explanations. We show how post-hoc interpretation methods allow for finding biases in AI systems predicting length of stay using a novel multi-modal dataset created from 1235 X-ray images with textual radiology reports annotated by human experts. Moreover, we evaluate cancer survival models beyond predictive performance to include the importance of multi-omics feature groups based on a large-scale benchmark comprising 11 datasets from The Cancer Genome Atlas (TCGA).
</div>
<div>
<img src="images/paper_ramai.png">
<a href="https://doi.org/10.48550/arXiv.2404.14230">Resistance Against Manipulative AI: key factors and possible actions</a>
<p>Piotr Wilczyński, Wiktoria Mieleszczenko-Kowszewicz, Przemysław Biecek</p>
<p><strong>ECAI (2024)</strong></p>
We describe the results of two experiments designed to determine what characteristics of humans are associated with their susceptibility to LLM manipulation, and what characteristics of LLMs are associated with their manipulativeness potential. We explore human factors by conducting user studies in which participants answer general knowledge questions using LLM-generated hints, whereas LLM factors by provoking language models to create manipulative statements. In the long term, we put AI literacy at the forefront, arguing that educating society would minimize the risk of manipulation and its consequences.
</div>
<div>
<img src="images/paper_swinsmt.png">
<a href="https://arxiv.org/abs/2407.07514">Swin SMT: Global Sequential Modeling in 3D Medical Image Segmentation</a>
<p>Szymon Płotka, Maciej Chrabaszcz, Przemyslaw Biecek</p>
<p><strong>MICCAI (2024)</strong></p>
We introduce Swin Soft Mixture Transformer (Swin SMT), a novel architecture based on Swin UNETR, which incorporates a Soft Mixture-of-Experts (Soft MoE) to effectively handle complex and diverse long-range dependencies. The use of Soft MoE allows for scaling up model parameters maintaining a balance between computational complexity and segmentation performance in both training and inference modes. Comprehensive experimental results demonstrate that Swin SMT outperforms several state-of-the-art methods in 3D anatomical structure segmentation.
</div>
<div>
<img src="images/paper_gcd.png">
<a href="https://doi.org/10.48550/arXiv.2404.12488">Global Counterfactual Directions</a>
<p>Bartlomiej Sobieski, Przemysław Biecek</p>
<p><strong>ECCV (2024)</strong></p>
We discover that the latent space of Diffusion Autoencoders encodes the inference process of a given classifier in the form of global directions. We propose a novel proxy-based approach that discovers two types of these directions with the use of only single image in an entirely black-box manner. Precisely, g-directions allow for flipping the decision of a given classifier on an entire dataset of images, while h-directions further increase the diversity of explanations.
</div>
<div>
<img src="images/robustfe.png">
<a href="https://doi.org/10.48550/arXiv.2406.09069">On the Robustness of Global Feature Effect Explanations</a>
<p>Hubert Baniecki, Giuseppe Casalicchio, Bernd Bischl, Przemyslaw Biecek</p>
<p><strong>ECML PKDD (2024)</strong></p>
We introduce several theoretical bounds for evaluating the robustness of partial dependence plots and accumulated local effects. Our experimental results with synthetic and real-world datasets quantify the gap between the best and worst-case scenarios of (mis)interpreting machine learning predictions globally.
</div>
<div>
<img src="images/paper_position_context.png">
<a href="https://doi.org/10.48550/arXiv.2404.18316">Position: Do Not Explain Vision Models Without Context</a>
<p>Paulina Tomaszewska, Przemysław Biecek</p>
<p><strong>ICML (2024)</strong></p>
In this paper, we review the most popular methods of explaining computer vision models by pointing out that they do not take into account context information, propose new research directions that may lead to better use of context information in explaining computer vision models, and argue that a change in approach to explanations is needed from 'where' to 'how'.
</div>
<div>
<img src="images/paper_position_question.png">
<a href="https://doi.org/10.48550/arXiv.2402.13914">Position: Explain to Question not to Justify</a>
<p>Przemysław Biecek, Wojciech Samek</p>
<p><strong>ICML (2024)</strong></p>
Explainable Artificial Intelligence (XAI) is a young but very promising field of research. Unfortunately, the progress in this field is currently slowed down by divergent and incompatible goals. In this paper, we separate various threads tangled within the area of XAI into two complementary cultures of human/value-oriented explanations (BLUE XAI) and model/validation-oriented explanations (RED XAI).
</div>
<div>
<img src="images/paper_srfamap.png">
<a href="https://doi.org/10.1007/978-3-031-63803-9_1">SRFAMap: A Method for Mapping Integrated Gradients of a CNN Trained with Statistical Radiomic Features to Medical Image Saliency Maps</a>
<p>Oleksandr Davydko, Vladimir Pavlov, Przemysław Biecek, Luca Longo</p>
<p><strong>XAI (2024)</strong></p>
A novel method (SRFAMap) is introduced to map the statistical radiomic feature attributions derived by applying the Integrated Gradients methods, often used in explainable AI, to image saliency maps. In detail, integrated gradients are used to compute radiomic feature attributions of chest X-ray scans for a ResNet-50 convolutional network model trained to distinguish healthy lungs from tuberculosis lesions. These are subsequently mapped to saliency maps over the original scans to facilitate their interpretation for diagnostics.
</div>
<div>
<img src="images/paper_explanation_ensembling.png">
<a href="https://doi.org/10.1007/978-3-031-63797-1_18">CNN-Based Explanation Ensembling for Dataset, Representation and Explanations Evaluation</a>