-
Notifications
You must be signed in to change notification settings - Fork 300
/
Copy pathevents.html
2386 lines (1486 loc) · 90 KB
/
events.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
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 lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T8XT4PS');</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?">
<title>
Events | PyTorch
</title>
<meta name="robots" content="index, follow" />
<meta name="description" content="" />
<meta property="og:image" content="https://pytorch.org/assets/images/social-share.jpg" />
<meta name="twitter:image" content="https://pytorch.org/assets/images/social-share.jpg" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Events" />
<meta property="og:description" content="" />
<meta property="og:site_name" content="PyTorch" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Events" />
<meta name="twitter:description" content="" />
<link rel="stylesheet" href="/assets/main.css">
<script src="/assets/vendor/jquery.min.js"></script>
<script src="/assets/vendor/popper.min.js"></script>
<script src="/assets/vendor/bootstrap.min.js"></script>
<script src="/assets/vendor/anchor.min.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
inlineMath: [['$','$']]
}
});
</script>
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '243028289693773');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1"
src="https://www.facebook.com/tr?id=243028289693773&ev=PageView
&noscript=1"/>
</noscript>
<!-- Twitter universal website tag code -->
<img height="1" width="1" style="display:none;" alt="" src="https://analytics.twitter.com/i/adsct?p_id=Twitter&p_user_id=0&txn_id=o2gi1&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0 (https://urldefense.proofpoint.com/v2/url?u=https-3A__analytics.twitter.com_i_adsct-3Fp-5Fid-3DTwitter-26p-5Fuser-5Fid-3D0-26txn-5Fid-3Do2gi1-26events-3D-255B-255B-2522pageview-2522-252Cnull-255D-255D-26tw-5Fsale-5Famount-3D0-26tw-5Forder-5Fquantity-3D0&d=DwMGaQ&c=5VD0RTtNlTh3ycd41b3MUw&r=GMr8XYCDyeQQZuD3noL91A&m=dAJyokk16UvYy-vMrGn_JwYiGfp_eEgo25B9iGDCG-A&s=o6i4D0V0088WH2RnzIoqiF-vj45PL-2sTrsxQ0SNO3A&e=)" />
<img height="1" width="1" style="display:none;" alt="" src="//t.co/i/adsct?p_id=Twitter&p_user_id=0&txn_id=o2gi1&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0 (https://urldefense.proofpoint.com/v2/url?u=https-3A__linkprotect.cudasvc.com_url-3Fa-3Dhttp-253a-252f-252ft.co-252fi-252fadsct-253fp-5Fid-253dTwitter-2526p-5Fuser-5Fid-253d0-2526txn-5Fid-253do2gi1-2526events-253d-25255B-25255B-252522pageview-252522-25252Cnull-25255D-25255D-2526tw-5Fsale-5Famount-253d0-2526tw-5Forder-5Fquantity-253d0-26c-3DE-2C1-2CC33dLwIhtuEcl5FhdztSnUwsioeej5k-2DWy0RYREBAq51kGji32A2Cw94YU9vQBpY5tPN3AukEw3C-5F-2DlbtndnLoR7-5FA-5FLoH0Rr7zLtP1ykptN-26typo-3D1&d=DwMGaQ&c=5VD0RTtNlTh3ycd41b3MUw&r=GMr8XYCDyeQQZuD3noL91A&m=dAJyokk16UvYy-vMrGn_JwYiGfp_eEgo25B9iGDCG-A&s=Abgc3XBkhESv8XBYtLchdDZyISGsK6v_BB6cLMJGyCw&e=)" />
<!-- End Twitter universal website tag code -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="Pythorch Blog Posts" />
</head>
<body class="ecosystem">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T8XT4PS"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="hello-bar">
<div class="container">
Join us at PyTorch Conference in San Francisco, October 22-23. CFP open now! <a target="_blank" href="https://events.linuxfoundation.org/pytorch-conference/">Learn more</a>.
</div>
</div>
<div class="container-fluid header-holder ecosystem-header">
<div class="container">
<div class="header-container">
<a class="header-logo" href="https://pytorch.org" aria-label="PyTorch"></a>
<div class="main-menu">
<ul>
<li class="main-menu-item">
<div id="dropdownMenuButton" data-toggle="resources-dropdown" class="resources-dropdown">
<a class="with-down-arrow">
Learn
</a>
<div class="resources-dropdown-menu">
<a class="nav-dropdown-item" href="/get-started">
<span class=dropdown-title>Get Started</span>
<p>Run PyTorch locally or get started quickly with one of the supported cloud platforms</p>
</a>
<a class="nav-dropdown-item" href="https://pytorch.org/tutorials/">
<span class="dropdown-title">Tutorials</span>
<p>Whats new in PyTorch tutorials</p>
</a>
<a class="nav-dropdown-item" href="https://pytorch.org/tutorials/beginner/basics/intro.html">
<span class="dropdown-title">Learn the Basics</span>
<p>Familiarize yourself with PyTorch concepts and modules</p>
</a>
<a class="nav-dropdown-item" href="https://pytorch.org/tutorials/recipes/recipes_index.html">
<span class="dropdown-title">PyTorch Recipes</span>
<p>Bite-size, ready-to-deploy PyTorch code examples</p>
</a>
<a class="nav-dropdown-item" href="https://pytorch.org/tutorials/beginner/introyt.html">
<span class="dropdown-title">Intro to PyTorch - YouTube Series</span>
<p>Master PyTorch basics with our engaging YouTube tutorial series</p>
</a>
<a class="nav-dropdown-item" href="/new">
<span class="dropdown-title">New to PyTorch Foundation</span>
</a>
</div>
</div>
</li>
<li class="main-menu-item">
<div id="dropdownMenuButton" data-toggle="resources-dropdown" class="resources-dropdown">
<a class="with-down-arrow">
Ecosystem
</a>
<div class="resources-dropdown-menu">
<a class="nav-dropdown-item" href="https://landscape.pytorch.org/" target="_blank">
<span class="dropdown-title">Tools</span>
<p>Learn about the tools and frameworks in the PyTorch Ecosystem</p>
</a>
<a class="nav-dropdown-item" href="https://github.com/pytorch-fdn/ecosystem" target="_blank">
<span class="dropdown-title">Join the Ecosystem</span>
</a>
<a class="nav-dropdown-item" href="/#community-module">
<span class=dropdown-title>Community</span>
<p>Join the PyTorch developer community to contribute, learn, and get your questions answered.</p>
</a>
<a class="nav-dropdown-item" href="https://discuss.pytorch.org" target="_blank">
<span class=dropdown-title>Forums</span>
<p>A place to discuss PyTorch code, issues, install, research</p>
</a>
<a class="nav-dropdown-item" href="/resources">
<span class=dropdown-title>Developer Resources</span>
<p>Find resources and get questions answered</p>
</a>
<a class="nav-dropdown-item" href="/ecosystem/contributor-awards-2024">
<span class="dropdown-title">Contributor Awards - 2024</span>
<p>Award winners announced at this year's PyTorch Conference</p>
</a>
</div>
</div>
</li>
<li class="main-menu-item">
<div id="dropdownMenuButton" data-toggle="resources-dropdown" class="resources-dropdown">
<a class="with-down-arrow">
Edge
</a>
<div class="resources-dropdown-menu">
<a class="nav-dropdown-item" href="/edge">
<span class="dropdown-title">About PyTorch Edge</span>
<p>Build innovative and privacy-aware AI experiences for edge devices</p>
</a>
<a class="nav-dropdown-item" href="/executorch-overview">
<span class="dropdown-title">ExecuTorch</span>
<p>End-to-end solution for enabling on-device inference capabilities across mobile and edge devices</p>
</a>
<a class="nav-dropdown-item" target="_blank" href="https://pytorch.org/executorch/stable/index.html">
<span class="dropdown-title">ExecuTorch Documentation</span>
</a>
</div>
</div>
</li>
<li class="main-menu-item">
<div id="docsDropdownButton" data-toggle="resources-dropdown" class="resources-dropdown">
<a class="with-down-arrow">
Docs
</a>
<div class="resources-dropdown-menu">
<a class="nav-dropdown-item" href="https://pytorch.org/docs">
<span class="dropdown-title">PyTorch</span>
<p>Explore the documentation for comprehensive guidance on how to use PyTorch.</p>
</a>
<a class="nav-dropdown-item" href="/pytorch-domains">
<span class="dropdown-title">PyTorch Domains</span>
<p> Read the PyTorch Domains documentation to learn more about domain-specific libraries.</p>
</a>
</div>
</div>
</li>
<li class="main-menu-item">
<div id="dropdownMenuButton" data-toggle="resources-dropdown" class="resources-dropdown">
<a class="with-down-arrow">
Blog & News
</a>
<div class="resources-dropdown-menu">
<a class="nav-dropdown-item" href="/blog">
<span class="dropdown-title">PyTorch Blog</span>
<p>Catch up on the latest technical news and happenings</p>
</a>
<a class="nav-dropdown-item" href="/community-blog">
<span class="dropdown-title">Community Blog</span>
<p>Stories from the PyTorch ecosystem</p>
</a>
<a class="nav-dropdown-item" href="/videos">
<span class="dropdown-title">Videos</span>
<p>Learn about the latest PyTorch tutorials, new, and more </p>
</a>
<a class="nav-dropdown-item" href="/community-stories">
<span class="dropdown-title">Community Stories</span>
<p>Learn how our community solves real, everyday machine learning problems with PyTorch</p>
</a>
<a class="nav-dropdown-item" href="/events">
<span class=dropdown-title>Events</span>
<p>Find events, webinars, and podcasts</p>
</a>
<a class="nav-dropdown-item" href="/newsletter">
<span class=dropdown-title>Newsletter</span>
<p>Stay up-to-date with the latest updates</p>
</a>
</div>
</div>
</li>
<li class="main-menu-item">
<div id="resourcesDropdownButton" data-toggle="resources-dropdown" class="resources-dropdown">
<a class="with-down-arrow">
About
</a>
<div class="resources-dropdown-menu">
<a class="nav-dropdown-item" href="/foundation">
<span class=dropdown-title>PyTorch Foundation</span>
<p>Learn more about the PyTorch Foundation.</p>
</a>
<a class="nav-dropdown-item" href="/governing-board">
<span class=dropdown-title>Governing Board</span>
</a>
<a class="nav-dropdown-item" href="/credits">
<span class=dropdown-title>Cloud Credit Program</span>
</a>
<a class="nav-dropdown-item" href="/tac">
<span class=dropdown-title>Technical Advisory Council</span>
</a>
<a class="nav-dropdown-item" href="/staff">
<span class=dropdown-title>Staff</span>
</a>
<a class="nav-dropdown-item" href="/contact-us">
<span class=dropdown-title>Contact Us</span>
</a>
</div>
</div>
</li>
<li class="main-menu-item">
<a href="/join" data-cta="join">
Become a Member
</a>
</li>
<li class="main-menu-item" id="github-main-menu-link">
<a href="https://github.com/pytorch/pytorch" title="Go to PyTorch GitHub">
<div id="topnav-gh-icon"></div>
</a>
</li>
<li class="navSearchWrapper reactNavSearchWrapper" key="search">
<div class="search-border">
<div id="search-icon"></div>
<input
id="search-input"
type="text"
title="Search"
/>
<div id="close-search">X</div>
</div>
</li>
</ul>
</div>
<script src="/assets/main-menu-dropdown.js"></script>
<a class="main-menu-open-button" href="#" data-behavior="open-mobile-menu"></a>
</div>
</div>
</div>
<div class="main-background events-background"></div>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1>Events</h1>
<p class="lead">Don’t miss out on our upcoming PyTorch live events. Find a complete list below.</h2>
</div>
</div>
<div id="pytorch-1" class="main-content-wrapper events-wrapper">
<div class="events main-content">
<div class="events-container-fluid container-fluid nav-menu-wrapper">
<div class="nav-background">
<div class="events-container">
<nav class="navbar navbar-expand-lg navbar-light main-content-menu">
<ul class="navbar-nav events-nav">
<li id="events" class="nav-item nav-select">
<span class="nav-link events-nav-link">Events</span>
</li>
<li id="podcasts" class="nav-item">
<span class="nav-link events-nav-link">Podcasts</span>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="col-md-12 live-event-container">
<div class="col-md-3 event-side-nav-container">
<div id="event-side-nav" class="sticky-top">
<ul id="get-started-contributor-sidebar-list">
<ul>
<li><a href="#NeurIPS2025">NeurIPS 2025</a></li>
</ul>
<ul>
<li><a href="#PyTorchConference2025">PyTorch Conference 2025</a></li>
</ul>
<ul>
<li><a href="#ICCV2025">ICCV 2025</a></li>
</ul>
<ul>
<li><a href="#OpenSourceAIWeek">Open Source AI Week</a></li>
</ul>
<ul>
<li><a href="#LATechWeek">LA Tech Week</a></li>
</ul>
<ul>
<li><a href="#SanFranciscoTechWeek">San Francisco Tech Week</a></li>
</ul>
<ul>
<li><a href="#ECCV2026">ECCV 2026</a></li>
</ul>
<ul>
<li><a href="#SIGGRAPH2025">SIGGRAPH 2025</a></li>
</ul>
<ul>
<li><a href="#ICML2025">ICML 2025</a></li>
</ul>
<ul>
<li><a href="#WeareDevelopersConference">We are Developers Conference</a></li>
</ul>
<ul>
<li><a href="#CVPR2025">CVPR 2025</a></li>
</ul>
<ul>
<li><a href="#Data+AISummit">Data + AI Summit</a></li>
</ul>
<ul>
<li><a href="#PyTorchDayChina2025">PyTorch Day China 2025</a></li>
</ul>
<ul>
<li><a href="#NYCTechWeek">NYC Tech Week</a></li>
</ul>
<ul>
<li><a href="#GamesbeatSummit2025">Gamesbeat Summit 2025</a></li>
</ul>
<ul>
<li><a href="#PyCon2025">PyCon 2025</a></li>
</ul>
<ul>
<li><a href="#MLSys">MLSys</a></li>
</ul>
<ul>
<li><a href="#PyTorchDayFrance2025">PyTorch Day France 2025</a></li>
</ul>
<ul>
<li><a href="#GOSIMAI">GOSIM AI</a></li>
</ul>
<ul>
<li><a href="#ICLR2025">ICLR 2025</a></li>
</ul>
<ul>
<li><a href="#DubaiAIFestival">Dubai AI Festival</a></li>
</ul>
<ul>
<li><a href="#PyTorchKRConference">PyTorch KR Conference</a></li>
</ul>
<ul>
<li><a href="#UsingPyTorchandDINOv2forMulti-labelPlantSpeciesClassification">Using PyTorch and DINOv2 for Multi-label Plant Species Classification</a></li>
</ul>
<ul>
<li><a href="#LFMemberSummit">LF Member Summit</a></li>
</ul>
<ul>
<li><a href="#NvidiaGTC2025">Nvidia GTC 2025</a></li>
</ul>
<ul>
<li><a href="#PyTorchMeetupatDevConf.IN2025">PyTorch Meetup at DevConf.IN 2025</a></li>
</ul>
<ul>
<li><a href="#AAAIConferenceonAI">AAAI Conference on AI</a></li>
</ul>
<ul>
<li><a href="#Multi-ModalTabularDeepLearningwithPyTorchFrame">Multi-Modal Tabular Deep Learning with PyTorch Frame</a></li>
</ul>
<ul>
<li><a href="#OpenSourceForum">Open Source Forum</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.6LiveQ&A">PyTorch 2.6 Live Q&A</a></li>
</ul>
<ul>
<li><a href="#AI-PoweredCompetitiveProgramming:MyHackerCup2024Experience">AI-Powered Competitive Programming: My HackerCup 2024 Experience</a></li>
</ul>
<ul>
<li><a href="#OpenSourceAISummit">Open Source AI Summit</a></li>
</ul>
<ul>
<li><a href="#COLING2025">COLING 2025</a></li>
</ul>
<ul>
<li><a href="#PyTorchKoreaUserGroupMeetup">PyTorch Korea User Group Meetup</a></li>
</ul>
<ul>
<li><a href="#PyTorchConference2024">PyTorch Conference 2024</a></li>
</ul>
<ul>
<li><a href="#PyTorchShanghaiMeetup">PyTorch Shanghai Meetup</a></li>
</ul>
<ul>
<li><a href="#PyTorchDocathon2024">PyTorch Docathon 2024</a></li>
</ul>
<ul>
<li><a href="#PyTorchConference2023">PyTorch Conference 2023</a></li>
</ul>
<ul>
<li><a href="#PyTorch2023Docathon">PyTorch 2023 Docathon</a></li>
</ul>
<ul>
<li><a href="#VancouverMeetup">Vancouver Meetup</a></li>
</ul>
<ul>
<li><a href="#PyTorchNewYorkMeetup">PyTorch New York Meetup</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:2D+DistributedTensor">PyTorch 2.0 Ask the Engineers Live Q&A Series: 2D + Distributed Tensor</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:TorchMultiModal">PyTorch 2.0 Ask the Engineers Live Q&A Series: TorchMultiModal</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:TorchRL">PyTorch 2.0 Ask the Engineers Live Q&A Series: Torch RL</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:DynamicShapesandCalculatingMaximumBatchSize">PyTorch 2.0 Ask the Engineers Live Q&A Series: Dynamic Shapes and Calculating Maximum Batch Size</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:OptimizingTransformersforInference">PyTorch 2.0 Ask the Engineers Live Q&A Series: Optimizing Transformers for Inference</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:RethinkingDataLoadingwithTorchData">PyTorch 2.0 Ask the Engineers Live Q&A Series: Rethinking Data Loading with TorchData</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:AdeepdiveonTorchInductorandPT2BackendIntegration">PyTorch 2.0 Ask the Engineers Live Q&A Series: A deep dive on TorchInductor and PT2 Backend Integration</a></li>
</ul>
<ul>
<li><a href="#PyTorch2.0AsktheEngineersLiveQ&ASeries:DDP/FDSPSupport">PyTorch 2.0 Ask the Engineers Live Q&A Series: DDP/FDSP Support</a></li>
</ul>
<ul>
<li><a href="#PyTorchConference–Dec2nd2022">PyTorch Conference – Dec 2nd 2022</a></li>
</ul>
<ul>
<li><a href="#Webinar:PyTorch,aFoundationforOpenSourceAI/ML">Webinar: PyTorch, a Foundation for Open Source AI/ML</a></li>
</ul>
<ul>
<li><a href="#PyTorchDeveloperDay2021">PyTorch Developer Day 2021</a></li>
</ul>
<ul>
<li><a href="#PyTorchEcosystemDay2021">PyTorch Ecosystem Day 2021</a></li>
</ul>
<ul>
<li><a href="#PyTorchDeveloperDay2020">PyTorch Developer Day 2020</a></li>
</ul>
<ul>
<li><a href="#PyTorchSummerHackathon2020">PyTorch Summer Hackathon 2020</a></li>
</ul>
</ul>
</div>
<script>
$("#get-started-contributor-sidebar-list li a").on("click", function(e) {
var href = $(this).attr("href")
$('html, body').stop().animate({
scrollTop: $(href).offset().top - 100
}, 850);
(e).preventDefault;
});
var lastId,
topMenu = $("#get-started-contributor-sidebar-list"),
topMenuHeight = topMenu.outerHeight() + 1,
// All sidenav items
menuItems = topMenu.find("a"),
// Anchors for menu items
scrollItems = menuItems.map(function() {
var item = $(this).attr("href");
if (item.length) { return item; }
});
$(window).scroll(function(){
var fromTop = $(this).scrollTop()+topMenuHeight;
var article = '.pytorch-article'
$(article).each(function(i){
var offsetScroll = $(this).offset().top-$(window).scrollTop();
if (offsetScroll <= topMenuHeight + 200 && offsetScroll >= topMenuHeight - 200 && scrollItems[i] == "#" + $(this).children().attr("id") && $(".hidden:visible")) {
$(menuItems).removeClass("active");
$(menuItems[i]).addClass("active");
}
})
});
</script>
<script src="https://code.jquery.com/jquery-migrate-3.0.0.min.js"></script>
</div>
<div class="col-md-9 event-info-container">
<div id="event" class="row main-content blog-detail-content contributor-sidebar">
<div class="col-md-8 offset-md-1 container">
<h1 class="event-label">Upcoming Events</h1>
<div id='DubaiAIFestival' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>Dubai AI Festival</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: Apr 23 - 24, 2025 <br />
<strong>Location</strong>: Dubai, UAE</p>
<p>At Dubai AI Festival, attendees will experience the convergence of artificial intelligence, blockchain, XR, decentralised systems, driving the progression of digital economies and technological innovation.</p>
<p>This dynamic platform is designed to foster collaboration, innovation, and knowledge-sharing among industry leaders, entrepreneurs, and tech enthusiasts from around the world. Join us to engage with the future of technology at Dubai AI Festival.</p>
<p><a href="https://dubaiaifestival.com/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='ICLR2025' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>ICLR 2025</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: Apr 24 - 28, 2025 <br />
<strong>Location</strong>: Singapore</p>
<p>The International Conference on Learning Representations (ICLR) is the premier gathering of professionals dedicated to the advancement of the branch of artificial intelligence called representation learning, but generally referred to as deep learning.</p>
<p>ICLR is globally renowned for presenting and publishing cutting-edge research on all aspects of deep learning used in the fields of artificial intelligence, statistics and data science, as well as important application areas such as machine vision, computational biology, speech recognition, text understanding, gaming, and robotics.</p>
<p><a href="https://iclr.cc/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='GOSIMAI' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>GOSIM AI</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: May 6 - 7, 2025<br />
<strong>Location</strong>: Paris, France</p>
<p><a href="https://paris2025.gosim.org/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='PyTorchDayFrance2025' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>PyTorch Day France 2025</h2>
<p><p><a href="https://events.linuxfoundation.org/pytorch-day-france/">
<img style="width:100%" src="/assets/images/pt-day-cfp.png" alt="PyTorch Day France 2025" />
</a></p>
<p><strong>Date</strong>: May 7, 2025<br />
<strong>Location</strong>: Paris, France</p>
<p>PyTorch Day France 2025, proudly hosted by the PyTorch Foundation, is the premier gathering dedicated to open-source AI and machine learning innovation. Scheduled for 7 May in Paris, France and co-located with the GOSIM AI Paris, this community-driven event provides an unparalleled platform for PyTorch enthusiasts, machine learning engineers, AI researchers, and industry professionals.
Immerse yourself in a vibrant day of insightful technical talks, interactive discussions, and engaging poster sessions designed to foster knowledge exchange and collaboration. PyTorch Day France is your gateway to connecting with leading experts and peers in the open-source AI community, offering you unique opportunities to explore cutting-edge advancements and shape the future of deep learning.</p>
<p><a href="https://events.linuxfoundation.org/pytorch-day-france/">Learn more about the event</a></p>
</p>
</div>
</div>
<div id='MLSys' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>MLSys</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: May 12 - 15, 2025 <br />
<strong>Location</strong>: Santa Clara, CA</p>
<p>The Eighth Annual Conference on Machine Learning and Systems</p>
<p><a href="https://mlsys.org/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='PyCon2025' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>PyCon 2025</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: May 15 - 22, 2025 <br />
<strong>Location</strong>: Pittsburgh, PA</p>
<p>At PyCon US 2025, find a program filled with pre-conference tutorials and sponsor presentations, 90+ of our community’s best talks, which includes the Charlas track, brilliant keynote speakers, posters on display, a lively Expo Hall filled with incredible Sponsors’ booths, and famed lightning talks on each main conference day.</p>
<p><a href="https://us.pycon.org/2025/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='GamesbeatSummit2025' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>Gamesbeat Summit 2025</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: May 19 - 20, 2025 <br />
<strong>Location</strong>: Los Angeles, CA</p>
<p>The gaming industry is on the cusp of a transformative era, driven by innovation, cultural impact, and new economic opportunities. At GamesBeat Summit 2025, explore how creative storytelling, community engagement, and effective business strategies that are shaping the future of gaming industry.</p>
<p>Delve into the diverse influences—ranging from player experiences to industry collaborations—that are paving the way for the next phase of growth.</p>
<p><a href="https://gbs.venturebeat.com/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='NYCTechWeek' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>NYC Tech Week</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: Jun 2 - 8, 2025 <br />
<strong>Location</strong>: New York City</p>
<p>Tech Week is a decentralized tech conference presented by a16z. Every Tech Week, hundreds of events take place across the host city - from hackathons to panel events, community meetups and more. Every event is organized individually by startups, companies and VCs.</p>
<p><a href="https://www.tech-week.com/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='PyTorchDayChina2025' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>PyTorch Day China 2025</h2>
<p><p><a href="https://www.lfasiallc.com/pytorch-day-china/">
<img style="width:100%" src="/assets/images/pt-day-china-2025-cfp.jpg" alt="PyTorch Day China 2025" />
</a></p>
<p><strong>Date:</strong> June 7, 2025<br />
<strong>Location:</strong> Beijing, China</p>
<p>PyTorch Day China 2025, proudly hosted by the PyTorch Foundation, is the premier gathering dedicated to open-source AI and machine learning innovation. Scheduled for June 7th in Beijing, China and co-located with the BAAI Conference, this community-driven event provides an unparalleled platform for PyTorch enthusiasts, machine learning engineers, AI researchers, and industry professionals.</p>
<p>Immerse yourself in a vibrant day of insightful technical talks, interactive discussions, and engaging poster sessions designed to foster knowledge exchange and collaboration. PyTorch Day China is your gateway to connecting with leading experts and peers in the open-source AI community, offering you unique opportunities to explore cutting-edge advancements and shape the future of deep learning.</p>
<p><a href="https://www.lfasiallc.com/pytorch-day-china/">Read more about the event</a></p>
</p>
</div>
</div>
<div id='Data+AISummit' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>Data + AI Summit</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: Jun 9 - 12, 2025 <br />
<strong>Location</strong>: San Francisco, CA</p>
<p>Join 20,000 peers for 700+ sessions, keynotes and training at the world’s largest data, analytics and AI conference.</p>
<p><a href="https://www.databricks.com/dataaisummit">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='CVPR2025' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>CVPR 2025</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: Jun 10 - 17, 2025 <br />
<strong>Location</strong>: Nashville, TN</p>
<p>The IEEE / CVF Computer Vision and Pattern Recognition Conference (CVPR) is the premier annual computer vision event comprising the main conference and several co-located workshops and short courses. With its high quality and low cost, it provides an exceptional value for students, academics and industry researchers.</p>
<p><a href="https://cvpr.thecvf.com/">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='WeareDevelopersConference' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>We are Developers Conference</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: Jul 9 - 11, 2025 <br />
<strong>Location</strong>: Berlin, Germany</p>
<p>Join the largest gathering of software innovators, tech leaders, and decision-makers shaping the future of AI-powered technology.</p>
<p><a href="https://www.wearedevelopers.com/world-congress">Learn more about this event</a></p>
</p>
</div>
</div>
<div id='ICML2025' class="live-events-section events-section col-md-8 offset-md-1 container">
<div class="event-item">
<h2>ICML 2025</h2>
<p><p><span class="community-event">Community Event</span></p>
<p><strong>Date</strong>: Jul 13 - 19, 2025 <br />
<strong>Location</strong>: Berlin, Germany</p>
<p>Forty-Second International Conference on Machine Learning.</p>