-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbigbrainworkshop-2024.html
926 lines (846 loc) · 53.9 KB
/
bigbrainworkshop-2024.html
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
<!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:[email protected]" 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 bbworkshop2024-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">8th BigBrain Workshop </h1>
<h2 class="full-width text-center big">Challenges of Multimodal Data Integration</h2>
<p class="center">On September 9-11, 2024, we held our 8th annual BigBrain Workshop in Padua, Italy. </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>
<!-- value 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/bbworkshop2024/hawrylycz.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>BigBrain Project Educational Lecture (HBHL Training Day)</h1>
<h2>Michael Hawrylycz</h2>
<a href="#hawrylycz"><h3>The BRAIN Initiative Cell Atlas Network: Comprehensive multimodal atlases of the human brain</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2024/corbetta.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>HIBALL Lecture in Brain Analytics and Learning</h1>
<h2>Maurizio Corbetta</h2>
<a href="#corbetta"><h3>Architecture and function of spontaneous brain activity in health and pathology</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2024/thiebaut.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>Sievers Lecture in Computational Neuroscience</h1>
<h2>Michel Thiebaut de Schotten</h2>
<a href="#thiebaut"><h3>The emergent properties of the connected brain </h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2024/salvalaggio.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>LOC Session: The Padova Neuroscience Centre</h1>
<h2>Alessandro Salvalaggio</h2>
<a href="#salvalaggio"><h3>Brain connectivity and glioma: a new approach </h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2024/pini.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>LOC Session: The Padova Neuroscience Centre</h1>
<h2>Lorenzo Pini</h2>
<a href="#pini"><h3>The Clinical Connectome: From Neurodegenerative to Focal Brain Diseases
</h3></a>
</div>
</div>
</div>
<div class="testimonial small-font">
<div class="col-2 flex-center">
<img src="images/bbworkshop2024/bertoldo.png" class="BigBrainPic image-size">
</div>
<div class="col-2">
<div class="text-box">
<h1>LOC Session: The Padova Neuroscience Centre</h1>
<h2>Alessandra Bertoldo</h2>
<a href="#bertoldo"><h3>PET connectomics: Exploring brain network complexity from a molecular imaging perspective</h3></a>
</div>
</div>
</div>
</div>
<a href="bigbrainworkshop-2024-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>
</div>
</section>
<!-- videos -->
<section class="med-grey-bg">
<div class="section-content">
<h1 class="full-width text-center"><a href="https://go.fzj.de/BigBrainWorkshop2024">8th 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="hawrylycz"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/Hg6QSyzoyzg?si=4tVjesfO1zaon4nr" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h2>BigBrain Project Educational Lecture (HBHL Training Day)</h2>
<h3><a href="https://www.youtube.com/watch?v=Hg6QSyzoyzg">The BRAIN Initiative Cell Atlas Network: Comprehensive multimodal atlases of the human brain</a></h3>
<p><strong>Michael Hawrylycz</strong><br>
Modeling, Analysis, and Theory Group, Allen Institute for Brain Science - Seattle, CA<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="corbetta"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/EnW0HBuPJeQ?si=xAkCrpQXRxpVkO8S" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h2>HIBALL Lecture in Brain Analytics and Learning</h2>
<h3><a href="https://www.youtube.com/watch?v=EnW0HBuPJeQ">Architecture and function of spontaneous brain activity in health and pathology</a></h3>
<p><strong>Maurizio Corbetta</strong><br>
Department of Neuroscience, University of Padova, Italy<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="thiebaut"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/3XH8SO9Xqs0?si=5t1fTqy-6ngAcji2" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h2>Sievers Lecture in Computational Neuroscience</h2>
<h3><a href="https://www.youtube.com/watch?v=3XH8SO9Xqs0">The emergent properties of the connected brain</a></h3>
<p><strong>Michel Thiebaut de Schotten</strong><br>
Neurofunctional Imaging Group, University of Bordeaux & Brain Connectivity and Behaviour Laboratory (BCBLab), Sorbonne Universités, Paris - Bordeaux, France<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">Invited Lectures</h2>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/pvJrpxcwcQU?si=P9JcxDi8mwDT-yim" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=pvJrpxcwcQU">Dimensional perspectives on multiscale cortical organization </a></h3>
<p><strong>Boris Bernhardt</strong><br>
MICA Lab, Montreal Neurological Institute, McGill University<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/fjT3jOVGezg?si=TWwCmdpPqslDaojg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=fjT3jOVGezg">NeuroAI Special Lecture (HBHL Training Day): Approaches to brain control</a></h3>
<p><strong>Michele Allegra</strong><br>
Padova Neuroscience Center, University of Padova<br>
More information: <a href="https://events.hifis.net/event/1416/page/465-approaches-to-brain-control">https://events.hifis.net/event/1416/page/465-approaches-to-brain-control</a></p>
</div>
</div>
<br><br><h2 class="full-width text-center">LOC Session: The Padova Neuroscience Centre</h2>
<div class="hiballlaunch-card">
<a href="" class="anchor" id="salvalaggio"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/KnEqvGPkevA?si=qVUghmZI-b9Erioa" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=KnEqvGPkevA">Brain connectivity and glioma: a new approach</a></h3>
<p><strong>Alessandro Salvalaggio</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="pini"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/XVEijHdSYWc?si=1I2Prfw5qXZLMIUG" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=XVEijHdSYWc">The Clinical Connectome: From Neurodegenerative to Focal Brain Diseases</a></h3>
<p><strong>Lorenzo Pini</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="bertoldo"></a>
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/gKZy2aUKW0M?si=ykYkHkQEI8hUCyUw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=gKZy2aUKW0M">PET connectomics: Exploring brain network complexity from a molecular imaging perspective</a></h3>
<p><strong>Alessandra Bertoldo</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>
<br><br><h2 class="full-width text-center">Training Day</h2>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/OgPsay4EQpM?si=KqKGluDKjo1DnQ70" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=OgPsay4EQpM">Indirect network disconnection methods (HBHL Training Day)</a></h3>
<p>Hands-on session by <strong>Alessandro Salvalaggio & Lorenzo Pini</strong><br>
Department of Neuroscience, University of Padova<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/ex4HC9Y6qOA?si=Qi1cUmlrLpOfimyr" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=ex4HC9Y6qOA">Introduction to the Allen Institute Single Cell Ecosystem (HBHL Training Day)</a></h3>
<p>Hands-on session by <strong>Rachel Hostetler</strong><br>
Allen Institute for Brain Science, Seattle, CA<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/464-introduction-to-the-allen-institute-single-cell-ecosystem">https://events.hifis.net/event/1416/page/464-introduction-to-the-allen-institute-single-cell-ecosystem</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/4D7R3E988vc?si=8doSiEIvz0h-UV6K" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=4D7R3E988vc">Sulcal morphometry for multiple subjects using BrainVisa / Morphologist (HBHL Training Day)</a></h3>
<p>Hands-on session by <strong>Denis Rivière & Jean-François Mangin</strong><br>
NeuroSpin, Saclay<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/308-sulcal-morphometry-for-multiple-subjects-using-brainvisa-morphologist">https://events.hifis.net/event/1416/page/308-sulcal-morphometry-for-multiple-subjects-using-brainvisa-morphologist</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/CykFXHWqQUs?si=alaR7cBnIT-W-KLD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=CykFXHWqQUs">BigBrain data processing with CBRAIN (HBHL Training Day)</a></h3>
<p>Hands-on session by <strong>Bryan Caron</strong><br>
NeuroHub, McGill University<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/311-bigbrain-data-processing-with-cbrain">https://events.hifis.net/event/1416/page/311-bigbrain-data-processing-with-cbrain</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/4xSwhAhZfhU?si=JoZ7-A2mZHRn46Cp" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=4xSwhAhZfhU">The BigMac Dataset: combining multi-contrast MRI and microscopy in the macaque brain (HBHL Training Day)</a></h3>
<p>Hands-on session by <strong>Amy Howard & Silei Zhu</strong><br>
Wellcome Centre for Integrative Neuroimaging (FMRIB Centre), University of Oxford<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/307-the-bigmac-dataset-combining-multi-contrast-mri-and-microscopy-in-the-macaque-brain">https://events.hifis.net/event/1416/page/307-the-bigmac-dataset-combining-multi-contrast-mri-and-microscopy-in-the-macaque-brain</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/xm57NU5D6Vc?si=PgFmB0DhCn1b8JeI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=xm57NU5D6Vc">Making the multiscale organization of the human brain accessible to reproducible workflows using siibra-python (HBHL Training Day)</a></h3>
<p>Hands-on session by <strong>Timo Dickscheid & Sebastian Bludau</strong><br>
Institute for Neuroscience and Medicine (INM-1), Forschungszentrum Jülich, Germany<br>
Abstract: <a href="https://events.hifis.net/event/1416/page/310-making-the-multiscale-organization-of-the-human-brain-accessible-to-reproducible-workflows-using-siibra-python">https://events.hifis.net/event/1416/page/310-making-the-multiscale-organization-of-the-human-brain-accessible-to-reproducible-workflows-using-siibra-python</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/VUP8QRETiLk?si=qOVsHXsvr49UHUj5" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=VUP8QRETiLk">Integrating AI approaches for brain modelling (HBHL Training Day)</a></h3>
<p> <strong>Jane Roskams</strong>, moderator<br>
Panel Discussion<br>
Panel: Rachel Hostetler, Amy Howard, Michele Allegra, Christian Schiffer</p>
</div>
</div>
<br><br><h2 class="full-width text-center">HIBALL</h2>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/t9-B1GqhKKM?si=nffgb0ZgXoGwz-or" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=t9-B1GqhKKM">Introduction</a></h3>
<p><strong>Katrin Amunts, Alan Evans</strong></p>
</div>
</div>
<br><br><h2 class="full-width text-center">Panel Discussion: The benefit of making multimodal data interoperable</h2>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/tai9t5y2YvI?si=Difgyz4WTUz_xjg1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=tai9t5y2YvI">BigBrain as part of the Multimodal Atlas at EBRAINS</a></h3>
<p> <strong>Katrin Amunts</strong><br>
Institute of Neuroscience and Medicine (INM-1) Forschungszentrum Jülich, Cécile and Oskar Vogt Institute for Brain Research, University Hospital Düsseldorf, Medical Faculty, Heinrich-Heine University Düsseldorf, Germany</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/GZA1kWqZsxs?si=mhchibRlM2hqMgsl" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=GZA1kWqZsxs">The McGill multimodal data ecosystem</a></h3>
<p> <strong>Alan C. Evans</strong><br>
Montreal Neurological Institute, McGill University</p>
</div>
</div>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/2_EUKonECgw?si=rPWjY3ca2Pt6gndW" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=2_EUKonECgw">Moderated discussion</a></h3>
<p>Moderator: <strong>Katrin Amunts </strong><br>
Panel: Michael Hawrylycz, Jean-François Mangin, Amy Howard, Timo Dickscheid, Alan Evans</p>
</div>
</div>
<br><br><h2 class="full-width text-center">Contributed Talks</h2>
<h3 class="full-width text-center">Session 1: Multimodal data acquisition and processing (co-Chairs: Jordan DeKraker, Timo Dickscheid)</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/d62X-eND_PY?si=6jLIYbOpcAU3lVW7" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=d62X-eND_PY">Mapping neurotransmitter receptor distributions in the macaque cortex </a></h3>
<p><strong>Thomas Funck</strong><br>
Child Mind Institute, New York City, New York, USA)<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/cGEsTwyGGvQ?si=LFy3NzV1c6nvNqpJ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=cGEsTwyGGvQ">Label-free biomolecular tissue analysis in the living brain via vibrational fiber photometry at arbitrary depth</a></h3>
<p><strong>Filippo Pisano</strong><br>
Department of Physics and Astronomy & Padova Neuroscience Center, University of Padova<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11287/">https://events.hifis.net/event/1416/contributions/11287/</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/5kvpEUmozAU?si=Cf9oO_gqHRadAVCH" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=5kvpEUmozAU">Adaptation of FreeSurfer v7.4 pipeline for automated volumetric parcellation and cortical surface extraction of BigBrains 1 and 2</a></h3>
<p><strong>Lindsay B Lewis</strong><br>
McGill Centre for Integrative Neuroscience, McGill University<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11270/">https://events.hifis.net/event/1416/contributions/11270/</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/v7hB4gngy1I?si=QEG2A4hXzGhgKw-U" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=v7hB4gngy1I">The Extremely Brilliant Brain: The Isotropic Micrometric Human Brain Dataset</a></h3>
<p><strong>Matthieu Chourrout</strong><br>
University College London, Department of Mechanical Engineering<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11284/">https://events.hifis.net/event/1416/contributions/11284/</a></p>
</div>
</div>
<br><br><h3 class="full-width text-center">Session 2: Segmentation and AI (co-Chairs: Claire Walsh, Jussi Tohka)</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/U6jn-pPQYVs?si=PtPdibG6LArH-3cP" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=U6jn-pPQYVs">CytoNet: A Deep Neural Network for Whole-brain Characterization of Human Cytoarchitecture</a></h3>
<p><strong>Christian Schiffer</strong><br>
INM-1 Forschungszentrum Jülich, Germany<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11261/">https://events.hifis.net/event/1416/contributions/11261/</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/P7KRpet_2rM?si=AMnhT-vNtXXrOiYG" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=P7KRpet_2rM">Autoencoders for cluster analysis of rat brain histology</a></h3>
<p><strong>Melina Estela Dalmau</strong><br>
University of Eastern Finland<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11273/">https://events.hifis.net/event/1416/contributions/11273/</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/RB1PUJB6YnI?si=xNjAMcNCnpvep9KK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=RB1PUJB6YnI">Step by Step: Towards a gapless 1 micron BigBrain with Diffusion Models</a></h3>
<p><strong>Jan-Oliver Kropp</strong><br>
INM-1 Forschungszentrum Jülich, Helmholtz AI, Jülich, Germany<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11426/">https://events.hifis.net/event/1416/contributions/11426/</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/SXBoejlJlvE?si=nFuewSaO-EHGJMj_" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=SXBoejlJlvE">BigBrain Image blind restoration and alignment with generative priors, U-Net and structural similarity</a></h3>
<p><strong>Mingli Zhang</strong><br>
Montreal Neurological Institute, McGill University<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11276/">https://events.hifis.net/event/1416/contributions/11276/</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/JUp3sbJmhzM?si=r2p9s_KkQxrHxM6X" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=JUp3sbJmhzM">Analyzing Regional Organization of the Human Hippocampus in 3D-PLI Using Contrastive Learning and Geometric Unfolding</a></h3>
<p><strong>Alexander Oberstrass</strong><br>
Institute of Neuroscience and Medicine (INM-1), Forschungszentrum Jülich, Germany<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11282/">https://events.hifis.net/event/1416/contributions/11282/</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/ch1X4cLgfOw?si=q43ROLZGQDl5FBg_" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=ch1X4cLgfOw">Towards Universal Instance Segmentation Models in Biomedical Imaging</a></h3>
<p><strong>Eric Upschulte</strong><br>
Institute of Neuroscience and Medicine (INM-1), Forschungszentrum Jülich, Germany<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11283/">https://events.hifis.net/event/1416/contributions/11283/</a></p>
</div>
</div>
<br><br><h3 class="full-width text-center">Session 3: Mapping and Atlases (co-Chairs: Elizabeth Rounis, Thomas Funck)</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/QrM0TLh9BZo?si=iee5sT34lOckcrsD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=QrM0TLh9BZo">HippoMaps: multiscale cartography of human hippocampal organization</a></h3>
<p><strong>Jordan DeKraker</strong><br>
Montreal Neurological Institute, McGill University<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/1qnHCwe_yFA?si=aAl-8umWq4of_K5T" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=1qnHCwe_yFA">Asymmetry of hippocampal subfield volumes in a heterogenous cohort of focal drug-resistant epilepsies</a></h3>
<p><strong>Mastaneh Torkamani-Azar</strong><br>
A.I. Virtanen Institute for Molecular Sciences, 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/jblmjN-fH1o?si=UM_QECQ9nH4-yIqe" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=jblmjN-fH1o">High-resolution 3D Mapping of the Human Hypothalamus:Towards a Comprehensive Cytoarchitectonic Atlas</a></h3>
<p><strong>Alexey Chervonnyy</strong><br>
Cécile & Oscar Vogt Institute for Brain Research<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11266/ ">https://events.hifis.net/event/1416/contributions/11266/ </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/JHx4GyEzUyk?si=QSccDSsqwQ72k2kM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=JHx4GyEzUyk">Mapping superficial white matter architecture on BigBrain</a></h3>
<p><strong>Youngeun Hwang</strong><br>
Montreal Neurological Institute, McGill University<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11274/">https://events.hifis.net/event/1416/contributions/11274/</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/U8KPbOQyHt4?si=sTU_7aJBuDr9UicA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=U8KPbOQyHt4">Surface-based parcellation and vertex-wise analysis of ultra high-resolution ex vivo 7 tesla MRI in Alzheimer’s disease and related dementias</a></h3>
<p><strong>Pulkit Khandelwal</strong><br>
University of Pennsylvania<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11263/">https://events.hifis.net/event/1416/contributions/11263/</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/v5YmzejUSNM?si=TreMaoNv0aNZa0wf" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=v5YmzejUSNM">Exploring the links between the localization of cortical areas and the variability of folding patterns</a></h3>
<p><strong>ZhongYi Sun</strong><br>
Institut du Cerveau et de la Moëlle (ICM), Paris, France<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11265/">https://events.hifis.net/event/1416/contributions/11265/</a></p>
</div>
</div>
<br><br><h3 class="full-width text-center">Session 4: Modelling and Connectivity (co-Chairs: Lorenzo Pini, Boris Bernhardt)</h3><br><br>
<div class="hiballlaunch-card">
<div class="hiballlaunch-vid col-4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/MsMVMpfYqe0?si=fP4xRYiWh8lwQuCu" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=MsMVMpfYqe0">Improving Brain Simulation Accuracy: Sensitivity Analysis and Realistic Time Delays in Neural Mass Models</a></h3>
<p><strong>Anisleidy González-Mitjans</strong><br>
Montreal Neurological Institute, McGill University<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11271/ ">https://events.hifis.net/event/1416/contributions/11271/ </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/CobA2-XNhho?si=WabadbuTsDYa5TxK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=CobA2-XNhho">EEG Simulation through Integration of Structural Connectivity Data and High-Density Surface Meshes in Brain Region-Specific Network Models</a></h3>
<p><strong>Alejandro Salinas-Medina</strong><br>
Montreal Neurological Institute, McGill University<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11262/ ">https://events.hifis.net/event/1416/contributions/11262/ </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/KrcaMII_a7o?si=9kY6v9GSpWG2bRkA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=KrcaMII_a7o">cuBNM: GPU-Accelerated Biophysical Network Modeling</a></h3>
<p><strong>Amin Saberi</strong><br>
Institute of Neuroscience and Medicine (INM-7), Forschungszentrum Jülich, Germany Otto Hahn Research Group for Cognitive Neurogenetics, Max Planck Institute for Human Cognitive and Brain Sciences, Leipzig, Germany<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11277/">https://events.hifis.net/event/1416/contributions/11277/</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/p99lXivY-Bk?si=aHwY-XA-frQfIwZJ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=p99lXivY-Bk">Minimizing time-to-result: Cobrawap latest developments and applications</a></h3>
<p><strong>Cosimo Lupo</strong><br>
Istituto Nazionale di Fisica Nucleare (INFN), Rome, Italy<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11278/ ">https://events.hifis.net/event/1416/contributions/11278/ </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/LTMl6tU9NHQ?si=oGXYJG-IhO6KXcue" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="hiballlaunch-description col-3">
<h3><a href="https://www.youtube.com/watch?v=LTMl6tU9NHQ">Neuropil distributions in the human brain predict resting-state functional networks</a></h3>
<p><strong>Brian Chang</strong><br>
Yale University<br>
Abstract: <a href="https://events.hifis.net/event/1416/contributions/11268/ ">https://events.hifis.net/event/1416/contributions/11268/ </a></p>
</div>
</div>
</div>
</section>
<section>
<div class="section-content font-big end">
<h2 class="full-width text-center">8th BigBrain Workshop - Challenges of Multimodal Data Integration</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:[email protected]">[email protected]</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;
var parentDiv = fitVid.parentNode;
// Wrap it in a DIV
var div = document.createElement("div");
div.className = "fitVids-wrapper";
div.style.paddingBottom = aspectRatio * 100 + "%";
parentDiv.insertBefore(div, fitVid);
fitVid.remove();
div.appendChild(fitVid);
// Clear height/width from fitVid
fitVid.removeAttribute("height");
fitVid.removeAttribute("width");
}
}
})(window, document);
</script>
</body></html>