forked from papercopilot/paperlists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicml2021.json
11832 lines (11832 loc) · 506 KB
/
icml2021.json
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
[
{
"id": "site_a08dd09ff1",
"title": "\"Hey, that's not an ODE\": Faster ODE Adjoints via Seminorms",
"author": "Patrick Kidger, Ricky T. Q. Chen, Terry Lyons",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10271",
"proceeding": "http://proceedings.mlr.press/v139/kidger21a.html",
"slides": ""
},
{
"id": "site_6ac8ab5757",
"title": "1-bit Adam: Communication Efficient Large-Scale Training with Adam's Convergence Speed",
"author": "Hanlin Tang, Shaoduo Gan, Ammar Ahmad Awan, Samyam Rajbhandari, Conglong Li, Xiangru Lian, Ji Liu, Ce Zhang, Yuxiong He",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9809",
"proceeding": "http://proceedings.mlr.press/v139/tang21a.html",
"slides": "/media/icml-2021/Slides/9809.pdf"
},
{
"id": "site_b56097b4ca",
"title": "12-Lead ECG Reconstruction via Koopman Operators",
"author": "Tomer Golany, Kira Radinsky, Daniel Freedman, Saar Minha",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10177",
"proceeding": "http://proceedings.mlr.press/v139/golany21a.html",
"slides": ""
},
{
"id": "site_3cfc11c20f",
"title": "A Bit More Bayesian: Domain-Invariant Learning with Uncertainty",
"author": "Zehao Xiao, Jiayi Shen, Xiantong Zhen, Ling Shao, Cees Snoek",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10665",
"proceeding": "http://proceedings.mlr.press/v139/xiao21a.html",
"slides": ""
},
{
"id": "site_885359c723",
"title": "A Collective Learning Framework to Boost GNN Expressiveness for Node Classification",
"author": "Mengyue Hang, Jennifer Neville, Bruno Ribeiro",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9337",
"proceeding": "http://proceedings.mlr.press/v139/hang21a.html",
"slides": ""
},
{
"id": "site_bd47b9c3dd",
"title": "A Deep Reinforcement Learning Approach to Marginalized Importance Sampling with the Successor Representation",
"author": "Scott Fujimoto, David Meger, Doina Precup",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9999",
"proceeding": "http://proceedings.mlr.press/v139/fujimoto21a.html",
"slides": ""
},
{
"id": "site_b0c58809f9",
"title": "A Differentiable Point Process with Its Application to Spiking Neural Networks",
"author": "Hiroshi Kajino",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10651",
"proceeding": "http://proceedings.mlr.press/v139/kajino21a.html",
"slides": "/media/icml-2021/Slides/10651.pdf"
},
{
"id": "site_8b410d7d38",
"title": "A Discriminative Technique for Multiple-Source Adaptation",
"author": "Corinna Cortes, Mehryar Mohri, Ananda Theertha Suresh, Ningshan Zhang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10189",
"proceeding": "http://proceedings.mlr.press/v139/cortes21b.html",
"slides": ""
},
{
"id": "site_4fddc2789e",
"title": "A Distribution-dependent Analysis of Meta Learning",
"author": "Mikhail Konobeev, Ilja Kuzborskij, Csaba Szepesvari",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10047",
"proceeding": "http://proceedings.mlr.press/v139/konobeev21a.html",
"slides": "/media/icml-2021/Slides/10047.pdf"
},
{
"id": "site_4471085a7a",
"title": "A Framework for Private Matrix Analysis in Sliding Window Model",
"author": "Jalaj Upadhyay, Sarvagya Upadhyay",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8999",
"proceeding": "http://proceedings.mlr.press/v139/upadhyay21a.html",
"slides": ""
},
{
"id": "site_d4c2200395",
"title": "A Free Lunch From ANN: Towards Efficient, Accurate Spiking Neural Networks Calibration",
"author": "Yuhang Li, Shikuang Deng, Xin Dong, Ruihao Gong, Shi Gu",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9041",
"proceeding": "http://proceedings.mlr.press/v139/li21d.html",
"slides": ""
},
{
"id": "site_a122dbcef0",
"title": "A Functional Perspective on Learning Symmetric Functions with Neural Networks",
"author": "Aaron Zweig, Joan Bruna",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10631",
"proceeding": "http://proceedings.mlr.press/v139/zweig21a.html",
"slides": "/media/icml-2021/Slides/10631.pdf"
},
{
"id": "site_0647c6a598",
"title": "A General Framework For Detecting Anomalous Inputs to DNN Classifiers",
"author": "Jayaram Raghuram, Varun Chandrasekaran, Somesh Jha, Suman Banerjee",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10151",
"proceeding": "http://proceedings.mlr.press/v139/raghuram21a.html",
"slides": "/media/icml-2021/Slides/10151.pdf"
},
{
"id": "site_1063e24cfd",
"title": "A Gradient Based Strategy for Hamiltonian Monte Carlo Hyperparameter Optimization",
"author": "Andrew Campbell, Wenlong Chen, Vincent Stimper, Jose Miguel Hernandez-Lobato, Yichuan Zhang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10755",
"proceeding": "http://proceedings.mlr.press/v139/campbell21a.html",
"slides": ""
},
{
"id": "site_8d23030fd6",
"title": "A Hybrid Variance-Reduced Method for Decentralized Stochastic Non-Convex Optimization",
"author": "Ran Xin, Usman Khan, Soummya Kar",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8935",
"proceeding": "http://proceedings.mlr.press/v139/xin21a.html",
"slides": ""
},
{
"id": "site_d6a1e80c45",
"title": "A Language for Counterfactual Generative Models",
"author": "Zenna Tavares, James Koppel, Xin Zhang, Ria Das, Armando Solar-Lezama",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9997",
"proceeding": "http://proceedings.mlr.press/v139/tavares21a.html",
"slides": ""
},
{
"id": "site_d6dd62c6a7",
"title": "A Lower Bound for the Sample Complexity of Inverse Reinforcement Learning",
"author": "Abi Komanduru, Jean Honorio",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9833",
"proceeding": "http://proceedings.mlr.press/v139/komanduru21a.html",
"slides": ""
},
{
"id": "site_bc448c57f5",
"title": "A Modular Analysis of Provable Acceleration via Polyak's Momentum: Training a Wide ReLU Network and a Deep Linear Network",
"author": "Jun-Kun Wang, Chi-Heng Lin, Jacob Abernethy",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10149",
"proceeding": "http://proceedings.mlr.press/v139/wang21n.html",
"slides": ""
},
{
"id": "site_bd24756913",
"title": "A New Formalism, Method and Open Issues for Zero-Shot Coordination",
"author": "Johannes Treutlein, Michael Dennis, Caspar Oesterheld, Jakob Foerster",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9983",
"proceeding": "http://proceedings.mlr.press/v139/treutlein21a.html",
"slides": ""
},
{
"id": "site_4fda38646e",
"title": "A New Representation of Successor Features for Transfer across Dissimilar Environments",
"author": "Majid Abdolshah, Hung Le, Thommen Karimpanal George, Sunil Gupta, Santu Rana, Svetha Venkatesh",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10753",
"proceeding": "http://proceedings.mlr.press/v139/abdolshah21a.html",
"slides": ""
},
{
"id": "site_438f8876c4",
"title": "A Novel Method to Solve Neural Knapsack Problems",
"author": "Duanshun Li, Jing Liu, Dongeun Lee, Ali S. Mazloom, Giridhar Kaushik, Kookjin Lee, Noseong Park",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10715",
"proceeding": "http://proceedings.mlr.press/v139/li21m.html",
"slides": ""
},
{
"id": "site_6c60b31745",
"title": "A Novel Sequential Coreset Method for Gradient Descent Algorithms",
"author": "Jiawei Huang, Ruomin Huang, wenjie liu, Nikolaos Freris, Hu Ding",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10767",
"proceeding": "http://proceedings.mlr.press/v139/huang21b.html",
"slides": ""
},
{
"id": "site_3f307b073a",
"title": "A Nullspace Property for Subspace-Preserving Recovery",
"author": "Mustafa D Kaba, Chong You, Daniel Robinson, Enrique Mallada, Rene Vidal",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10703",
"proceeding": "http://proceedings.mlr.press/v139/kaba21a.html",
"slides": ""
},
{
"id": "site_297755504e",
"title": "A Policy Gradient Algorithm for Learning to Learn in Multiagent Reinforcement Learning",
"author": "Dong Ki Kim, Miao Liu, Matthew Riemer, Chuangchuang Sun, Marwa Abdulhai, Golnaz Habibi, Sebastian Lopez-Cot, Gerald Tesauro, Jonathan How",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10153",
"proceeding": "http://proceedings.mlr.press/v139/kim21g.html",
"slides": ""
},
{
"id": "site_618c97a4a0",
"title": "A Practical Method for Constructing Equivariant Multilayer Perceptrons for Arbitrary Matrix Groups",
"author": "Marc Finzi, Max Welling, Andrew Wilson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9727",
"proceeding": "http://proceedings.mlr.press/v139/finzi21a.html",
"slides": ""
},
{
"id": "site_90f895b692",
"title": "A Precise Performance Analysis of Support Vector Regression",
"author": "Houssem Sifaou, Abla Kammoun, Mohamed-Slim Alouini",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9883",
"proceeding": "http://proceedings.mlr.press/v139/sifaou21a.html",
"slides": ""
},
{
"id": "site_fa75f5f8aa",
"title": "A Probabilistic Approach to Neural Network Pruning",
"author": "Xin Qian, Diego Klabjan",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10317",
"proceeding": "http://proceedings.mlr.press/v139/qian21a.html",
"slides": ""
},
{
"id": "site_b706970265",
"title": "A Proxy Variable View of Shared Confounding",
"author": "Yixin Wang, David Blei",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10489",
"proceeding": "http://proceedings.mlr.press/v139/wang21c.html",
"slides": ""
},
{
"id": "site_864ece5668",
"title": "A Receptor Skeleton for Capsule Neural Networks",
"author": "Jintai Chen, Hongyun Yu, Chengde Qian, Danny Z Chen, Jian Wu",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8915",
"proceeding": "http://proceedings.mlr.press/v139/chen21x.html",
"slides": ""
},
{
"id": "site_11b0b72bbe",
"title": "A Regret Minimization Approach to Iterative Learning Control",
"author": "Naman Agarwal, Elad Hazan, Anirudha Majumdar, Karan Singh",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9817",
"proceeding": "http://proceedings.mlr.press/v139/agarwal21b.html",
"slides": "/media/icml-2021/Slides/9817.pdf"
},
{
"id": "site_0e2a830f64",
"title": "A Representation Learning Perspective on the Importance of Train-Validation Splitting in Meta-Learning",
"author": "Nikunj Umesh Saunshi, Arushi Gupta, Wei Hu",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8759",
"proceeding": "http://proceedings.mlr.press/v139/saunshi21a.html",
"slides": ""
},
{
"id": "site_67e7ac7241",
"title": "A Riemannian Block Coordinate Descent Method for Computing the Projection Robust Wasserstein Distance",
"author": "Minhui Huang, Shiqian Ma, Lifeng Lai",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8477",
"proceeding": "http://proceedings.mlr.press/v139/huang21e.html",
"slides": "/media/icml-2021/Slides/8477.pdf"
},
{
"id": "site_4b32e20cbc",
"title": "A Sampling-Based Method for Tensor Ring Decomposition",
"author": "Osman Asif Malik, Stephen Becker",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8447",
"proceeding": "http://proceedings.mlr.press/v139/malik21b.html",
"slides": "/media/icml-2021/Slides/8447.pdf"
},
{
"id": "site_7212bbb1da",
"title": "A Scalable Deterministic Global Optimization Algorithm for Clustering Problems",
"author": "Kaixun Hua, Mingfei Shi, Yankai Cao",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10243",
"proceeding": "http://proceedings.mlr.press/v139/hua21a.html",
"slides": "/media/icml-2021/Slides/10243.pdf"
},
{
"id": "site_8b5fc7e68f",
"title": "A Scalable Second Order Method for Ill-Conditioned Matrix Completion from Few Samples",
"author": "Christian K\u00fcmmerle, Claudio Mayrink Verdun",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9411",
"proceeding": "http://proceedings.mlr.press/v139/kummerle21a.html",
"slides": "/media/icml-2021/Slides/9411.pdf"
},
{
"id": "site_66bf3be8cd",
"title": "A Second look at Exponential and Cosine Step Sizes: Simplicity, Adaptivity, and Performance",
"author": "Xiaoyu Li, Zhenxun Zhuang, Francesco Orabona",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9527",
"proceeding": "http://proceedings.mlr.press/v139/li21z.html",
"slides": ""
},
{
"id": "site_61d570ab61",
"title": "A Sharp Analysis of Model-based Reinforcement Learning with Self-Play",
"author": "Qinghua Liu, Tiancheng Yu, Yu Bai, Chi Jin",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8981",
"proceeding": "http://proceedings.mlr.press/v139/liu21z.html",
"slides": ""
},
{
"id": "site_93ca74ca7c",
"title": "A Structured Observation Distribution for Generative Biological Sequence Prediction and Forecasting",
"author": "Eli N. Weinstein, Debora Marks",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9725",
"proceeding": "http://proceedings.mlr.press/v139/weinstein21a.html",
"slides": "/media/icml-2021/Slides/9725.pdf"
},
{
"id": "site_cc85feee38",
"title": "A Tale of Two Efficient and Informative Negative Sampling Distributions",
"author": "Shabnam Daghaghi, Tharun Medini, Nicholas Meisburger, Beidi Chen, Mengnan Zhao, Anshumali Shrivastava",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9735",
"proceeding": "http://proceedings.mlr.press/v139/daghaghi21a.html",
"slides": ""
},
{
"id": "site_948d47c5bd",
"title": "A Theory of Label Propagation for Subpopulation Shift",
"author": "Tianle Cai, Ruiqi Gao, Jason Lee, Qi Lei",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9441",
"proceeding": "http://proceedings.mlr.press/v139/cai21b.html",
"slides": "/media/icml-2021/Slides/9441.pdf"
},
{
"id": "site_f8ba1ddf35",
"title": "A Unified Generative Adversarial Network Training via Self-Labeling and Self-Attention",
"author": "Tomoki Watanabe, Paolo Favaro",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9517",
"proceeding": "http://proceedings.mlr.press/v139/watanabe21a.html",
"slides": ""
},
{
"id": "site_b9e49a7ecf",
"title": "A Unified Lottery Ticket Hypothesis for Graph Neural Networks",
"author": "Tianlong Chen, Yongduo Sui, Xuxi Chen, Aston Zhang, Zhangyang \u201cAtlas\u201d Wang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10503",
"proceeding": "http://proceedings.mlr.press/v139/chen21p.html",
"slides": ""
},
{
"id": "site_321b6a7868",
"title": "A Value-Function-based Interior-point Method for Non-convex Bi-level Optimization",
"author": "Risheng Liu, Xuan Liu, Xiaoming Yuan, Shangzhi Zeng, Jin Zhang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9581",
"proceeding": "http://proceedings.mlr.press/v139/liu21o.html",
"slides": ""
},
{
"id": "site_b6ed237407",
"title": "A Wasserstein Minimax Framework for Mixed Linear Regression",
"author": "Theo Diamandis, Yonina Eldar, Alireza Fallah, Farzan Farnia, Asuman Ozdaglar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8949",
"proceeding": "http://proceedings.mlr.press/v139/diamandis21a.html",
"slides": "/media/icml-2021/Slides/8949_293AXKB.pdf"
},
{
"id": "site_5418235f5e",
"title": "A Zeroth-Order Block Coordinate Descent Algorithm for Huge-Scale Black-Box Optimization",
"author": "HanQin Cai, Yuchen Lou, Daniel Mckenzie, Wotao Yin",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9407",
"proceeding": "http://proceedings.mlr.press/v139/cai21d.html",
"slides": "/media/icml-2021/Slides/9407.pdf"
},
{
"id": "site_44e66b8602",
"title": "A large-scale benchmark for few-shot program induction and synthesis",
"author": "Ferran Alet, Javier Lopez-Contreras, James Koppel, Maxwell Nye, Armando Solar-Lezama, Tomas Lozano-Perez, Leslie Kaelbling, Josh Tenenbaum",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9205",
"proceeding": "http://proceedings.mlr.press/v139/alet21a.html",
"slides": ""
},
{
"id": "site_3b7c565053",
"title": "A statistical perspective on distillation",
"author": "Aditya Menon, Ankit Singh Rawat, Sashank Jakkam Reddi, Seungyeon Kim, Sanjiv Kumar",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9065",
"proceeding": "http://proceedings.mlr.press/v139/menon21a.html",
"slides": "/media/icml-2021/Slides/9065.pdf"
},
{
"id": "site_540d6577cb",
"title": "A theory of high dimensional regression with arbitrary correlations between input features and target functions: sample complexity, multiple descent curves and a hierarchy of phase transitions",
"author": "Gabriel Mel, Surya Ganguli",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10415",
"proceeding": "http://proceedings.mlr.press/v139/mel21a.html",
"slides": ""
},
{
"id": "site_8b6e4e62a9",
"title": "ACE: Explaining cluster from an adversarial perspective",
"author": "Yang Lu, Timothy C Yu, Giancarlo Bonora, William Stafford Noble",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10155",
"proceeding": "http://proceedings.mlr.press/v139/lu21e.html",
"slides": ""
},
{
"id": "site_e3d86648a8",
"title": "ADOM: Accelerated Decentralized Optimization Method for Time-Varying Networks",
"author": "Dmitry Kovalev, Egor Shulgin, Peter Richtarik, Alexander Rogozin, Alexander Gasnikov",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10125",
"proceeding": "http://proceedings.mlr.press/v139/kovalev21a.html",
"slides": "/media/icml-2021/Slides/10125.pdf"
},
{
"id": "site_3a155ccaa4",
"title": "AGENT: A Benchmark for Core Psychological Reasoning",
"author": "Tianmin Shu, Abhishek Bhandwaldar, Chuang Gan, Kevin Smith, Shari Liu, Dan Gutfreund, Elizabeth Spelke, Josh Tenenbaum, Tomer Ullman",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10211",
"proceeding": "http://proceedings.mlr.press/v139/shu21a.html",
"slides": "/media/icml-2021/Slides/10211.pdf"
},
{
"id": "site_932714270a",
"title": "APS: Active Pretraining with Successor Features",
"author": "Hao Liu, Pieter Abbeel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9241",
"proceeding": "http://proceedings.mlr.press/v139/liu21b.html",
"slides": "/media/icml-2021/Slides/9241.pdf"
},
{
"id": "site_c13f43dbca",
"title": "ARMS: Antithetic-REINFORCE-Multi-Sample Gradient for Binary Variables",
"author": "Alek Dimitriev, Mingyuan Zhou",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9775",
"proceeding": "http://proceedings.mlr.press/v139/dimitriev21a.html",
"slides": "/media/icml-2021/Slides/9775.pdf"
},
{
"id": "site_b280da48a1",
"title": "ASAM: Adaptive Sharpness-Aware Minimization for Scale-Invariant Learning of Deep Neural Networks",
"author": "Jungmin Kwon, Jeongseop Kim, Hyunseo Park, In Kwon Choi",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9261",
"proceeding": "http://proceedings.mlr.press/v139/kwon21b.html",
"slides": ""
},
{
"id": "site_ab4df238e9",
"title": "Accelerate CNNs from Three Dimensions: A Comprehensive Pruning Framework",
"author": "Wenxiao Wang, Minghao Chen, Shuai Zhao, Long Chen, Jinming Hu, Haifeng Liu, Deng Cai, Xiaofei He, Wei Liu",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9081",
"proceeding": "http://proceedings.mlr.press/v139/wang21e.html",
"slides": ""
},
{
"id": "site_6d2a245213",
"title": "Accelerated Algorithms for Smooth Convex-Concave Minimax Problems with O(1/k^2) Rate on Squared Gradient Norm",
"author": "TaeHo Yoon, Ernest Ryu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10227",
"proceeding": "http://proceedings.mlr.press/v139/yoon21d.html",
"slides": ""
},
{
"id": "site_8fafeaf1b0",
"title": "Accelerating Feedforward Computation via Parallel Nonlinear Equation Solving",
"author": "Yang Song, Chenlin Meng, Renjie Liao, Stefano Ermon",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9397",
"proceeding": "http://proceedings.mlr.press/v139/song21a.html",
"slides": ""
},
{
"id": "site_00c917cc7e",
"title": "Accelerating Gossip SGD with Periodic Global Averaging",
"author": "Yiming Chen, Kun Yuan, Yingya Zhang, Pan Pan, Yinghui Xu, Wotao Yin",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8735",
"proceeding": "http://proceedings.mlr.press/v139/chen21y.html",
"slides": ""
},
{
"id": "site_5c6dc7fda3",
"title": "Accelerating Safe Reinforcement Learning with Constraint-mismatched Baseline Policies",
"author": "Jimmy Yang, Justinian Rosca, Karthik Narasimhan, Peter Ramadge",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8451",
"proceeding": "http://proceedings.mlr.press/v139/yang21i.html",
"slides": ""
},
{
"id": "site_e4f11e1a0a",
"title": "Acceleration via Fractal Learning Rate Schedules",
"author": "Naman Agarwal, Surbhi Goel, Cyril Zhang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9173",
"proceeding": "http://proceedings.mlr.press/v139/agarwal21a.html",
"slides": ""
},
{
"id": "site_042003b07f",
"title": "Accumulated Decoupled Learning with Gradient Staleness Mitigation for Convolutional Neural Networks",
"author": "Huiping Zhuang, Zhenyu Weng, Fulin Luo, Kar-Ann Toh, Haizhou Li, Zhiping Lin",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9061",
"proceeding": "http://proceedings.mlr.press/v139/zhuang21a.html",
"slides": ""
},
{
"id": "site_cffcbd2f12",
"title": "Accuracy on the Line: on the Strong Correlation Between Out-of-Distribution and In-Distribution Generalization",
"author": "John Miller, Rohan Taori, Aditi Raghunathan, Shiori Sagawa, Pang Wei Koh, Vaishaal Shankar, Percy Liang, Yair Carmon, Ludwig Schmidt",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9243",
"proceeding": "http://proceedings.mlr.press/v139/miller21b.html",
"slides": ""
},
{
"id": "site_38887012cf",
"title": "Accuracy, Interpretability, and Differential Privacy via Explainable Boosting",
"author": "Harsha Nori, Rich Caruana, Zhiqi Bu, Judy Hanwen Shen, Janardhan Kulkarni",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9575",
"proceeding": "http://proceedings.mlr.press/v139/nori21a.html",
"slides": ""
},
{
"id": "site_68dcc2ea59",
"title": "Accurate Post Training Quantization With Small Calibration Sets",
"author": "Itay Hubara, Yury Nahshan, Yair Hanani, Ron Banner, Daniel Soudry",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10173",
"proceeding": "http://proceedings.mlr.press/v139/hubara21a.html",
"slides": ""
},
{
"id": "site_816a4ce337",
"title": "Achieving Near Instance-Optimality and Minimax-Optimality in Stochastic and Adversarial Linear Bandits Simultaneously",
"author": "Chung-Wei Lee, Haipeng Luo, Chen-Yu Wei, Mengxiao Zhang, Xiaojin Zhang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9819",
"proceeding": "http://proceedings.mlr.press/v139/lee21h.html",
"slides": ""
},
{
"id": "site_cfd4edf3a5",
"title": "ActNN: Reducing Training Memory Footprint via 2-Bit Activation Compressed Training",
"author": "Jianfei Chen, Lianmin Zheng, Zhewei Yao, Dequan Wang, Ion Stoica, Michael Mahoney, Joseph E Gonzalez",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9443",
"proceeding": "http://proceedings.mlr.press/v139/chen21z.html",
"slides": "/media/icml-2021/Slides/9443.pdf"
},
{
"id": "site_dcf5ddbd6e",
"title": "Actionable Models: Unsupervised Offline Reinforcement Learning of Robotic Skills",
"author": "Yevgen Chebotar, Karol Hausman, Yao Lu, Ted Xiao, Dmitry Kalashnikov, Jacob Varley, Alexander Irpan, Benjamin Eysenbach, Ryan C Julian, Chelsea Finn, Sergey Levine",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9743",
"proceeding": "http://proceedings.mlr.press/v139/chebotar21a.html",
"slides": "/media/icml-2021/Slides/9743.pdf"
},
{
"id": "site_d31a3a7f0a",
"title": "Active Covering",
"author": "Heinrich Jiang, Afshin Rostamizadeh",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10019",
"proceeding": "http://proceedings.mlr.press/v139/jiang21i.html",
"slides": ""
},
{
"id": "site_1c15f778c3",
"title": "Active Deep Probabilistic Subsampling",
"author": "Hans van Gorp, Iris Huijben, Bastiaan Veeling, Nicola Pezzotti, Ruud J. G. van Sloun",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10593",
"proceeding": "http://proceedings.mlr.press/v139/van-gorp21a.html",
"slides": ""
},
{
"id": "site_a805efc037",
"title": "Active Feature Acquisition with Generative Surrogate Models",
"author": "Yang Li, Junier Oliva",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10533",
"proceeding": "http://proceedings.mlr.press/v139/li21p.html",
"slides": "/media/icml-2021/Slides/10533.pdf"
},
{
"id": "site_3106020e47",
"title": "Active Learning for Distributionally Robust Level-Set Estimation",
"author": "Yu Inatsu, Shogo Iwazaki, Ichiro Takeuchi",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8729",
"proceeding": "http://proceedings.mlr.press/v139/inatsu21a.html",
"slides": ""
},
{
"id": "site_360d802f54",
"title": "Active Learning of Continuous-time Bayesian Networks through Interventions",
"author": "Dominik Linzner, Heinz Koeppl",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9647",
"proceeding": "http://proceedings.mlr.press/v139/linzner21a.html",
"slides": "/media/icml-2021/Slides/9647.pdf"
},
{
"id": "site_0b31e54fc5",
"title": "Active Slices for Sliced Stein Discrepancy",
"author": "Wenbo Gong, Kaibo Zhang, Yingzhen Li, Jose Miguel Hernandez-Lobato",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10539",
"proceeding": "http://proceedings.mlr.press/v139/gong21a.html",
"slides": ""
},
{
"id": "site_cdab6f3ba3",
"title": "Active Testing: Sample-Efficient Model Evaluation",
"author": "Jannik Kossen, Sebastian Farquhar, Yarin Gal, Tom Rainforth",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9293",
"proceeding": "http://proceedings.mlr.press/v139/kossen21a.html",
"slides": "/media/icml-2021/Slides/9293_Kc9iMtj.pdf"
},
{
"id": "site_3ba4695948",
"title": "AdaXpert: Adapting Neural Architecture for Growing Data",
"author": "Shuaicheng Niu, Jiaxiang Wu, Guanghui Xu, Yifan Zhang, Yong Guo, Peilin Zhao, Peng Wang, Mingkui Tan",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8621",
"proceeding": "http://proceedings.mlr.press/v139/niu21a.html",
"slides": ""
},
{
"id": "site_df31605e9a",
"title": "Adapting to Delays and Data in Adversarial Multi-Armed Bandits",
"author": "Andr\u00e1s Gy\u00f6rgy, Pooria Joulani",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9277",
"proceeding": "http://proceedings.mlr.press/v139/gyorgy21a.html",
"slides": "/media/icml-2021/Slides/9277.pdf"
},
{
"id": "site_d21ee6f871",
"title": "Adapting to misspecification in contextual bandits with offline regression oracles",
"author": "Sanath Kumar Krishnamurthy, Vitor Hadad, Susan Athey",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10169",
"proceeding": "http://proceedings.mlr.press/v139/krishnamurthy21a.html",
"slides": ""
},
{
"id": "site_eb5bfc3877",
"title": "Adaptive Newton Sketch: Linear-time Optimization with Quadratic Convergence and Effective Hessian Dimensionality",
"author": "Jonathan Lacotte, Yifei Wang, Mert Pilanci",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9571",
"proceeding": "http://proceedings.mlr.press/v139/lacotte21a.html",
"slides": "/media/icml-2021/Slides/9571.pdf"
},
{
"id": "site_672946e0b1",
"title": "Adaptive Sampling for Best Policy Identification in Markov Decision Processes",
"author": "Aymen Al Marjani, Alexandre Proutiere",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9627",
"proceeding": "http://proceedings.mlr.press/v139/marjani21a.html",
"slides": "/media/icml-2021/Slides/9627.pdf"
},
{
"id": "site_66399fae00",
"title": "Additive Error Guarantees for Weighted Low Rank Approximation",
"author": "Aditya Bhaskara, Aravinda Kanchana Ruwanpathirana, Pruthuvi Maheshakya Wijewardena",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9981",
"proceeding": "http://proceedings.mlr.press/v139/bhaskara21a.html",
"slides": ""
},
{
"id": "site_a642e67fdd",
"title": "Addressing Catastrophic Forgetting in Few-Shot Problems",
"author": "Pauching Yap, Hippolyt Ritter, David Barber",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8817",
"proceeding": "http://proceedings.mlr.press/v139/yap21a.html",
"slides": "/media/icml-2021/Slides/8817.pdf"
},
{
"id": "site_a0e51bb9a5",
"title": "Adversarial Combinatorial Bandits with General Non-linear Reward Functions",
"author": "Yanjun Han, Yining Wang, Xi Chen",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8419",
"proceeding": "http://proceedings.mlr.press/v139/han21b.html",
"slides": ""
},
{
"id": "site_5606a02ca3",
"title": "Adversarial Dueling Bandits",
"author": "Aadirupa Saha, Tomer Koren, Yishay Mansour",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10433",
"proceeding": "http://proceedings.mlr.press/v139/saha21a.html",
"slides": "/media/icml-2021/Slides/10433.pdf"
},
{
"id": "site_19a50671cc",
"title": "Adversarial Multi Class Learning under Weak Supervision with Performance Guarantees",
"author": "Alessio Mazzetto, Cyrus Cousins, Dylan Sam, Stephen Bach, Eli Upfal",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9605",
"proceeding": "http://proceedings.mlr.press/v139/mazzetto21a.html",
"slides": ""
},
{
"id": "site_5b482df8f0",
"title": "Adversarial Option-Aware Hierarchical Imitation Learning",
"author": "Mingxuan Jing, Wenbing Huang, Fuchun Sun, Xiaojian Ma, Tao Kong, Chuang Gan, Lei Li",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8589",
"proceeding": "http://proceedings.mlr.press/v139/jing21a.html",
"slides": ""
},
{
"id": "site_d22fc5f420",
"title": "Adversarial Policy Learning in Two-player Competitive Games",
"author": "Wenbo Guo, Xian Wu, Sui Huang, Xinyu Xing",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9779",
"proceeding": "http://proceedings.mlr.press/v139/guo21b.html",
"slides": ""
},
{
"id": "site_9b7327c98b",
"title": "Adversarial Purification with Score-based Generative Models",
"author": "Jongmin Yoon, Sung Ju Hwang, Juho Lee",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10745",
"proceeding": "http://proceedings.mlr.press/v139/yoon21a.html",
"slides": "/media/icml-2021/Slides/10745.pdf"
},
{
"id": "site_c9528d9ff2",
"title": "Adversarial Robustness Guarantees for Random Deep Neural Networks",
"author": "Giacomo De Palma, Bobak T Kiani, Seth Lloyd",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8649",
"proceeding": "http://proceedings.mlr.press/v139/de-palma21a.html",
"slides": "/media/icml-2021/Slides/8649.pdf"
},
{
"id": "site_f67c73293b",
"title": "Affine Invariant Analysis of Frank-Wolfe on Strongly Convex Sets",
"author": "Thomas Kerdreux, Lewis Liu, Simon Lacoste-Julien, Damien Scieur",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9815",
"proceeding": "http://proceedings.mlr.press/v139/kerdreux21a.html",
"slides": ""
},
{
"id": "site_770855cc58",
"title": "Aggregating From Multiple Target-Shifted Sources",
"author": "Changjian Shui, Zijian Li, Jiaqi Li, Christian Gagne, Charles X. Ling, Boyu Wang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10163",
"proceeding": "http://proceedings.mlr.press/v139/shui21a.html",
"slides": "/media/icml-2021/Slides/10163.pdf"
},
{
"id": "site_2fd51cd017",
"title": "Agnostic Learning of Halfspaces with Gradient Descent via Soft Margins",
"author": "Spencer Frei, Yuan Cao, Quanquan Gu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10395",
"proceeding": "http://proceedings.mlr.press/v139/frei21a.html",
"slides": "/media/icml-2021/Slides/10395.pdf"
},
{
"id": "site_6f949d4d9c",
"title": "Align, then memorise: the dynamics of learning with feedback alignment",
"author": "Maria Refinetti, St\u00e9phane d'Ascoli, Ruben Ohana, Sebastian Goldt",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8673",
"proceeding": "http://proceedings.mlr.press/v139/refinetti21a.html",
"slides": ""
},
{
"id": "site_5bc67275a1",
"title": "Almost Optimal Anytime Algorithm for Batched Multi-Armed Bandits",
"author": "Tianyuan Jin, Jing Tang, Pan Xu, Keke Huang, Xiaokui Xiao, Quanquan Gu",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8491",
"proceeding": "http://proceedings.mlr.press/v139/jin21c.html",
"slides": ""
},
{
"id": "site_e2d8646606",
"title": "AlphaNet: Improved Training of Supernets with Alpha-Divergence",
"author": "Dilin Wang, Chengyue Gong, Meng Li, Qiang Liu, Vikas Chandra",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9165",
"proceeding": "http://proceedings.mlr.press/v139/wang21i.html",
"slides": "/media/icml-2021/Slides/9165.pdf"
},
{
"id": "site_218bf7db14",
"title": "Alternative Microfoundations for Strategic Classification",
"author": "Meena Jagadeesan, Celestine Mendler-D\u00fcnner, Moritz Hardt",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9047",
"proceeding": "http://proceedings.mlr.press/v139/jagadeesan21a.html",
"slides": ""
},
{
"id": "site_d7754badb7",
"title": "Amortized Conditional Normalized Maximum Likelihood: Reliable Out of Distribution Uncertainty Estimation",
"author": "Aurick Zhou, Sergey Levine",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9305",
"proceeding": "http://proceedings.mlr.press/v139/zhou21b.html",
"slides": "/media/icml-2021/Slides/9305.pdf"
},
{
"id": "site_c60465ef2f",
"title": "An Algorithm for Stochastic and Adversarial Bandits with Switching Costs",
"author": "Chlo\u00e9 Rouyer, Yevgeny Seldin, Nicol\u00f2 Cesa-Bianchi",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/9467",
"proceeding": "http://proceedings.mlr.press/v139/rouyer21a.html",
"slides": ""
},
{
"id": "site_0fd79729a0",
"title": "An End-to-End Framework for Molecular Conformation Generation via Bilevel Programming",
"author": "Minkai Xu, Wujie Wang, Shitong Luo, Chence Shi, Yoshua Bengio, Rafael Gomez-Bombarelli, Jian Tang",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/8721",
"proceeding": "http://proceedings.mlr.press/v139/xu21f.html",
"slides": "/media/icml-2021/Slides/8721.pdf"
},
{
"id": "site_64f1cf7a5e",
"title": "An Identifiable Double VAE For Disentangled Representations",
"author": "Graziano Mita, Maurizio Filippone, Pietro Michiardi",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10249",
"proceeding": "http://proceedings.mlr.press/v139/mita21a.html",
"slides": ""
},
{
"id": "site_4b633471f8",
"title": "An Information-Geometric Distance on the Space of Tasks",
"author": "Yansong Gao, Pratik Chaudhari",
"status": "Spotlight",
"track": "main",
"site": "https://icml.cc/virtual/2021/poster/10479",
"proceeding": "http://proceedings.mlr.press/v139/gao21a.html",
"slides": "/media/icml-2021/Slides/10479.pdf"