-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbigbrainworkshop-2025.html
More file actions
1018 lines (931 loc) · 60.9 KB
/
bigbrainworkshop-2025.html
File metadata and controls
1018 lines (931 loc) · 60.9 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
<!doctype html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZSP3HV4M1C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZSP3HV4M1C');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145481065-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-145481065-1');
</script>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="author" content="Derek Lo @ 3design-dlo.com">
<!-- general -->
<link rel="stylesheet" type="text/css" href="slick/slick.css">
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="stylesheet" type="text/css" href="css/nav-styles.css" />
<link rel="stylesheet" type="text/css" href="fonts/fonts.css" />
<link href="css/lightbox.css" rel="stylesheet" />
<meta charset="utf-8">
<title>the BigBrain</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="This is the website of the BigBrain Project.">
<meta name="keywords" content="Neuro, Brain, Research, Big Data, Science, Medicine">
<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/drop-down.js"></script>
<script src="js/jquery.matchHeight.js" type="text/javascript"></script>
<script src="slick/slick.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<div id="main-wrapper">
<div class="social-media">
<a href="https://www.youtube.com/@bigbrainproject" class="tooltip">
<i class="fab fa-youtube"></i>
<span class="tooltiptext">Youtube</span>
</a>
<a href="https://twitter.com/BigBrainProject" class="tooltip">
<i class="fab fa-x-twitter"></i>
<span class="tooltiptext">X</span>
</a>
<a href="https://www.linkedin.com/company/bigbrainproject?trk=public_post_feed-actor-name" class="tooltip">
<i class="fa-brands fa-linkedin-in"></i>
<span class="tooltiptext">linkedin</span>
</a>
<a href="mailto:info@bigbrainproject.org" class="tooltip">
<i class="fas fa-envelope-square"></i>
<span class="tooltiptext">Email</span>
</a>
<a href="#main-wrapper" class="tooltip">
<i class="fas fa-arrow-up"></i>
<span class="tooltiptext">Top</span>
</a>
</div>
<!-- navigation -->
<nav class="site-nav">
<div class="brand-border-1"></div>
<div class="brand-border-2"></div>
<div class="brand-border-3"></div>
<div class="nav-container">
<div class="branding"><a href="index.html">BigBrain Project</a></div>
<div id="showmenu">Menu</div>
<ul id="menu" class="nav-list hide">
<li class="nav-item"><a href="#!"><strong>HIBALL</strong></a>
<ul class="nav-dropdown">
<li><a href="hiball.html">About Hiball</a></li>
<li><a href="board.html">Board</a></li>
<li><a href="partners.html">Partners</a></li>
<li><a href="publications.html">Publications</a></li>
</ul>
</li>
<li class="nav-item"><a href="#!">About</a>
<ul class="nav-dropdown">
<li><a href="about.html">About Us</a></li>
<li><a href="about.html#FAQ">FAQ</a></li>
<li><a href="press.html">Press</a></li>
<li><a href="references.html">References</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</li>
<li class="nav-item"><a href="maps-and-models.html">Maps & Models</a></li>
<li class="nav-item"><a href="tools-and-services.html">Tools & Services</a></li>
<li class="nav-item"><a href="#!">Community</a>
<ul class="nav-dropdown">
<li><a href="community.html">Our Community</a></li>
<li><a href="news.html">News & Events</a></li>
<li><a href="featured.html">Featured</a></li>
<li><a href="https://forum.bigbrainproject.org/">Forum</a></li>
<li><a href="careers.html">Careers</a></li>
</ul>
</li>
</ul>
</div>
<div class="clear-all"></div>
</nav>
<!-- contact section -->
<section class="hero bbworkshop2025-bg ">
<div class="grid-container">
<div class="hero-content-grid">
<div class="hero-content-container">
<!-- <a class="hero-logos-link-2" href="hiball.html">
<img src="images/logo-hiball.png">
</a> -->
<h1 class="full-width text-center big">9th BigBrain Workshop </h1>
<h2 class="full-width text-center big">HIBALL Closing Symposium</h2>
<p class="center">From October 27th to 29th, 2025, we held our 9th annual BigBrain Workshop in Berlin, Germany. </p>
<p class="center"><em>Scroll down to watch the recordings of the event.</a></em></p>
<div class="hero-logos">
<div class="flex-center">
<a class="hero-logos-link" href="https://www.fz-juelich.de/">
<img src="images/logo-julich.png">
</a>
<a class="hero-logos-link" href="https://mcgill.ca/">
<img src="images/logo-mcgill.png">
</a>
<a class="hero-logos-link" href="https://www.helmholtz.de/en/ ">
<img src="images/logo-helmholtz.png">
</a>
<a class="hero-logos-link" href="https://www.mcgill.ca/hbhl/">
<img src="images/logo-hbhl.png">
</a>
<!-- <a class="hero-logos-link" href="hiball.html">
<img src="images/logo-hiball.png">
</a>
<a class="" href="https://www.humanbrainproject.eu">
<img src="images/bbworkshop2022/hbp.png">
</a>
<a class="hero-logos-link" href="https://english.hi.is/university_of_iceland">
<img src="images/bbworkshop2023/logo-iceland.png">
</a> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- featured section -->
<section>
<div class="section-content max100 lt-grey-bg">
<h1 class="full-width text-center small-spacer">Featured</h1>
<div id="slick-slider" class="slider">
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2025/zhou.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>BigBrain Project Educational Lecture</h1>
<h2>Helen Zhou</h2>
<a href="#zhou"><h3>Integrating Brain Imaging and AI: Applications in Neurological Disorders</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2025/uludag.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>Sievers Lecture in Computational Neuroscience</h1>
<h2>Kâmil Uludağ</h2>
<a href="#uludag"><h3>From Group Averages to Precision Neuroimaging: Brain Function and Anatomy at the Individual Level</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2025/horn.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>HIBALL Lecture in Brain Analytics and Learning</h1>
<h2>Andreas Horn</h2>
<a href="#horn"><h3>Causal Mapping: From Connectomic Deep Brain Stimulation Toward the 'Human Dysfunctome'</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2025/ritter.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>LOC Session: The Berlin Institute of Health, Charité Berlin</h1>
<h2>Petra Ritter</h2>
<a href="#ritter"><h3>Introduction: Digital Brain Twins</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2025/schirner.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>LOC Session: The Berlin Institute of Health, Charité Berlin</h1>
<h2>Michael Schirner</h2>
<a href="#schirner"><h3>From Brain Network Models to Trusted Digital Twins: Towards Secure Neuroscience Infrastructures for Biologically-Inspired Intelligence and Medical Research
</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2025/stefanovski.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>LOC Session: The Berlin Institute of Health, Charité Berlin</h1>
<h2>Leon Stefanovski</h2>
<a href="#stefanovski"><h3>The Virtual Brain as a Translational Platform: Modeling Diseases from the Molecular Level to Network Dynamics</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2025/boerner.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>LOC Session: The Berlin Institute of Health, Charité Berlin</h1>
<h2>Katy Börner</h2>
<a href="#boerner"><h3>Human Reference Atlas Construction and Usage</h3></a>
</div>
</div>
</div>
</div>
<a href="bigbrainworkshop-2025-gallery.html" class="tool-link big-font">Go to the gallery page. <i class="fas fa-arrow-right"></i></a><br>
<div class="clear-all"></div>
<br><br>
<a href="#videos" class="tool-link big-font">Go to videos. <i class="fas fa-arrow-down"></i></a><br>
<div class="clear-all"></div><br><br>
<a href="https://www.youtube.com/watch?v=U4K5tLSFIgY&list=PLGWf8gkjzAzj8SHVvU8cKCoCL77DYY_tq" class="tool-link big-font">Go to Youtube playlist. <i class="fas fa-arrow-right"></i></a><br>
<div class="clear-all"></div>
</div>
</section>
<section>
<div class="section-content font-big ">
<h2 class="full-width text-center">9th BigBrain Workshop: Celebrating 5 Years of Successful HIBALL Collaboration</h2>
<div class="clear-all"></div>
<div class="col-2 internal-padding">
<p>
<strong>Berlin, Germany</strong> — The 9th BigBrain Workshop (27–29 October 2025) in Berlin brought together the HIBALL and BigBrain communities to explore the frontiers of ultra-high-resolution, multimodal brain data, modelling, and mapping; to celebrate the successful completion and remarkable achievements of the HIBALL initiative; and to discuss how to maintain momentum and further strengthen the collaboration between European and Canadian neuroscience.
</p>
<p>
The discussions in Berlin made clear that there is a strong commitment to expanding these scientific connections grown over the years of collaboration in HIBALL. During the project, researchers not only advanced research on data and tools around the BigBrain but also forged digital bridges between research infrastructures — linking Europe’s EBRAINS platform with Canadian initiatives such as HBHL (Healthy Brains, Healthy Lives) and CBRAIN.
</p>
<p>
Otmar Wiestler, President of Germany’s Helmholtz Association between 2015 and 2025, named HIBALL a prototypical model of successful EU–Canadian collaboration and compellingly argued for the strengthening of such links across the Atlantic in a speech “The World in Motion: Why Transatlantic Scientific Cooperation Matters”.
</p>
<p>
At its core, the meeting featured a packed programme of scientific presentations and discussions by the research community around the BigBrain model, an ultrahigh-resolution model of the entire human brain that is a part of the EBRAINS multi-level human brain atlas (<a href="https://atlases.ebrains.eu/viewer/#/a:juelich:iav:atlas:v1.0.0:1/t:minds:core:referencespace:v1.0.0:a1655b99-82f1-420f-a3c2-fe80fd4c8588/p:minds:core:parcellationatlas:v1.0.0:94c1125b-b87e-45e4-901c-00daee7f2579-bb/@:0.0.0.-W000.._eCwg.2-FUe3._-s_W.2_evlu..7LIy..9teY~.GW6K.b1lI..1LSm/vs:v2-ff011b0b" target="_blank">siibra explorer</a>). With over 100 scientists onsite and 50 online, the topics ranged from fine-scale mappings of neuroanatomical structures in never-before-seen detail, to new mapping tools from neuroinformatics and AI, like <a href="https://hippomaps.readthedocs.io/en/latest/" target="_blank">HippoMaps</a>, <a href="https://docs.celldetection.org/en/latest/" target="_blank">CellDetection</a>, and <a href="https://arxiv.org/abs/2511.01870" target="_blank">CytoNet</a>.
</p>
</div>
<div class="col-2 internal-padding">
<p>
Highlights also included the Sievers lecture given by Kâmil Uludağ from the University of Toronto, who showed how computational modelling can improve the precision of neuroimaging; and a keynote on medical applications given by Andreas Horn from the University Hospital of Cologne and Mass Brigham General in Boston. He showed how much millimetres matter when it comes to helping Parkinson’s patients using electrical stimulation of target structures in the brain, so-called Deep Brain Stimulation. Pioneers in the field like him look to brain atlases that offer neuroanatomy of the highest possible resolution.
</p>
<p>
As always, the event also looked beyond. Helen Zhou from the National University of Singapore gave the Educational lecture of the HBHL training day, which preceded the workshop. Richa Verma from Indian Institute of Technology in Madras presented the DHARANI project, which creates a three-dimensional histological cell atlas of the developing human brain. Katy Börner, Indiana University USA and Visiting Fellow, Stiftung Charité Berlin, showed the <a href="https://hubmapconsortium.org/" target="_blank">HuBMAP</a> Human Reference Atlas (HRA) for the healthy human body. All in all, the program featured speakers from 14 countries, reflecting the growing global network of collaborative brain research around shared digital resources and methods.
</p>
<p>
“The EU and Canada have ideal conditions for increased cooperation. Now is the time to deepen our ties even more”, said Katrin Amunts. “I look forward to working with all of you on this!” HIBALL co-leader Alan Evans added that "In this era of expanding global scientific cooperation and AI technology, HIBALL is ideally placed to promote the wider participation of the Global South in advanced brain research, the so-called 'democratisation' of neuroscience, so that issues of direct relevance to these regions can be addressed."
</p>
<p>
Both thanked all participants and this year's local host, the <a href="https://www.bihealth.org/" target="_blank">Berlin Institute of Health</a>. The Berlin meeting will be followed up in autumn 2026 with the 10th BigBrain Workshop in Montreal.
</p>
</div>
</div>
</section>
<!-- videos -->
<section class="med-grey-bg">
<div class="section-content">
<a href="" class="anchor" id="videos"></a>
<h1 class="full-width text-center"><a href="https://events.hifis.net/event/2171/">9th BigBrain Workshop</a></h1><br><br>
<h2 class="full-width text-center">Keynote Talks</h2><br><br>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="zhou"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/U4K5tLSFIgY?si=p3tJoUPkjTArpHc_" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h2>BigBrain Project Educational Lecture (HBHL Training Day)</h2>
<h3><a href="https://youtu.be/U4K5tLSFIgY?si=AWb0AGgKPk-53OXV">Integrating Brain Imaging and AI: Applications in Neurological Disorders</a></h3>
<p><strong>Juan Helen Zhou</strong><br>
Centre for Translational MR Research, National University of Singapore<br>
<!-- More information: <a href="https://events.hifis.net/event/1416/page/303-bigbrain-project-educational-lecture">https://events.hifis.net/event/1416/page/303-bigbrain-project-educational-lecture</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="uludag"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/ax9hF7nd5d8?si=za9XHISg_GufiuZJ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h2>Sievers Lecture in Computational Neuroscience</h2>
<h3><a href="https://youtu.be/ax9hF7nd5d8?si=tUoSwXQK0RbrqWsX">From Group Averages to Precision Neuroimaging: Brain Function and Anatomy at the Individual Level</a></h3>
<p><strong>Kâmil Uludağ</strong><br>
Sunnybrook Research Institute, University of Toronto, Canada<br>
<!-- More information: <a href="https://events.hifis.net/event/1416/page/302-hiball-lecture-in-brain-analytics-and-learning">https://events.hifis.net/event/1416/page/302-hiball-lecture-in-brain-analytics-and-learning</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="horn"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/fr2-t4X1VjY?si=zQl3mAbzIu4VTZsC" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h2>HIBALL Lecture in Brain Analytics and Learning</h2>
<h3><a href="https://youtu.be/fr2-t4X1VjY?si=hEPdkfAQUdMulML7">Causal Mapping: From Connectomic Deep Brain Stimulation Toward the 'Human Dysfunctome'</a></h3>
<p><strong>Andreas Horn</strong><br>
Network Stimulation Laboratory at Mass General Brigham Boston & UK Köln, Cologne, Germany<br>
<!-- More information: <a href="https://events.hifis.net/event/1416/page/304-sievers-lecture-in-computational-neuroscience">https://events.hifis.net/event/1416/page/304-sievers-lecture-in-computational-neuroscience</a> -->
</p>
</div>
</div>
<br><br><h2 class="full-width text-center">HIBALL Closing Symposium Talks</h2>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/URI5uoUBnLM?si=zZBOptokbSIaE1pm" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/URI5uoUBnLM?si=Ad51YrrnIPRMhVCu">HIBALL: Intro</a></h3>
<p><strong>Katrin Amunts and Alan Evans</strong><br>
5 Years HIBALL, Where Are We Now<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11811/">https://events.hifis.net/event/1416/contributions/11811/</a>
</p> -->
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/1EpuW--dS04?si=iNqW6TchuOLTbW0B" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/1EpuW--dS04?si=iNqW6TchuOLTbW0B">HIBALL: Future</a></h3>
<p><strong>Katrin Amunts and Alan Evans</strong><br>
5 Years HIBALL, Where Are We Going<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11811/">https://events.hifis.net/event/1416/contributions/11811/</a>
</p> -->
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/oKuuIDqA4Pk?si=83B8MvTMF9aEm5HE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/oKuuIDqA4Pk?si=83B8MvTMF9aEm5HE">The World in Motion: Why Transatlantic Scientific Cooperation Matters</a></h3>
<p><strong>Otmar D. Wiestler,</strong><br>
The World in Motion: Why Transatlantic Scientific Cooperation Matters<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11811/">https://events.hifis.net/event/1416/contributions/11811/</a>
</p> -->
</div>
</div>
<br><br><h2 class="full-width text-center">LOC Session: The Berlin Institute of Health, Charité Berlin</h2>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="ritter"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/iXmScSNBWxs?si=v43bmdZ1t1fuk0SJ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/iXmScSNBWxs?si=v43bmdZ1t1fuk0SJ">Introduction: Digital Brain Twins</a></h3>
<p><strong>Petra Ritter</strong><br>
<!-- Department of Neuroscience, University of Padova, Italy<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center">https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="schirner"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/0fGbkZlGuhY?si=w_Z9qqN0nuDVtKRQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/0fGbkZlGuhY?si=fceE4gl67x8e4HA1">From Brain Network Models to Trusted Digital Twins: Towards Secure Neuroscience Infrastructures for Biologically-Inspired Intelligence and Medical Research</a></h3>
<p><strong>Michael Schirner</strong><br>
<!-- Department of Neuroscience, University of Padova, Italy<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center">https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="stefanovski"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/IkmSmv21uIw?si=ST-qlbPuCeURkTne" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/IkmSmv21uIw?si=o60Xx5_EL0d38oSN">The Virtual Brain as a Translation Platform: Modeling Diseases from The Molecular Level to Network Dynamics</a></h3>
<p><strong>Leon Stefanovski</strong><br>
<!-- Department of Neuroscience, University of Padova, Italy<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center">https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="boerner"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/NfbcMvRXFqM?si=p-wSWpZMYOhLgW7N" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/NfbcMvRXFqM?si=p-wSWpZMYOhLgW7N">Human Reference Atlas Construction and Usage</a></h3>
<p><strong>Katy Börner</strong><br>
Indiana University and Visiting Fellow, Stiftung Charité)<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center">https://events.hifis.net/event/1416/page/300-local-session-the-padova-neuroscience-center</a>
</p> -->
</div>
</div>
<br><br><h2 class="full-width text-center">Invited Talks</h2>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/AATrmWl7COc?si=DzOt9XylRuB0_L2E" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/AATrmWl7COc?si=DzOt9XylRuB0_L2E">Mapping Molecular Patterns in the Brain</a></h3>
<p>Hannah Spitzer<br>
LMU Munich, Germany<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods">https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/KXF3jNTm9Hc?si=hQ4Qc947x_TxQ721" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/KXF3jNTm9Hc?si=hQ4Qc947x_TxQ721">Integrating and Interpreting Brain Maps</a></h3>
<p>Bratislav Misic<br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods">https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/d65UG7Lk1wc?si=2EwRD672DthEezDr" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/d65UG7Lk1wc?si=2EwRD672DthEezDr">Multimodal Characterization of the Developing Human Brain</a></h3>
<p>Richa Verma<br>
Sudha Gopalakrishnan Brain Centre (SGBC), Indian Institute of Technology Madras<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods">https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/IsbpBxoEeI0?si=SbW9p8hQpVoSCzfb" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/IsbpBxoEeI0?si=SbW9p8hQpVoSCzfb">Combining Computational Models, Big Data and Genetics to Obtain Insights Into Disease Mechanisms</a></h3>
<p>Alain Dagher<br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods">https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/pw2jCiSQ3qU?si=pmBTrDDawD-MgJhW" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/pw2jCiSQ3qU?si=pmBTrDDawD-MgJhW">Towards Precision Neuroscience of Healthy and Diseased Human Brains</a></h3>
<p>Boris Bernhardt <br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods">https://events.hifis.net/event/1416/page/312-indirect-network-disconnection-methods</a> -->
</p>
</div>
</div>
<br><br><h2 class="full-width text-center">Contributed Talks</h2>
<h3 class="full-width text-center">Session 1: Multiscale Data Integration & AI-based Processing</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/4afgezn3TgE?si=gCmdIWK_KcnnSjBl" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/4afgezn3TgE?si=gCmdIWK_KcnnSjBl">Crossing the Styx: From In Vivo MRI to Post Mortem Histology in Human Brain Atlasing</a></h3>
<p><strong>Anneke Alkemade</strong><br>
University of Amsterdam, Netherland<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11267/">https://events.hifis.net/event/1416/contributions/11267/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/BD1lMQS25Bk?si=Ydw5TZgIFA_CL5EZ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/BD1lMQS25Bk?si=Ydw5TZgIFA_CL5EZ">Closing the Gaps: A Multi-Branch Diffusion Model for a Gapless 1-μm BigBrain</a></h3>
<p><strong>Jan-Oliver Kropp</strong><br>
Forschungszentrum Jülich, Germany<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11267/">https://events.hifis.net/event/1416/contributions/11267/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/i5sQmHVnzmo?si=arcnVmC8LhsOGj64" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/i5sQmHVnzmo?si=arcnVmC8LhsOGj64">p-HCP, Prenatal Human Connectome Patterns: Multimodal Imaging of Human Fetal Brain Development at the Mesoscopic Scale Using 11.7 Tex Vivo MRI</a></h3>
<p><strong>Yann Leprince</strong><br>
NeuroSpin, CEA, Paris, France<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11267/">https://events.hifis.net/event/1416/contributions/11267/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/ScnB2pT_3cY?si=5uJSdr4mKmQKDZcP" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/ScnB2pT_3cY?si=5uJSdr4mKmQKDZcP">CytoNet: A Foundation Model for the Human Cerebral Cortex - Applications in BigBrain and Beyond</a></h3>
<p><strong>Christian Schiffer</strong><br>
Forschungszentrum Jülich, Germany<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11267/">https://events.hifis.net/event/1416/contributions/11267/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/btKJCtjn08c?si=JxnsTHwqt9hAreja" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/btKJCtjn08c?si=JxnsTHwqt9hAreja">tiamat: Tiled Image Access and Manipulation Toolkit for Visualization and Analysis of Large Scientific Image Datasets</a></h3>
<p><strong>Alexander Oberstrass</strong><br>
Forschungszentrum Jülich, Germany<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11267/">https://events.hifis.net/event/1416/contributions/11267/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/oD2-J2NyEzw?si=e9BN_bKbQ81_P__6" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/oD2-J2NyEzw?si=AxwhDCPekhTzPKUl">A Transatlantic Infrastructure to Share and Process BigBrain Datasets</a></h3>
<p><strong>Bryan Caron</strong><br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11267/">https://events.hifis.net/event/1416/contributions/11267/</a> -->
</p>
</div>
</div>
<br><br><h3 class="full-width text-center">Session 2: Mapping & Atlases</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/zCUtyEeX8XY?si=-AyauKDlUfgWHFiW" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/zCUtyEeX8XY?si=-AyauKDlUfgWHFiWD">Bridging Scales to Map the Human Claustrum: BigBrain, Julich, and 7-Tesla MRI</a></h3>
<p><strong>Navona Calarco</strong><br>
University of Toronto, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11280/">https://events.hifis.net/event/1416/contributions/11280/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/BgcpP3c06Ys?si=hR4esrdNEBKKQsLt" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/BgcpP3c06Ys?si=hR4esrdNEBKKQsLt">Intracortical Microstructure Profiling: a Versatile Method for Indexing Cortical Lamination</a></h3>
<p><strong>Casey Paquola</strong><br>
Forschungszentrum Jülich, Germany<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11280/">https://events.hifis.net/event/1416/contributions/11280/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/kDrwsBlJPKw?si=w_UvFDnTlPEuF1DG" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/kDrwsBlJPKw?si=w_UvFDnTlPEuF1DG">Automated Whole-Brain Volumetric Parcellation and Cortical Surface Extraction of BigBrain2 Using nnU-Net + FreeSurfer v8.1</a></h3>
<p><strong>Lindsay B Lewis</strong><br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11280/">https://events.hifis.net/event/1416/contributions/11280/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/a-3Y3qkOECs?si=tS5mFBLveiK8Jtpj" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/a-3Y3qkOECs?si=tS5mFBLveiK8Jtpj">HippUnfold v2: Improved Robustness, Detail, and Minimized Distortion</a></h3>
<p><strong>Jordan DeKraker</strong><br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11280/">https://events.hifis.net/event/1416/contributions/11280/</a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/fPxO4BIXqOk?si=5coAgZ9WxzQdAHNu" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/fPxO4BIXqOk?si=5coAgZ9WxzQdAHNu">Decontextualizing Neuroscience: Opportunities and Pitfalls of Brain Map Correlations</a></h3>
<p><strong>Jessica Royer</strong><br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11280/">https://events.hifis.net/event/1416/contributions/11280/</a> -->
</p>
</div>
</div>
<br><br><h3 class="full-width text-center">Session 3: Applications & Clinical Translation</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/WJ0W7aXfofY?si=3LLF489UiSTEV3Zt" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/WJ0W7aXfofY?si=3LLF489UiSTEV3Zt">Axonal-Based Distributed-Delay Neural Maxx Model: Formulation and Application</a></h3>
<p><strong>Anisleidy Gonzalez-Mitjans</strong><br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/bJ-DjWb4iZ0?si=HGuyJ6QcP461sWcr" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/bJ-DjWb4iZ0?si=HGuyJ6QcP461sWcr">Using an Ordinary Differential Equation Model to Separate Rest and Task Signals in fMRI</a></h3>
<p><strong>Amrit Kashyap</strong><br>
Charité-Universitätsmedizin Berlin, Germany<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/DBdzbIAJBw4?si=FxBpYOS3fGbKm0BY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/DBdzbIAJBw4?si=FxBpYOS3fGbKm0BY">High-Resolution Postmortem Image Analysis of the Human Brain to Characterize Alzheimer’s Disease and Related Dementias</a></h3>
<p><strong>Pulkit Khandelwal</strong><br>
University of Pennsylvania, PA, USA<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/_13eMlkabuk?si=95-jRaVcK0L4KjfK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/_13eMlkabuk?si=95-jRaVcK0L4KjfK">Multimodal Registration of High-Resolution Histology and Ultra-High Field MRI Using BigBrain2 Pipeline in the Rat Brain</a></h3>
<p><strong>Mastaneh Torkamani-Azar</strong><br>
University of Eastern Finland, Kuopio, Finland<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/OUmMAf35Y2o?si=-tVMXiMeJV3bnX1k" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/OUmMAf35Y2o?si=-tVMXiMeJV3bnX1k">Brain Inference, Movie-Watching Paradigm & Mental Health</a></h3>
<p><strong>Tamires Marcal</strong><br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<br><br><h3 class="full-width text-center">Session 4: Multimodal Modelling & Brain-inspired AI</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/GCV5KHSr4qE?si=2bOTnW1DZZcgpfuy" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/GCV5KHSr4qE?si=2bOTnW1DZZcgpfuy">Generative Modelling of Electrophysiology Using Neurobiological Informed Priors</a></h3>
<p><strong>Ulrich Stoof</strong><br>
University College London, UK<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/eJEe0wbtvA4?si=s9ciK-aBJZi1Mf1S" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/eJEe0wbtvA4?si=s9ciK-aBJZi1Mf1S">Glucose Metabolism Echoes Long-Range Temporal Correlations in the Human Brain</a></h3>
<p><strong>Massimiliano Facca</strong><br>
University of Padova, Italy<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/NCI_gLNdSos?si=MeHEKprbZwpPeJsD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/NCI_gLNdSos?si=MeHEKprbZwpPeJsD">Phenotyping Whole-Brain Dynamics with Modality-Agnostic Energy Landscapes and Cohort Embeddings</a></h3>
<p><strong>Julian Kędys</strong><br>
Poznan Supercomputing and Networking Center, Poland<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/mZc8axT7djM?si=1FVvqZEaM5YC3ukc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/mZc8axT7djM?si=1FVvqZEaM5YC3ukc">Scalable Framework for Region-Specific Brain Network Models: Integrating Multimodal Data for Deep Brain Activity Simulation</a></h3>
<p><strong>Alejandro Salinas Medina</strong><br>
McGill University, Montréal, Canada<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<br><br><h3 class="full-width text-center">HBHL Training Day Hands-on Sessions</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/HSZKObDGhU8?si=QNQHBhne5g7yGgVt" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/HSZKObDGhU8?si=QNQHBhne5g7yGgVt">BigBrain Data Processing with CBRAIN</a></h3>
<p><strong>Bryan Caron</strong><br>
NeuroHub, McGill University<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/3JNCqcTd1Iw?si=9BCyfoY9QNDMzK89" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/3JNCqcTd1Iw?si=9BCyfoY9QNDMzK89">Working with Quantitative Cortical Cell Densities Using Siibra</a></h3>
<p><strong>Timo Dickscheid & Sebastian Bludau</strong><br>
Forschungszentrum Jülich<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/96yXFl1MEHw?si=_gMCP0873LOwf6vv" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/96yXFl1MEHw?si=_gMCP0873LOwf6vv">Introduction to DataLad</a></h3>
<p><strong>Adina Wagner & Michael Hanke</strong><br>
Forschungszentrum Jülich<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/YDPLafS5kso?si=i_HzTIwtOWwMLSdV" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://youtu.be/YDPLafS5kso?si=i_HzTIwtOWwMLSdV">Mapping Cortical Microstructure from In Vivo MRI Using FreeSurfer</a></h3>
<p><strong>Oula Puonti</strong><br>
Danish Research Centre for Magnetic Resonance<br>
<!-- Abstract: <a href="https://events.hifis.net/event/1416/contributions/11264/ ">https://events.hifis.net/event/1416/contributions/11264/ </a> -->
</p>
</div>
</div>
</div>
</section>
<section>
<div class="section-content font-big end">
<h2 class="full-width text-center">9th BigBrain Workshop</h2>
<div class="clear-all"></div>
<div class="hero-logos">
<div class="flex-center">
<a class="hero-logos-link" href="https://www.fz-juelich.de/">
<img src="images/logo-julich.png">
</a>
<a class="hero-logos-link" href="https://mcgill.ca/">
<img src="images/logo-mcgill.png">
</a>
<!-- <a class="hero-logos-link" href="https://www.unipd.it/">
<img src="images/bbworkshop2024/Logo_UniPD.png">
</a> -->
</div>
</div>
<div class="hero-logos">
<div class="flex-center">
<a class="hero-logos-link" href="https://www.helmholtz.de/en/ ">
<img src="images/logo-helmholtz.png">
</a>
<a class="hero-logos-link" href="https://www.helmholtz.ai/ ">
<img src="images/bbworkshop2023/logo-helmholtzai.png">
</a>
<a class="hero-logos-link" href="https://www.mcgill.ca/hbhl/">
<img src="images/logo-hbhl.png">
</a>
<!-- <a class="hero-logos-link" href="https://www.humanbrainproject.eu">
<img src="images/bbworkshop2023/logo-hbp.jpg">
</a> -->
<a class="hero-logos-link" href="https://www.ebrains.eu/">
<img src="images/bbworkshop2023/logo-ebrains.png">
</a>
<a class="hero-logos-link" href="https://cbrain.ca">
<img src="images/bbworkshop2023/logo-cbrain.png">
</a>
<!-- <a class="hero-logos-link" href="https://pnc.unipd.it/">
<img src="images/bbworkshop2024/pnc.png">
</a> -->
<!-- <a class="" href="https://edih.is/">
<img src="images/bbworkshop2023/logo-edih.png">
</a> -->
</div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<blockquote class="quote-holder">
<img class="quote-image" src="images/icon-aquisition.png">
<p class="quote-text">A growing community.</p>
</blockquote>
<div class="section-content flex">
<a href="https://www.fz-juelich.de/">
<img src="images/logo-julich.jpg">
</a>
<a href="https://mcgill.ca/">
<img src="images/logo-mcgill.png">
</a>
</div>
<p class="center" style="color: #fff;">For information please email us at <a href="mailto:info@bigbrainproject.org">info@bigbrainproject.org</a><br>All images on this website are licensed <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA”</a></p>
</footer>
<div class="brand-border-1"></div>
<div class="brand-border-2"></div>
<div class="brand-border-3"></div>
</div>
<script>
$(function(){
$("#showmenu").click(function(e){
$("#menu").slideUp();
if ($(this).next().is(":hidden")){
$(this).next().slideDown();
}
});
});
</script>
<script type="text/javascript">
$(function() {
$('.item').matchHeight();
});
</script>
<script type="text/javascript">
$(document).on('ready', function() {
$('#slick-slider').slick({
dots: true,
infinite: true,
autoplay: true,
autoplaySpeed: 6000,
draggable: true,
mobilefirst: true,
pauseonhover: true,
slidesToShow: 2,
slidesToScroll: 1,
responsive: [
{
breakpoint: 1500,
settings: {
slidesToShow: 1,
slidesToScroll: 1,
infinite: true,
dots: true
}
}
// You can unslick at a given breakpoint now by adding:
// settings: "unslick"
// instead of a settings object
]
});
});
</script>
<script type="text/javascript">
// Vanilla version of FitVids
// Still licencened under WTFPL
//
// Not as robust and fault tolerant as the jQuery version.
// It's BYOCSS.
// And also, I don't support this at all whatsoever.
(function(window, document, undefined) {
"use strict";
// List of Video Vendors embeds you want to support
var players = ['iframe[src*="youtube.com"]', 'iframe[src*="vimeo.com"]'];
// Select videos
var fitVids = document.querySelectorAll(players.join(","));
// If there are videos on the page...
if (fitVids.length) {
// Loop through videos
for (var i = 0; i < fitVids.length; i++) {
// Get Video Information
var fitVid = fitVids[i];
var width = fitVid.getAttribute("width");
var height = fitVid.getAttribute("height");
var aspectRatio = height / width;