-
Notifications
You must be signed in to change notification settings - Fork 14
/
neurips_2020_accepted.txt
5699 lines (3800 loc) · 422 KB
/
neurips_2020_accepted.txt
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
Continuous Surface Embeddings
Natalia Neverova (Facebook AI Research) · David Novotny (Facebook AI Research) · Marc Szafraniec (Facebook AI Research) · Vasil Khalidov (Facebook AI Research) · Patrick Labatut (Facebook AI Research) · Andrea Vedaldi (University of Oxford / Facebook AI Research)
Improving model calibration with accuracy versus uncertainty optimization
Ranganath Krishnan (Intel Labs) · Omesh Tickoo (Intel)
Few-shot Image Generation via Self-Adaptation
Yijun Li (Adobe Research) · Richard Zhang (Adobe) · Jingwan (Cynthia) Lu (Adobe Research) · Eli Shechtman (Adobe Research, US)
Hausdorff Dimension, Heavy Tails, and Generalization in Neural Networks
Umut Simsekli (Institut Polytechnique de Paris/ University of Oxford) · Ozan Sener (Intel Labs) · George Deligiannidis (Oxford) · Murat Erdogdu (University of Toronto)
Quantitative Propagation of Chaos for SGD in Wide Neural Networks
Valentin De Bortoli (ENS Paris-Saclay) · Alain Durmus (ENS Paris Saclay) · Xavier Fontaine (ENS Paris-Saclay) · Umut Simsekli (Institut Polytechnique de Paris/ University of Oxford)
Stochastic Optimization for Performative Prediction
Celestine Mendler-Dünner (UC Berkeley) · Juan Perdomo (University of California, Berkeley) · Tijana Zrnic (UC Berkeley) · Moritz Hardt (University of California, Berkeley)
Explicit Regularisation in Gaussian Noise Injections
Alexander Camuto (University of Oxford & The Alan Turing Institute) · Matthew Willetts (University of Oxford) · Umut Simsekli (Institut Polytechnique de Paris/ University of Oxford) · Stephen J Roberts (University of Oxford) · Chris C Holmes (University of Oxford)
Dual Instrumental Variable Regression
Krikamol Muandet (Max Planck Institute for Intelligent Systems) · Arash Mehrjou (Max Planck Institute) · Si Kai Lee (Chicago Booth School of Business) · Anant Raj (Max Planck Institute for Intelligent Systems)
Maximum-Entropy Adversarial Data Augmentation for Improved Generalization and Robustness
Long Zhao (Rutgers University) · Ting Liu (Google) · Xi Peng (University of Delaware) · Dimitris Metaxas (Rutgers University)
Strongly Incremental Constituency Parsing with Graph Neural Networks
Kaiyu Yang (Princeton University) · Jia Deng (Princeton University)
AdaBelief Optimizer: Adapting Stepsizes by the Belief in Observed Gradients
Juntang Zhuang (Yale University) · Tommy Tang (University of Illinois Urbana-Champaign) · Sekhar C Tatikonda (Yale University) · Nicha Dvornek (Yale University) · Yifan Ding (University of Central Florida) · Xenophon Papademetris (Yale University) · James Duncan (Yale University)
A Simple and Practical Algorithm for Private Multivariate Mean and Covariance Estimation
Sourav Biswas (University of Waterloo) · Yihe Dong (Microsoft) · Gautam Kamath (University of Waterloo) · Jonathan Ullman (Northeastern University)
The Discrete Gaussian for Differential Privacy
Clement Canonne (Stanford University) · Gautam Kamath (University of Waterloo) · Thomas Steinke (IBM Almaden)
Private Identity Testing for High-Dimensional Distributions
Clement Canonne (Stanford) · Gautam Kamath (University of Waterloo) · Audra McMillan (Northeastern/Boston University) · Jonathan Ullman (Northeastern University) · Lydia Zakynthinou (Northeastern University)
Tree! I am no Tree! I am a low dimensional Hyperbolic Embedding
Rishi S Sonthalia (University of Michigan) · Anna Gilbert (University of Michigan)
Learning Kernel Tests Without Data Splitting
Jonas Kübler (MPI for Intelligent Systems, Tübingen) · Wittawat Jitkrittum (Max Planck Institute for Intelligent Systems) · Bernhard Schölkopf (MPI for Intelligent Systems) · Krikamol Muandet (Max Planck Institute for Intelligent Systems)
Generative View Synthesis: From Single-view Semantics to Novel-view Images
Tewodros Amberbir Habtegebrial (Technische Universität Kaiserslautern) · Varun Jampani (Google) · Orazio Gallo (NVIDIA Research) · Didier Stricker (DFKI)
Rational neural networks
Nicolas Boulle (University of Oxford) · Yuji Nakatsukasa (University of Oxford) · Alex J Townsend (Cornell University)
Adversarial Attack on Graph Neural Networks with Limited Node Access
Jiaqi Ma (University of Michigan) · Shuangrui Ding (University of Michigan) · Qiaozhu Mei (University of Michigan)
Quantifying Learnability and Describability of Visual Concepts Emerging in Representation Learning
Iro Laina (University of Oxford) · Ruth Fong (University of Oxford) · Andrea Vedaldi (Facebook AI Research and University of Oxford)
Space-Time Correspondence as a Contrastive Random Walk
Allan Jabri (UC Berkeley) · Andrew Owens (UC Berkeley) · Alexei Efros (UC Berkeley)
Relabeling Experience with Inverse RL: Hindsight Inference for Policy Improvement
Ben Eysenbach (Carnegie Mellon University) · XINYANG GENG (UC Berkeley) · Sergey Levine (UC Berkeley) · Russ Salakhutdinov (Carnegie Mellon University)
Self-supervised Co-Training for Video Representation Learning
Tengda Han (University of Oxford) · Weidi Xie (University of Oxford) · Andrew Zisserman (DeepMind & University of Oxford)
Rel3D: A Minimally Contrastive Benchmark or Grounding Spatial Relations in 3D
Ankit Goyal (Princeton University) · Kaiyu Yang (Princeton University) · Dawei Yang (University of Michigan) · Jia Deng (Princeton University)
Is normalization indispensable for training deep neural network?
Jie Shao (Fudan University) · Kai Hu (Carnegie Mellon University) · Changhu Wang (ByteDance.Inc) · Xiangyang Xue (Fudan University) · Bhiksha Raj (Carnegie Mellon University)
Efficient Exact Verification of Binarized Neural Networks
Kai Jia (MIT) · Martin Rinard (MIT)
ConvBERT: Improving BERT with Span-based Dynamic Convolution
Zi-Hang Jiang (National University of Singapore) · Weihao Yu (Sun Yat-sen University) · Daquan Zhou (National University of Singapore) · Yunpeng Chen (Yitu Technology) · Jiashi Feng (National University of Singapore) · Shuicheng Yan (National University of Singapore)
On the Value of Out-of-Distribution Testing: An Example of Goodhart's Law
Damien Teney (University of Adelaide) · Ehsan Abbasnejad (University of Adelaide) · Kushal Kafle (Rochester Institute of Technology) · Robik Shrestha (Rochester Institute of Technology) · Christopher Kanan (PAIGE.AI / RIT / CornellTech) · Anton van den Hengel (University of Adelaide)
Labelling unlabelled videos from scratch with multi-modal self-supervision
Yuki Asano (University of Oxford) · Mandela Patrick (University of Oxford) · Christian Rupprecht (University of Oxford) · Andrea Vedaldi (University of Oxford / Facebook AI Research)
Sanity-Checking Pruning Methods: Random Tickets can Win the Jackpot
Jingtong Su (Peking University) · Yihang Chen (Peking University) · Tianle Cai (Peking University) · Tianhao Wu (Peking University) · Ruiqi Gao (Peking University) · Liwei Wang (Peking University) · Jason Lee (Princeton University)
On the equivalence of molecular graph convolution and molecular wave function with poor basis set
Masashi Tsubaki (National Institute of Advanced Industrial Science and Technology (AIST)) · Teruyasu Mizoguchi (University of Tokyo)
Generative 3D Part Assembly via Dynamic Graph Learning
佳磊 黄 (Peking University) · Guanqi Zhan (Peking University) · Qingnan Fan (Stanford University) · Kaichun Mo (Stanford University) · Lin Shao (Stanford University) · Baoquan Chen (Shandong University) · Leonidas J Guibas (stanford.edu) · Hao Dong (Peking University)
Prophet Attention: Predicting Attention with Future Attention for Improved Image Captioning
Fenglin Liu (Peking University) · Xuancheng Ren (Peking University) · Xian Wu (Tencent Medical AI Lab) · Shen Ge (Tencent Medical AI Lab) · Wei Fan (Tencent) · Yuexian Zou (Peking University) · Xu Sun (Peking University)
Heuristic Adversarial Domain Adaptation
shuhao cui (ict cas) · Xuan Jin (Alibaba Turing Lab, Alibaba Group) · Shuhui Wang (VIPL,ICT,Chinese academic of science) · Yuan He (Alibaba Group) · Qingming Huang (University of Chinese Academy of Sciences)
A Measure-Theoretic Approach to Kernel Conditional Mean Embeddings
Junhyung Park (MPI for Intelligent Systems, Tübingen) · Krikamol Muandet (Max Planck Institute for Intelligent Systems)
PLANS: Robust Program Learning from Neurally Inferred Specifications
Raphaël Dang-Nhu (ETH Zürich)
AOT: Appearance Optimal Transport Model for Face Swapping
Hao Zhu (Anhui University) · Chaoyou Fu (Institute of Automation, Chinese Academy of Sciences) · Qianyi Wu (Sensetime) · Wayne Wu (Tsinghua University) · Chen Qian (SenseTime) · Ran He (NLPR, CASIA)
Improved Variational Bayesian Phylogenetic Inference with Normalizing Flows
Cheng Zhang (Peking University)
The Adaptive Complexity of Maximizing a Gross Substitutes Valuation
Ron Kupfer (The Hebrew University of Jerusalem) · Sharon Qian (Harvard) · Eric Balkanski (Harvard University) · Yaron Singer (Harvard University)
Knowledge Distillation in Wide Neural Networks: Risk Bound, Data Efficiency and Imperfect Teacher
Guangda Ji (Peking University) · Zhanxing Zhu (Peking University)
Likelihood Regret: An Out-of-Distribution Detection Score For Variational Auto-encoder
Zhisheng Xiao (The University of Chicago) · Qing Yan (University of Chicago) · Yali Amit (University of Chicago)
Bayesian Probabilistic Numerical Integration with Tree-Based Models
Harrison Zhu (Imperial College London) · Xing Liu (University of Cambridge) · Ruya Kang (ETH Zurich) · Zhichao Shen (University of Oxford) · Seth Flaxman (Imperial College London) · Francois-Xavier Briol (University of Cambridge)
Every View Counts: Cross-View Consistency in 3D Object Detection with Hybrid-Cylindrical-Spherical Voxelization
Qi Chen (Johns Hopkins University) · Lin Sun (Samsung, Stanford, HKUST) · Ernest Cheung (Samsung) · Alan Yuille (Johns Hopkins University)
Provably Efficient Exploration for RL with Unsupervised Learning
Fei Feng (University of California, Los Angeles) · Ruosong Wang (Carnegie Mellon University) · Wotao Yin (Alibaba US, DAMO Academy) · Simon Du (Institute for Advanced Study) · Lin Yang (UCLA)
Probabilistic Time Series Forecasting with Shape and Temporal Diversity
Vincent LE GUEN (CNAM, Paris, France) · Nicolas THOME (Cnam (Conservatoire national des arts et métiers))
Decision-Making with Auto-Encoding Variational Bayes
Romain Lopez (UC Berkeley) · Pierre Boyeau (UC Berkeley) · Nir Yosef (UC Berkeley) · Michael Jordan (UC Berkeley) · Jeffrey Regier (University of Michigan)
RetroXpert: Decompose Retrosynthesis Prediction like A Chemist
Chaochao Yan (The University of Texas at Arlington) · Qianggang Ding (Tsinghua University) · Peilin Zhao (Tencent AI Lab) · Shuangjia Zheng (SUN YAT-SEN UNIVERSITY) · JINYU YANG (The University of Texas at Arlington) · Yang Yu (Tencent AI Lab) · Junzhou Huang (University of Texas at Arlington / Tencent AI Lab)
DVERGE: Diversifying Vulnerabilities for Enhanced Robust Generation of Ensembles
Huanrui Yang (Duke University) · Jingyang Zhang (Duke University) · Hongliang Dong (Duke University) · Nathan Inkawhich (Duke University) · Andrew Gardner (Radiance Technologies) · Andrew Touchet (Radiance Technologies) · Wesley Wilkes (Radiance Technologies) · Heath Berry (Radiance Technologies) · Hai Li (Duke University)
CaSPR: Learning Canonical Spatiotemporal Point Cloud Representations
Davis Rempe (Stanford University) · Tolga Birdal (Technical University of Munich) · Yongheng Zhao (University of Padova) · Zan Gojcic (ETH Zürich) · Srinath Sridhar (Stanford University) · Leonidas J Guibas (stanford.edu)
Uncertainty-Aware Learning for Zero-Shot Semantic Segmentation
Ping Hu (Boston University) · Stan Sclaroff (Boston University) · Kate Saenko (Boston University)
Task-Oriented Feature Distillation
Linfeng Zhang (Tsinghua University) · Yukang Shi (Xi’an Jiaotong University) · Zuoqiang Shi (Tsinghua University) · Kaisheng Ma (Tsinghua University) · Chenglong Bao (Tsinghua university)
Information Theoretic Counterfactual Learning from Missing-Not-At-Random Feedback
Zifeng Wang (Tsinghua-Berkeley Shenzhen Institute, Tsinghua University) · Xi Chen (Tencent) · Rui Wen (Tencent) · Shao-Lun Huang (Tsinghua-Berkeley Shenzhen Institute) · Ercan E Kuruoglu (Tsinghua-Berkeley Shenzhen Institute) · Yefeng Zheng (Tencent)
Sample Complexity of Uniform Convergence for Multicalibration
Eliran Shabat (Tel-Aviv University) · Lee Cohen (Tel Aviv University) · Yishay Mansour (Tel Aviv University / Google)
What if Neural Networks had SVDs?
Alexander Mathiasen (Aarhus University) · Frederik Hvilshøj (Aarhus University) · Jakob Rødsgaard Jørgensen (Aarhus University) · Anshul Nasery (Indian Institute of Technology) · Davide Mottin (Aarhus University)
Self-paced Contrastive Learning with Hybrid Memory for Domain Adaptive Object Re-ID
Yixiao Ge (The Chinese University of Hong Kong) · Dapeng Chen (The Chinese University of Hong Kong) · Feng Zhu (SenseTime Research) · Rui Zhao (The Chinese University of Hong Kong) · hongsheng Li (cuhk)
Learning from Positive and Unlabeled Data with Arbitrary Positive Shift
Zayd Hammoudeh (University of Oregon) · Daniel Lowd (University of Oregon)
Kalman Filtering Attention for User Behavior Modeling in CTR Prediction
Hu Liu (JD.com) · Jing LU (Business Growth BU JD.com) · Xiwei Zhao (JD.com) · Sulong Xu (JD.com) · Hao Peng (JD.com) · Yutong Liu (JD.com) · Zehua Zhang (JD.com) · Jian Li (JD.com) · Junsheng Jin (JD.com) · Yongjun Bao (JD.com) · Weipeng Yan (JD.com)
Towards Crowdsourced Training of Large Neural Networks using Decentralized Mixture-of-Experts
Maksim Riabinin (Yandex, Higher School of Economics) · Anton Gusev (none)
Adversarially Robust Few-Shot Learning: A Meta-Learning Approach
Micah Goldblum (University of Maryland) · Liam Fowl (University of Maryland) · Tom Goldstein (University of Maryland)
Human Parsing Based Texture Transfer from Single Image to 3D Human via Cross-View Consistency
Fang Zhao (Inception Institute of Artificial Intelligence) · Shengcai Liao (Inception Institute of Artificial Intelligence) · Kaihao Zhang (Australian National University) · Ling Shao (Inception Institute of Artificial Intelligence)
One-bit Supervision for Image Classification
hengtong hu (Hefei University of Technology) · Lingxi Xie (Huawei Noah's Ark Lab) · Zewei Du (Huawei Noah's Ark Lab) · Richang Hong (Hefei University of Technology) · Qi Tian (Huawei Noah’s Ark Lab)
Towards Theoretically Understanding Why Sgd Generalizes Better Than Adam in Deep Learning
Pan Zhou (Salesforce) · Jiashi Feng (National University of Singapore) · Chao Ma (Princeton University) · Caiming Xiong (Salesforce) · Steven Chu Hong Hoi (Salesforce) · Weinan E (Princeton University)
RNNPool: Efficient Non-linear Pooling for RAM Constrained Inference
Oindrila Saha (Microsoft Research) · Venkata Aditya Kusupati (University of Washington) · Harsha Vardhan Simhadri (Microsoft Research) · Manik Varma (Microsoft Research India) · Prateek Jain (Microsoft Research)
Self-Supervised Relationship Probing
Jiuxiang Gu (Adobe Research) · Jason Kuen (Adobe Research) · Shafiq Joty (Nanyang Technological University) · Jianfei Cai (Monash University) · Vlad Morariu (Adobe Research) · Handong Zhao (Adobe Research) · Tong Sun (Adobe Research)
Scientific Control for Reliable Neural Network Pruning
Yehui Tang (Peking University) · Yunhe Wang (Huawei Noah's Ark Lab) · Yixing Xu (Huawei Noah's Ark Lab) · Dacheng Tao (University of Sydney) · Chunjing XU (Huawei Technologies) · Chao Xu (Peking University) · Chang Xu (University of Sydney)
Group Contextual Encoding for 3D Point Clouds
Xu Liu (The University of Tokyo) · Chengtao Li (MIT) · Jian Wang (Carnegie Mellon University) · Jingbo Wang (Peking University) · Boxin Shi (Peking University) · Xiaodong He (JD AI research)
Adversarial Style Mining for One-Shot Unsupervised Domain Adaptation
Yawei Luo (Zhejiang University) · Ping Liu (UTS) · Tao Guan (Huazhong University of Science and Technology) · Junqing Yu (Huazhong University of Science & Technology) · Yi Yang (UTS)
Pruning Filter in Filter
Fanxu Meng (Harbin Institute of Technology, Shenzhen) · Hao Cheng (Tencent) · Ke Li (Tencent) · Huixiang Luo (Tencent) · Xiaowei Guo (Tencent Youtu Lab) · Guangming Lu (Harbin Institute of Technology, Shenzhen) · Xing Sun (Tencent)
Learning to Orient Surfaces by Self-supervised Spherical CNNs
Riccardo Spezialetti (University of Bologna) · Federico Stella (Università di Bologna) · Marlon Marcon (Federal University of Technology - Paraná) · Luciano Silva (UFPR) · Samuele Salti (University of Bologna) · Luigi Di Stefano (University of Bologna)
Beta Representation: Looking into Pedestrian Detection from Another Perspective
Zixuan Xu (Peking University) · Banghuai Li (Megvii) · Ye Yuan (Megvii) · Anhong Dang (Peking University)
Continual Learning with Node-Importance based Adaptive Group Sparse Regularization
Sangwon Jung (SKKU) · Hongjoon Ahn (Sunkyunkwan University) · Sungmin Cha (Sungkyunkwan University) · Taesup Moon (Sungkyunkwan University (SKKU))
HOI Analysis: Integrating and Decomposing Human-Object Interaction
Yong-Lu Li (Shanghai Jiao Tong University) · Xinpeng Liu (Shanghai Jiao Tong University) · Xiaoqian Wu (Shanghai Jiaotong University) · Yizhuo Li (Shanghai Jiao Tong University) · Cewu Lu (Shanghai Jiao Tong University)
Generalised Bayesian Filtering via Sequential Monte Carlo
Ayman Boustati (University of Warwick) · Omer Deniz Akyildiz (University of Warwick) · Theodoros Damoulas (University of Warwick & The Alan Turing Institute) · Adam Johansen (University of Warwick)
A Ranking-based, Balanced Loss Function for Both Classification and Localisation in Object Detection
Kemal Oksuz (Middle East Technical University) · Baris Can Cam (Roketsan) · Emre Akbas (Middle East Technical University) · Sinan Kalkan (Middle East Technical University)
StratLearner: Learning a Strategy for Misinformation Prevention in Social Networks
Guangmo Tong (University of Delaware)
PAC-Bayes Analysis Beyond the Usual Bounds
Omar Rivasplata (DeepMind & UCL) · Ilja Kuzborskij (DeepMind) · Csaba Szepesvari (DeepMind / University of Alberta) · John Shawe-Taylor (UCL)
Fast and Flexible Temporal Point Processes with Triangular Maps
Oleksandr Shchur (Technical University of Munich) · Nicholas Gao (Technical University of Munich) · Marin Biloš (Technical University of Munich) · Stephan Günnemann (Technical University of Munich)
Residual Force Control for Agile Human Behavior Imitation and Extended Motion Synthesis
Ye Yuan (Carnegie Mellon University) · Kris Kitani (Carnegie Mellon University)
Finite-Sample Analysis of Stochastic Approximation Using Smooth Convex Envelopes
Zaiwei Chen (Georgia Institute of Technology) · Siva Theja Maguluri (Georgia Institute of Technology) · Sanjay Shakkottai (University of Texas at Austin) · Karthikeyan Shanmugam (IBM Research, NY)
High-Dimensional Learning with CART
Jason Klusowski (Princeton University)
Learning About Objects by Learning to Interact with Them
Martin Lohmann (Allen Institute for Artificial Intelligence) · Jordi Salvador (Allen Institute for AI) · Aniruddha Kembhavi (Allen Institute for Artificial Intelligence (AI2)) · Roozbeh Mottaghi (Allen Institute for Artificial Intelligence)
Softmax Deep Double Deterministic Policy Gradients
Ling Pan (Tsinghua University) · Qingpeng Cai (Alibaba Group) · Longbo Huang (IIIS, Tsinghua Univeristy)
LAPAR: Linearly-Assembled Pixel-Adaptive Regression Network for Single Image Super-resolution and Beyond
Wenbo Li (Chinese University of Hong Kong) · Kun Zhou (Shenzhen SmartMore Technology Co., Ltd.) · Lu Qi (The Chinese University of Hong Kong) · Nianjuan Jiang (Shenzhen SmartMore Technology Co., Ltd.) · Jiangbo Lu (Shenzhen SmartMore Technology Co., Ltd.) · Jiaya Jia (CUHK)
Unfolding the Alternating Optimization for Blind Super Resolution
zhengxiong luo (中国科学院自动化所) · Yan Huang (CRIPAC, CASIA) · Shang Li (CASIA) · Liang Wang (NLPR, China) · Tieniu Tan (Chinese Academy of Sciences)
Challenging SATNet and its Ability to Solve the Symbol Grounding Problem
Oscar Chang (Columbia University) · Lampros Flokas (Columbia University) · Hod Lipson (Columbia University) · Michael Spranger (Sony)
Lightweight Generative Adversarial Networks for Text-Guided Image Manipulation
Bowen Li (University of Oxford) · Xiaojuan Qi (The University of Hong Kong) · Philip Torr (University of Oxford) · Thomas Lukasiewicz (University of Oxford)
Practical Quasi-Newton Methods for Training Deep Neural Networks
Donald Goldfarb (Columbia University) · Yi Ren (Columbia University) · Achraf Bahamou (Columbia University)
RANet: Region Attention Network for Semantic Segmentation
Dingguo Shen (Shenzhen University) · Yuanfeng Ji (City University of Hong Kong) · Ping Li (The Hong Kong Polytechnic University) · Yi Wang (Shenzhen University) · Di Lin (Tianjin University)
HM-ANN: Efficient Billion-Point Nearest Neighbor Search on Heterogeneous Memory
Jie Ren (University of California, Merced) · Minjia Zhang (Microsoft) · Dong Li (University of California, Merced)
Online Adaptation for Consistent Mesh Reconstruction in the Wild
Xueting Li (University of California, Merced) · Sifei Liu (NVIDIA) · Shalini De Mello (NVIDIA) · Kihwan Kim (NVIDIA) · Xiaolong Wang (UCSD/UC Berkeley) · Ming-Hsuan Yang (Google / UC Merced) · Jan Kautz (NVIDIA)
Neural Message Passing for Multi-Relational Ordered and Recursive Hypergraphs
Naganand Yadati (Indian Institute of Science)
PIE-NET: Parametric Inference of Point Cloud Edges
Xiaogang Wang (Beihang University) · Yuelang Xu (Tsinghua University) · Kai Xu (National University of Defense Technology) · Andrea Tagliasacchi (Google Research, Brain) · Bin Zhou (State Key Laboratory of Virtual Reality Technology and Systems, School of Computer Science and Engineering,Beihang University) · Ali Mahdavi-Amiri (Simon Fraser University) · Hao Zhang (Simon Fraser University)
Kernel Based Progressive Distillation for Adder Neural Networks
Yixing Xu (Huawei Noah's Ark Lab) · Yunhe Wang (Huawei Noah's Ark Lab) · Xinghao Chen (Huawei Noah's Ark Lab) · Wei Zhang (Noah's Ark Lab, Huawei Inc.) · Chunjing XU (Huawei Technologies) · Chang Xu (University of Sydney)
Self-Supervised Learning by Cross-Modal Audio-Video Clustering
Humam Alwassel (KAUST) · Dhruv Mahajan (Facebook) · Bruno Korbar (Facebook) · Lorenzo Torresani (Facebook AI) · Bernard Ghanem (KAUST) · Du Tran (Facebook AI)
Statistical and Topological Properties of Sliced Probability Divergences
Kimia Nadjahi (Télécom ParisTech) · Alain Durmus (ENS Paris Saclay) · Lénaïc Chizat (CNRS) · Soheil Kolouri (HRL Laboratories LLC) · Shahin Shahrampour (Texas A&M University) · Umut Simsekli (Institut Polytechnique de Paris/ University of Oxford)
UWSOD: Toward Fully-Supervised-Level Performance Weakly Supervised Object Detection
Yunhang Shen (Xiamen University) · Rongrong Ji (Xiamen University, China) · Zhiwei Chen (Xiamen University) · Yongjian Wu (Tencent Technology (Shanghai) Co.,Ltd) · Feiyue Huang (Tencent)
Breaking the Sample Size Barrier in Model-Based Reinforcement Learning with a Generative Model
Gen Li (Tsinghua University) · Yuting Wei (Carnegie Mellon University) · Yuejie Chi (CMU) · Yuantao Gu (Tsinghua University) · Yuxin Chen (Princeton University)
Task-Robust Model-Agnostic Meta-Learning
Liam Collins (University of Texas at Austin) · Aryan Mokhtari (UT Austin) · Sanjay Shakkottai (University of Texas at Austin)
Efficient Projection-free Algorithms for Saddle Point Problems
Cheng Chen (Shanghai Jiao Tong University) · Luo Luo (The Hong Kong University of Science and Technology) · Weinan Zhang (Shanghai Jiao Tong University) · Yong Yu (Shanghai Jiao Tong Unviersity)
Learning Multi-Agent Coordination for Enhancing Target Coverage in Directional Sensor Networks
Jing Xu (Peking University) · Fangwei Zhong (Peking University) · Yizhou Wang (Peking University)
Extrapolation Towards Imaginary 0-Nearest Neighbour and Its Improved Convergence Rate
Akifumi Okuno (RIKEN AIP) · Hidetoshi Shimodaira (Kyoto University / RIKEN AIP)
The Diversified Ensemble Neural Network
Shaofeng Zhang (University of Electronic Science and Technology of China) · Meng Liu ( university of electronic science and technology of china) · Junchi Yan (Shanghai Jiao Tong University)
Searching for Low-Bit Weights in Quantized Neural Networks
zhaohui yang (peking university) · Yunhe Wang (Huawei Noah's Ark Lab) · Kai Han (Huawei Noah's Ark Lab) · Chunjing XU (Huawei Technologies) · Chao Xu (Peking University) · Dacheng Tao (University of Sydney) · Chang Xu (University of Sydney)
Lamina-specific neuronal properties promote robust, stable signal propagation in feedforward networks
Dongqi Han (Okinawa Institute of Science and Technology) · Erik De Schutter (OIST) · Sungho Hong (Okinawa Institute of Science and Technology)
Deep Diffusion-Invariant Wasserstein Distributional Classification
Sung Woo Park+ (Chung-Ang University) · Dong Wook Shu (Chung-Ang Univ., Korea) · Junseok Kwon (Chung-Ang Univ., Korea)
The Generalized Lasso with Nonlinear Observations and Generative Priors
Zhaoqiang Liu (National University of Singapore) · Jonathan Scarlett (National University of Singapore)
Learning to Learn Variational Semantic Memory
Xiantong Zhen (The University of Texas at Arlington) · Yingjun Du (University of Amsterdam) · Huan Xiong (Mohamed bin Zayed University of Artificial Intelligence (MBZUAI)) · Qiang Qiu (Purdue University) · Cees Snoek (University of Amsterdam) · Ling Shao (Inception Institute of Artificial Intelligence)
Consistent Structural Relation Learning for Zero-Shot Segmentation
Peike Li (University of Technology Sydney) · Yunchao Wei (UIUC) · Yi Yang (UTS)
Submodular Maximization Through Barrier Functions
Ashwinkumar Badanidiyuru (Google Research) · Amin Karbasi (Yale) · Ehsan Kazemi (Google) · Jan Vondrak (Stanford University)
Estimating the Effects of Continuous-valued Interventions using Generative Adversarial Networks
Ioana Bica (University of Oxford) · James Jordon (University of Oxford) · Mihaela van der Schaar (University of Cambridge)
Learning Loss for Test-Time Augmentation
Ildoo Kim (Kakao Brain) · Younghoon Kim (Sungshin Women's University) · Sungwoong Kim (Kakao Brain)
The Pitfalls of Simplicity Bias in Neural Networks
Harshay Shah (Microsoft Research) · Kaustav Tamuly (Microsoft Research) · Aditi Raghunathan (Stanford University) · Prateek Jain (Microsoft Research) · Praneeth Netrapalli (Microsoft Research)
Projection Efficient Subgradient Method and Optimal Nonsmooth Frank-Wolfe
Kiran Thekumparampil (Univ. of Illinois at Urbana-Champaign) · Prateek Jain (Microsoft Research) · Praneeth Netrapalli (Microsoft Research) · Sewoong Oh (University of Washington)
Least Squares Regression with Markovian Data: Fundamental Limits and Algorithms
Dheeraj Nagaraj (Massachusetts Institute of Technology) · Xian Wu (Stanford University) · Guy Bresler (MIT) · Prateek Jain (Microsoft Research) · Praneeth Netrapalli (Microsoft Research)
Differentially-Private Federated Contextual Bandits
Abhimanyu Dubey (MIT) · Alex `Sandy' Pentland (MIT)
Off-Policy Imitation Learning from Observations
Zhuangdi Zhu (Michigan State University) · Kaixiang Lin (Michigan State University) · Bo Dai (Google Brain) · Jiayu Zhou (Michigan State University)
Neural Non-Rigid Tracking
Aljaz Bozic (Technical University Munich) · Pablo Palafox (Technical University Munich) · Michael Zollhöfer (Stanford University) · Angela Dai (Technical University of Munich) · Justus Thies (Technical University of Munich) · Matthias Niessner (Technical University of Munich)
Accelerating Training of Transformer-Based Language Models with Progressive Layer Dropping
Minjia Zhang (Microsoft) · Yuxiong He (Microsoft)
Deep Wiener Deconvolution: Wiener Meets Deep Learning for Image Deblurring
Jiangxin Dong (Max Planck Institute for Informatics) · Stefan Roth (TU Darmstadt) · Bernt Schiele (Max Planck Institute for Informatics)
AdaTune: Adaptive Tensor Program Compilation Made Efficient
Menghao Li (Microsoft) · Minjia Zhang (Microsoft) · Chi Wang (Microsoft Research) · Mingqin Li (Microsoft)
Texture Interpolation for Probing Visual Perception
Jonathan Vacher (Albert Einstein College of Medicine) · Aida Davila (Albert Einstein College of Medicine) · Adam Kohn (Albert Einstein College of Medicine) · Ruben Coen-Cagli (Albert Einstein College of Medicine)
Stable and expressive recurrent vision models
Drew Linsley (Brown University) · Alekh K A (R V College of Engineering) · Lakshmi Narasimhan Govindarajan (Brown University) · Rex Liu (Brown University) · Thomas Serre (Brown University)
Deep reconstruction of strange attractors from time series
William Gilpin (Harvard University)
SDF-SRN: Learning Signed Distance 3D Object Reconstruction from Static Images
Chen-Hsuan Lin (Carnegie Mellon University) · Chaoyang Wang (Carnegie Mellon University) · Simon Lucey (CMU)
Evolving Graphical Planner: Contextual Global Planning for Vision-and-Language Navigation
Zhiwei Deng (Princeton University) · Karthik Narasimhan (Princeton University) · Olga Russakovsky (Princeton University)
Can Q-Learning with Graph Networks Learn a Generalizable Branching Heuristic for a SAT Solver?
Vitaly Kurin (University of Oxford) · Saad Godil (NVIDIA) · Shimon Whiteson (University of Oxford) · Bryan Catanzaro (NVIDIA)
Calibratable Adversarial Training: In-Situ Tradeoff between Robustness and Accuracy for Free
Haotao Wang (University of Texas at Austin) · Tianlong Chen (Unversity of Texas at Austin) · Shupeng Gui (University of Rochester) · TingKuei Hu (Texas A&M University) · Ji Liu (Kwai Inc.) · Zhangyang Wang (University of Texas at Austin)
Adaptive Gradient Quantization for Data-Parallel SGD
Fartash Faghri (University of Toronto) · Iman Tabrizian (University of Toronto) · Ilia Markov (IST Austria) · Dan Alistarh (IST Austria & Neural Magic Inc.) · Daniel Roy (Univ of Toronto & Vector) · Ali Ramezani-Kebrya (Vector Institute)
Modeling Continuous Stochastic Processes with Dynamic Normalizing Flows
Ruizhi Deng (Simon Fraser University) · Bo Chang (Borealis AI) · Marcus Brubaker (Borealis AI) · Greg Mori (Borealis AI) · Andreas Lehrmann (Borealis AI)
Implicit Neural Representations with Periodic Activation Functions
Vincent Sitzmann (Stanford University) · Julien Martel (Stanford University) · Alexander Bergman (Stanford University) · David Lindell (Stanford University) · Gordon Wetzstein (Stanford University)
Coupling-based Invertible Neural Networks Are Universal Diffeomorphism Approximators
Takeshi Teshima (The University of Tokyo) · Isao Ishikawa (Ehime University) · Koichi Tojo (RIKEN AIP) · Kenta Oono (The University of Tokyo, Preferred Networks Inc.) · Masahiro Ikeda (RIKEN AIP) · Masashi Sugiyama (RIKEN / University of Tokyo)
MetaSDF: Meta-Learning Signed Distance Functions
Vincent Sitzmann (Stanford University) · Eric Chan (Stanford University) · Richard Tucker (Google) · Noah Snavely (Cornell University and Google AI) · Gordon Wetzstein (Stanford University)
Graph Cross Networks with Vertex Infomax Pooling
Maosen Li (Shanghai Jiao Tong University) · Siheng Chen (MERL) · Ya Zhang (Cooperative Medianet Innovation Center, Shang hai Jiao Tong University) · Ivor Tsang (University of Technology, Sydney)
On the Trade-off between Adversarial and Backdoor Robustness
Cheng-Hsin Weng (National Tsing Hua University) · Yan-Ting Lee (National Tsing Hua University) · Shan-Hung (Brandon) Wu (National Tsing Hua University)
Dense Feature Composition for Zero-Shot Learning
Dat Huynh (Northeastern University) · Ehsan Elhamifar (Northeastern University)
Gradient Surgery for Multi-Task Learning
Tianhe Yu (Stanford University) · Saurabh Kumar (Stanford University) · Abhishek Gupta (UC Berkeley) · Sergey Levine (UC Berkeley) · Karol Hausman (Google Brain) · Chelsea Finn (Stanford)
Federated Principal Component Analysis.
Andreas Grammenos (University of Cambridge) · Rodrigo Mendoza Smith (ITAM) · Jon Crowcroft (University of Cambridge) · Cecilia Mascolo (University of Cambridge)
Fairness constraints can help exact inference in structured prediction
Kevin Bello (Purdue University) · Jean Honorio (Purdue University)
Proximity Operator of the Matrix Perspective Function and its Applications
Joong-Ho Won (Seoul National University)
A Class of Algorithms for General Instrumental Variable Models
Niki Kilbertus (Helmholtz AI) · Matt Kusner (University College London) · Ricardo Silva (University College London)
CodeCMR: Cross-Modal Retrieval For Function-Level Binary Source Code Matching
Zeping Yu (Tencent Keen Lab) · Wenxin Zheng (Shanghai JiaoTong University, Tencent KeenLab) · Jiaqi Wang (Tencent Keen Lab, Technical University of Munich) · Qiyi Tang (Tencent Keen Lab) · Sen Nie (Tencent Keen Lab) · Shi Wu (Tencent Keen Lab)
Dual-Free Stochastic Decentralized Optimization with Variance Reduction
Hadrien Hendrikx (INRIA - PSL) · Francis Bach (INRIA - Ecole Normale Superieure) · Laurent Massoulié (Inria)
Backpropagating Linearly Improves Transferability of Adversarial Examples
Yiwen Guo (ByteDance AI Lab) · Qizhang Li (ByteDance AI Lab) · Hao Chen (UC Davis)
Fast Adversarial Robustness Certification of Nearest Prototype Classifiers for Arbitrary Seminorms
Sascha Saralajew (Dr. Ing. h.c. F. Porsche AG) · Lars Holdijk (University of Amsterdam) · Thomas Villmann (University of Applied Sciences Mittweida)
Black-Box Certification with Randomized Smoothing: A Functional Optimization Based Framework
Dinghuai Zhang (Peking University) · Mao Ye (The University of Texas at Austin) · Chengyue Gong (Peking University) · Zhanxing Zhu (Peking University) · Qiang Liu (UT Austin)
The Strong Screening Rule for SLOPE
Johan Larsson (Lund University) · Malgorzata Bogdan (University of Wroclaw) · Jonas Wallin (Lund university)
Content Provider Dynamics and Coordination in Recommendation Ecosystems
Omer Ben-Porat (Technion – Israel Institute of Technology) · Itay Rosenberg (Technion) · Moshe Tennenholtz (Technion--Israel Institute of Technology)
DISK: Learning local features with policy gradient
Michał Tyszkiewicz (EPFL) · Pascal Fua (EPFL, Switzerland) · Eduard Trulls (Google)
Learning Individually Inferred Communication for Multi-Agent Cooperation
Ziluo Ding (Peking University) · Tiejun Huang (Peking University) · Zongqing Lu (Peking University)
Lifelong Policy Gradient Learning of Factored Policies for Faster Training Without Forgetting
Jorge Mendez (University of Pennsylvania) · Boyu Wang (University of Western Ontario) · Eric Eaton (University of Pennsylvania)
Hard Negative Mixing for Contrastive Learning
Yannis Kalantidis (Facebook) · Mert B Sariyildiz (Bilkent University) · Noe Pion (NAVER Labs Europe) · Philippe Weinzaepfel (NAVER LABS Europe) · Diane Larlus (Naver Labs Europe)
Robust Quantization: One Model to Rule Them All
Moran Shkolnik (Intel) · Brian Chmiel (Intel) · Ron Banner (Intel - Artificial Intelligence Products Group (AIPG)) · Gil Shomron (Technion - Israel Institute of Technology) · Yury Nahshan (Intel - Artificial Intelligence Products Group (AIPG)) · Alex Bronstein (Technion) · Uri Weiser (Technion - Israel Institute of Technology)
Projection Robust Wasserstein Distance and Riemannian Optimization
Tianyi Lin (UC Berkeley) · Chenyou Fan (The Chinese University of Hong Kong, Shenzhen) · Nhat Ho (University of Texas at Austin) · Marco Cuturi (Google Brain & CREST - ENSAE) · Michael Jordan (UC Berkeley)
Fixed-Support Wasserstein Barycenters: Computational Hardness and Fast Algorithm
Tianyi Lin (UC Berkeley) · Nhat Ho (University of Texas at Austin) · Xi Chen (New York University) · Marco Cuturi (Google Brain & CREST - ENSAE) · Michael Jordan (UC Berkeley)
Implicit Rank-Minimizing Autoencoder
Li Jing (Facebook AI Research) · Jure Zbontar (Facebook) · yann lecun (Facebook)
Exponential ergodicity of mirror-Langevin diffusions
Sinho Chewi (Massachusetts Institute of Technology) · Thibaut Le Gouic (Massachusetts Institute of Technology) · Chen Lu (Massachusetts Institute of Technology) · Tyler Maunu (Massachusetts Institute of Technology) · Philippe Rigollet (MIT) · Austin J Stromme (MIT)
Deep Reinforcement and InfoMax Learning
Bogdan Mazoure (McGill University) · Remi Tachet des Combes (Microsoft Research Montreal) · Thang Long DOAN (McGill) · Philip Bachman (Microsoft Research) · R Devon Hjelm (Microsoft Research)
A Group-Theoretic Framework for Data Augmentation
Shuxiao Chen (University of Pennsylvania) · Edgar Dobriban (University of Pennsylvania) · Jane Lee (University of Pennsylvania)
Approximation Based Variance Reduction for Reparameterization Gradients
Tomas Geffner (UMass Amherst) · Justin Domke (University of Massachusetts, Amherst)
Open Graph Benchmark: Datasets for Machine Learning on Graphs
Weihua Hu (Stanford University) · Matthias Fey (TU Dortmund University) · Marinka Zitnik (Harvard University) · Yuxiao Dong (Microsoft) · Hongyu Ren (Stanford University) · Bowen Liu (Stanford University) · Michele Catasta (Stanford University) · Jure Leskovec (Stanford University and Pinterest)
Online Fast Adaptation and Knowledge Accumulation: a New Approach to Continual Learning
Massimo Caccia (MILA) · Pau Rodriguez (CVC) · Oleksiy Ostapenko (University of Montreal, MILA) · Fabrice Normandin (MILA) · Min Lin (MILA) · Lucas Page-Caccia (McGill University) · Issam Hadj Laradji (University of British Columbia) · Irina Rish (Mila/UdeM) · Alexandre Lacoste (Element AI) · David Vázquez (Element AI) · Laurent Charlin (MILA / U.Montreal)
Knowledge Augmented Deep Neural Networks for Joint Facial Expression and Action Unit Recognition
Zijun Cui (Rensselaer Polytechnic Institute) · Tengfei Song (Southeast University) · Yuru Wang (Northeast Normal University) · Qiang Ji (Rensselaer Polytechnic Institute)
Memory Based Trajectory-conditioned Policies for Learning from Sparse Rewards
Yijie Guo (University of Michigan) · Jongwook Choi (University of Michigan) · Marcin Moczulski (Google Brain) · Shengyu Feng (University of Illinois Urbana Champaign) · Samy Bengio (Google Research, Brain Team) · Mohammad Norouzi (Google Brain) · Honglak Lee (Google / U. Michigan)
Agnostic Q-learning with Function Approximation in Deterministic Systems: Near-Optimal Bounds on Approximation Error and Sample Complexity
Simon Du (Institute for Advanced Study) · Jason Lee (Princeton University) · Gaurav Mahajan (University of California, San Diego) · Ruosong Wang (Carnegie Mellon University)
Swapping Autoencoder for Deep Image Manipulation
Taesung Park (UC Berkeley) · Jun-Yan Zhu (Adobe, CMU) · Oliver Wang (Adobe Research) · Jingwan Lu (Adobe Research) · Eli Shechtman (Adobe Research, US) · Alexei Efros (UC Berkeley) · Richard Zhang (Adobe)
ISTA-NAS: Efficient and Consistent Neural Architecture Search by Sparse Coding
Yibo Yang (Peking University) · Hongyang Li (Peking University) · Shan You (SenseTime) · Fei Wang (SenseTime) · Chen Qian (SenseTime) · Zhouchen Lin (Peking University)
Universal Domain Adaptation through Self Supervision
Kuniaki Saito (Boston University) · Donghyun Kim (Boston University) · Stan Sclaroff (Boston University) · Kate Saenko (Boston University)
OOD-MAML: Meta-Learning for Few-Shot Out-of-Distribution Detection and Classification
Taewon Jeong (KAIST) · Heeyoung Kim (KAIST)
Auxiliary Task Reweighting for Minimum-data Learning
Baifeng Shi (Peking University) · Judy Hoffman (Georgia Institute of Technology) · Kate Saenko (Boston University) · Trevor Darrell (UC Berkeley) · Huijuan Xu (University of California, Berkeley)
Theory-Inspired Path-Regularized Differential Network Architecture Search
Pan Zhou (Salesforce) · Caiming Xiong (Salesforce) · Richard Socher (Salesforce) · Steven Chu Hong Hoi (Salesforce)
Compositional Generalization by Learning Analytical Expressions
Qian Liu (Beihang University) · Shengnan An (Xi’an Jiaotong University) · Jian-Guang Lou (Microsoft) · Bei Chen (Microsoft Research Asia) · Zeqi Lin (Microsoft) · Yan Gao (Microsoft Research Asia, Beijing, China) · Bin Zhou (State Key Laboratory of Virtual Reality Technology and Systems, School of Computer Science and Engineering,Beihang University) · Nanning Zheng (Xi'an Jiaotong University) · Dongmei Zhang (Microsoft Research)
Unsupervised Learning of Visual Features by Contrasting Cluster Assignments
Mathilde Caron (INRIA / FAIR) · Ishan Misra (Facebook AI Research ) · Julien Mairal (Inria) · Priya Goyal (Facebook AI Research) · Piotr Bojanowski (Facebook) · Armand Joulin (Facebook AI research)
Blind Temporal Video Consistency via Deep Video Prior
Chenyang Lei (HKUST) · Yazhou Xing (HKUST) · Qifeng Chen (HKUST)
Dual T: Reducing Estimation Error for Transition Matrix in Label-noise Learning
Yu Yao (University of Sydney) · Tongliang Liu (The University of Sydney) · Bo Han (HKBU / RIKEN) · Mingming Gong (University of Melbourne) · Jiankang Deng (Imperial College London) · Gang Niu (RIKEN) · Masashi Sugiyama (RIKEN / University of Tokyo)
A mathematical model for automatic differentiation in machine learning
Jérôme Bolte (Université Toulouse 1) · Edouard Pauwels (IRIT)
Cross-scale Internal Graph Convolution Network for Image Super-Resolution
Shangchen Zhou (Nanyang Technological University) · Jiawei Zhang (Sensetime Research) · Wangmeng Zuo (Harbin Institute of Technology) · Chen Change Loy (Nanyang Technological University)
No-Regret Learning and Mixed Nash Equilibria: They Do Not Mix
Emmanouil-Vasileios Vlatakis-Gkaragkounis (Columbia University) · Lampros Flokas (Columbia University) · Thanasis Lianeas (National Technical University of Athens) · Panayotis Mertikopoulos (CNRS (French National Center for Scientific Research)) · Georgios Piliouras (Singapore University of Technology and Design)
LoopReg: Self-supervised Learning of Implicit Surface Correspondences, Pose and Shape for 3D Human Mesh Registration
Bharat Bhatnagar (MPI-INF) · Cristian Sminchisescu (Google Research) · Christian Theobalt (MPI Informatik) · Gerard Pons-Moll (MPII, Germany)
Learning to Extrapolate Knowledge: Transductive Few-shot Out-of-Graph Link Prediction
Jinheon Baek (KAIST) · Dong Bok Lee (KAIST) · Sung Ju Hwang (KAIST, AITRICS)
Near-Optimal Comparison Based Clustering
Michaël Perrot (Max Planck Institute for Intelligent Systems) · Pascal Esser (Technical University of Munich) · Debarghya Ghoshdastidar (Technical University Munich)
Active Invariant Causal Prediction: Experiment Selection through Stability
Juan Gamella (ETH Zürich) · Christina Heinze-Deml (ETH Zurich)
Neural Unsigned Distance Fields for Implicit Function Learning
Julian Chibane (Max Planck Institute for Informatics, University of Wuerzburg) · Mohamad Aymen mir (MPI Informatics, Saarland) · Gerard Pons-Moll (MPII, Germany)
BrainProp: How the brain can implement reward-based error backpropagation
Isabella Pozzi (Centrum Wiskunde & Informatica) · Sander Bohte (CWI) · Pieter Roelfsema (Netherlands Institute for Neuroscience)
Almost Optimal Model-Free Reinforcement Learningvia Reference-Advantage Decomposition
Zihan Zhang (Tsinghua University) · Yuan Zhou (UIUC) · Xiangyang Ji (Tsinghua University)
Robust large-margin learning in hyperbolic space
Melanie Weber (Princeton University) · Manzil Zaheer (Google Research) · Ankit Singh Rawat (Google Research) · Aditya Menon (Google) · Sanjiv Kumar (Google Research)
Adversarial Bandits with Corruptions: Regret Lower Bound and No-regret Algorithm
lin yang (UMass) · Mohammad Hajiesmaili (UMass Amherst) · Mohammad Sadegh Talebi (University of Copenhagen) · John C. S. Lui (The Chinese University of Hong Kong) · Wing Shing Wong (The Chinese University of Hong Kong)
Adaptive Online Estimation of Piecewise Polynomial Trends
Dheeraj Baby (UC Santa Barbara) · Yu-Xiang Wang (UC Santa Barbara)
A Dictionary Approach to Domain-Invariant Learning in Deep Networks
Ze Wang (Duke University) · Xiuyuan Cheng (Duke University) · Guillermo Sapiro (Duke University) · Qiang Qiu (Purdue University)
Parts-dependent Label Noise: Towards Instance-dependent Label Noise
Xiaobo Xia (The University of Sydney / Xidian University) · Tongliang Liu (The University of Sydney) · Bo Han (HKBU / RIKEN) · Nannan Wang (Xidian University) · Mingming Gong (University of Melbourne) · Haifeng Liu (Brain-Inspired Technology Co., Ltd.) · Gang Niu (RIKEN) · Dacheng Tao (University of Sydney) · Masashi Sugiyama (RIKEN / University of Tokyo)
Transferable Calibration with Lower Bias and Variance in Domain Adaptation
Ximei Wang (Tsinghua University) · Mingsheng Long (Tsinghua University) · Jianmin Wang (Tsinghua University) · Michael Jordan (UC Berkeley)
TSPNet: Hierarchical Feature Learning via Temporal Semantic Pyramid for Sign Language Translation
DONGXU LI (THE AUSTRALIAN NATIONAL UNIVERSITY) · Chenchen Xu (The Australian National University) · Xin Yu (University of Technology Sydney) · Kaihao Zhang (Australian National University) · Benjamin Swift (Australian National University) · Hanna Suominen (The Australian National University and Data61/CSIRO) · Hongdong Li (Australian National University)
SGD with shuffling: optimal rates without component convexity and large epoch requirements
Kwangjun Ahn (MIT) · Chulhee Yun (MIT) · Suvrit Sra (MIT)
Concentration Bounds for Co-occurrence Matrices of Markov Chains
Jiezhong Qiu (Tsinghua University) · Chi Wang (Microsoft Research) · Ben Liao (Tencent) · Richard Peng (Georgia Tech) · Jie Tang (Tsinghua University)
A Scalable MIP-based Method for Learning Optimal Multivariate Decision Trees
Haoran Zhu (University of Wisconsin-Madison) · Pavankumar Murali (IBM) · Dzung Phan (IBM Research, T. J. Watson Research Center) · Lam Nguyen (IBM Research, Thomas J. Watson Research Center) · Jayant Kalagnanam (IBM Research)
Restless-UCB, an Efficient and Low-complexity Algorithm for Online Restless Bandits
Siwei Wang (IIIS, Tsinghua University) · Longbo Huang (IIIS, Tsinghua Univeristy) · John C. S. Lui (The Chinese University of Hong Kong)
Meta-Neighborhoods
Siyuan Shan (UNC Chapel Hill) · Yang Li (UNC-Chapel Hill) · Junier Oliva (UNC - Chapel Hill)
ICNet: Intra-saliency Correlation Network for Co-Saliency Detection
Wen-Da Jin (Tianjin University) · Jun Xu (Nankai University) · Ming-Ming Cheng (Nankai University) · Yi Zhang (Tianjin University) · Wei Guo (Tianjin University)
Provably Consistent Partial-Label Learning
Lei Feng (Nanyang Technological University) · Jiaqi Lv (Southeast University) · Bo Han (HKBU / RIKEN) · Miao Xu (RIKEN AIP) · Gang Niu (RIKEN) · Xin Geng (Southeast University) · Bo An (Nanyang Technological University) · Masashi Sugiyama (RIKEN / University of Tokyo)
Learning to Utilize Shaping Rewards: A New Approach of Reward Shaping
Yujing Hu (NetEase Fuxi AI Lab) · Weixun Wang (Tianjin University) · Hangtian Jia (Netease Fuxi AI Lab) · Yixiang Wang (University of Science and Technology of China) · Yingfeng Chen (NetEase Fuxi AI Lab) · Jianye Hao (Tianjin University) · Feng Wu (University of Science and Technology of China) · Changjie Fan (NetEase Fuxi AI Lab)
Hierarchical Quantized Autoencoders
Will Williams (Speechmatics) · Sam Ringer (Speechmatics) · Tom Ash (Speechmatics) · David MacLeod (Speechmatics) · Jamie Dougherty (Speechmatics) · John Hughes (Speechmatics)
Sharper Generalization Bounds for Pairwise Learning
Yunwen Lei (Technical University of Kaiserslautern) · Antoine Ledent (TU Kaiserslautern) · Marius Kloft (TU Kaiserslautern)
Incorporating BERT into Parallel Sequence Decoding with Adapters
Junliang Guo (University of Science and Technology of China) · Zhirui Zhang (Alibaba Group Inc.) · Linli Xu (University of Science and Technology China) · Hao-Ran Wei (Alibaba DAMO Academy) · Boxing Chen (Alibaba Group) · Enhong Chen (University of Science and Technology of China)
Unsupervised Semantic Aggregation and Deformable Template Matching for Semi-Supervised Learning
Qi Wang (Northwestern Polytechnical University) · Tao Han (Northwestern Polytechnical University) · Junyu Gao (Northwestern Polytechnical University, Center for OPTical IMagery Analysis and Learning) · Yuan Yuan (Northwestern Polytechnical University)
ICE-BeeM: Identifiable Conditional Energy-Based Deep Models Based on Nonlinear ICA
Ilyes Khemakhem (UCL) · Ricardo Monti (UCL) · Diederik P. Kingma (Google) · Aapo Hyvarinen (University of Helsinki)
Effective Diversity in Population Based Reinforcement Learning
Jack Parker-Holder (University of Oxford) · Aldo Pacchiano (UC Berkeley) · Krzysztof M Choromanski (Google Brain Robotics) · Stephen J Roberts (University of Oxford)
RELATE: Physically Plausible Multi-Object Scene Synthesis Using Structured Latent Spaces
Sebastien Ehrhardt (University of Oxford) · Oliver Groth (Oxford Robotics Institute) · Aron Monszpart (Niantic) · Martin Engelcke (University of Oxford) · Ingmar Posner (Oxford University) · Niloy Mitra (UCL/Adobe) · Andrea Vedaldi (Facebook AI Research and University of Oxford)
Provably Efficient Online Hyperparameter Optimization with Population-Based Bandits
Jack Parker-Holder (University of Oxford) · Vu Nguyen (University of Oxford) · Stephen J Roberts (University of Oxford)
Stochastic Normalization
Zhi Kou (Tsinghua University) · Kaichao You (Tsinghua University) · Mingsheng Long (Tsinghua University) · Jianmin Wang (Tsinghua University)
A Boolean Task Algebra for Reinforcement Learning
Geraud Nangue Tasse (University of the Witwatersrand) · Steven James (University of the Witwatersrand) · Benjamin Rosman (University of the Witwatersrand / CSIR)
Consistent Hierarchical Multi-Label Classification Networks
Eleonora Giunchiglia (University of Oxford) · Thomas Lukasiewicz (University of Oxford)
Sharpened Generalization Bounds based on Conditional Mutual Information and an Application to Noisy, Iterative Algorithms
Mahdi Haghifam (University of Toronto) · Jeffrey Negrea (University of Toronto) · Ashish Khisti (University of Toronto) · Daniel Roy (Univ of Toronto & Vector) · Gintare Karolina Dziugaite (Element AI)
A new convergent variant of Q-learning with linear function approximation
Diogo Carvalho (GAIPS, INESC-ID) · Francisco S. Melo (IST/INESC-ID) · Pedro A. Santos (Instituto Superior Técnico)
Learning Disentangled Representations and Group Structure of Dynamical Environments
Robin Quessard (indust.ai) · Thomas Barrett (University of Oxford) · William Clements (indust.ai)
In search of robust measures of generalization
Gintare Karolina Dziugaite (Element AI) · Alexandre Drouin (Element AI) · Brady Neal (Mila) · Nitarshan Rajkumar (Mila, Université de Montréal) · Ethan Caballero (Mila) · Linbo Wang (University of Toronto) · Ioannis Mitliagkas (Mila & University of Montreal) · Daniel Roy (Univ of Toronto & Vector)
Continuous Regularized Wasserstein Barycenters
Lingxiao Li (MIT) · Aude Genevay (MIT) · Mikhail Yurochkin (IBM Research, MIT-IBM Watson AI Lab) · Justin M Solomon (MIT)
Graduated Assignment for Joint Multi-Graph Matching and Clustering with Application to Unsupervised Graph Matching Network Learning
Runzhong Wang (Shanghai Jiao Tong University) · Junchi Yan (Shanghai Jiao Tong University) · Xiaokang Yang (Shanghai Jiao Tong University)
Avoiding Side Effects in Complex Environments
Alex Turner (Oregon State University) · Neale Ratzlaff (Oregon State University) · Prasad Tadepalli (Oregon State University)
Adversarial Weight Perturbation Improves Adversarial Training
Dongxian Wu (Tsinghua University) · Yisen Wang (Peking University) · Shu-Tao Xia (Tsinghua University)
Self-Supervised Generative Adversarial Compression
Chong Yu (NVIDIA) · Chong Yu (Intel)
Permute-and-Flip: A new mechanism for differentially-private selection
Ryan McKenna (University of Massachusetts, Amherst) · Daniel Sheldon (University of Massachusetts Amherst)
SE(3)-Transformers: 3D Roto-Translation Equivariant Attention Networks
Fabian Fuchs (University of Oxford) · Daniel Worrall (University of Amsterdam) · Volker Fischer (Robert Bosch GmbH, Bosch Center for Artificial Intelligence) · Max Welling (University of Amsterdam / Qualcomm AI Research)
Adaptive Reduced Rank Regression
Qiong Wu (College of William and Mary) · Felix MF Wong (Google) · Yanhua Li ("Worcester Polytechnic Institute, USA") · Zhenming Liu (William and Mary) · Varun Kanade (University of Oxford)
Knowledge Transfer in Multi-Task Deep Reinforcement Learning for Continuous Control
Zhiyuan Xu (Syracuse University) · Kun Wu (Syracuse University) · Zhengping Che (DiDi AI Labs, Didi Chuxing) · Jian Tang (DiDi AI Labs, DiDi Chuxing) · Jieping Ye (Didi Chuxing)
Learning Deformable Tetrahedral Meshes for 3D Reconstruction
Jun Gao (University of Toronto) · Wenzheng Chen (University of Toronto) · Tommy Xiang (University of Toronto) · Alec Jacobson (University of Toronto) · Morgan McGuire (NVIDIA) · Sanja Fidler (University of Toronto)
Calibrating CNNs for Lifelong Learning
Pravendra Singh (Indian Institute of Technology Kanpur) · Vinay Kumar Verma (Indian Institute of Technology Kanpur) · Pratik Mazumder (Indian Institute of Technology, Kanpur) · Lawrence Carin (Duke University) · Piyush Rai (IIT Kanpur)
Generalized Focal Loss: Learning Qualified and Distributed Bounding Boxes for Dense Object Detection
Xiang Li (NJUST) · Wenhai Wang (Nanjing University) · Lijun Wu (Sun Yat-sen University) · Shuo Chen (Nanjing University of Science and Technology) · Xiaolin Hu (Tsinghua University) · Jun Li (Nanjing University of Science and Technology) · Jinhui Tang (Nanjing University of Science and Technology) · Jian Yang (Nanjing University of Science and Technology)
Provable Overlapping Community Detection in Weighted Graphs
Jimit Majmudar (University of Waterloo) · Stephen Vavasis (University of Waterloo )
GAN Memory with No Forgetting
Chunyuan Li (Microsoft Research) · Miaoyun Zhao (UNC) · Jianqiao Li (Duke University) · Sijia Wang (Duke University) · Lawrence Carin (Duke University)
Learning Black-Box Attackers with Transferable Priors and Query Feedback
Jiancheng YANG (Shanghai Jiao Tong University) · Yangzhou Jiang (Shanghai Jiaotong University) · Xiaoyang Huang (Shanghai Jiao Tong University) · Bingbing Ni (Shanghai Jiao Tong University) · Chenglong Zhao (Shanghai Jiao Tong University)
Hybrid Models for Learning to Branch
Prateek Gupta (University of Oxford) · Maxime Gasse (Polytechnique Montréal) · Elias Khalil (University of Toronto) · Pawan K Mudigonda (University of Oxford) · Andrea Lodi (École Polytechnique Montréal) · Yoshua Bengio (Mila / U. Montreal)
Adversarial Self-Supervised Contrastive Learning
Minseon Kim (KAIST) · Jihoon Tack (KAIST) · Sung Ju Hwang (KAIST, AITRICS)
The Power of Predictions in Online Control
Chenkai Yu (Tsinghua University) · Guanya Shi (Caltech) · Soon-Jo Chung (Caltech) · Yisong Yue (Caltech) · Adam Wierman (California Institute of Technology)
Multi-task Batch Reinforcement Learning with Metric Learning
Jiachen Li (University of California, San Diego) · Quan Vuong (University of California San Diego) · Shuang Liu (University of California, San Diego) · Minghua Liu (UCSD) · Kamil Ciosek (Microsoft) · Henrik Christensen (UC San Diego) · Hao Su (UCSD)
Coresets via Bilevel Optimization for Continual Learning and Streaming
Zalán Borsos (ETH Zurich) · Mojmir Mutny (ETH Zurich) · Andreas Krause (ETH Zurich)
Self-Adaptive Training: beyond Empirical Risk Minimization
Lang Huang (Peking University) · Chao Zhang (Peking University) · Hongyang Zhang (TTIC)
Domain Generalization for Medical Imaging Classification with Linear-Dependency Regularization
Haoliang Li (Nanyang Technological University) · Yufei Wang (Nanyang Technological University) · Renjie Wan (Nanyang Technological University) · Shiqi Wang (CityU) · Tie-Qiang Li (Karolinska Institute) · Alex Kot (Nanyang Technological University)
Passport-aware Normalization for Deep Model Protection
Jie Zhang (University of Science and Technology of China) · Dongdong Chen (Microsoft Cloud AI) · Jing Liao (City University of Hong Kong) · Weiming Zhang (University of Science and Technology of China) · Gang Hua (Wormpex AI Research) · Nenghai Yu (University of Science and Technology of China)
Position-based Scaled Gradient for Model Quantization and Sparse Training
Jangho Kim (Seoul National University) · KiYoon Yoo (Seoul National University) · Nojun Kwak (Seoul National University)
GPS-Net: Graph-based Photometric Stereo Network
Zhuokun Yao (Tianjin University) · Kun Li (Tianjin University) · Ying Fu (Beijing Institute of Technology) · Haofeng Hu (Tianjin University) · Boxin Shi (Peking University)
Cream of the Crop: Distilling Prioritized Paths For One-Shot Neural Architecture Search
Houwen Peng (Microsoft Research) · Hao Du (Microsoft Research) · Hongyuan Yu (MSRA) · QI LI (Tsinghua Univeristy) · Jing Liao (City University of Hong Kong) · Jianlong Fu (Microsoft Research)
Direct Feedback Alignment Scales to Modern Deep Learning Tasks and Architectures
Julien Launay (LightOn) · Iacopo Poli (LightOn) · François Boniface (LightOn) · Florent Krzakala (ENS Paris & Sorbonnes Université)
Explore Aggressively, Update Conservatively: Stochastic Extragradient Methods with Variable Stepsize Scaling
Yu-Guan Hsieh (Université Grenoble Alpes / École Normale Supérieure Paris) · Franck Iutzeler (Univ. Grenoble Alpes) · Jérôme Malick (CNRS and LJK) · Panayotis Mertikopoulos (CNRS (French National Center for Scientific Research))
Robust Meta-learning for Mixed Linear Regression with Small Batches
Weihao Kong (Stanford University) · Raghav Somani (University of Washington) · Sham Kakade (University of Washington) · Sewoong Oh (University of Washington)
Deep active inference agents using Monte-Carlo methods
Zafeirios Fountas (University College London; Emotech Labs) · Noor Sajid (University College London) · Pedro Mediano (University of Cambridge ) · Karl Friston (University College London)
ICAM: Interpretable Classification via Disentangled Representations and Feature Attribution Mapping
Cher Bass (King's College London) · Mariana da Silva (King's College London) · Carole Sudre (King's College London) · Petru-Daniel Tudosiu (King's College London) · Stephen Smith (FMRIB Centre - University of Oxford) · Emma Robinson (King's College)
Auditing Differentially Private Machine Learning: How Private is Private SGD?
Matthew Jagielski (Northeastern University) · Jonathan Ullman (Northeastern University) · Alina Oprea (Northeastern University)
Dual-Resolution Correspondence Networks
Xinghui Li (University of Oxford) · Kai Han (University of Oxford) · Shuda Li (University of Oxford) · Victor Prisacariu (University of Oxford)
Semialgebraic Optimization for Lipschitz Constants of ReLU Networks
Tong Chen (LAAS-CNRS) · Jean B Lasserre (lasserre@laas.fr) · Victor Magron (LAAS-CNRS) · Edouard Pauwels (IRIT)
Adversarial Training is a Form of Data-dependent Operator Norm Regularization
Kevin Roth (ETH Zurich) · Yannic Kilcher (ETH Zurich) · Thomas Hofmann (ETH Zurich)
Beyond accuracy: quantifying trial-by-trial behaviour of CNNs and humans by measuring error consistency
Robert Geirhos (University of Tübingen) · Kristof Meding (University of Tübingen & MPI for Intelligent Systems) · Felix A. Wichmann (University of Tübingen)
System Identification with Biophysical Constraints: A Circuit Model of the Inner Retina
Cornelius Schröder (University of Tübingen) · David Klindt (University of Tübingen) · Sarah Strauss (University of Tübingen) · Katrin Franke (University of Tübingen) · Matthias Bethge (University of Tübingen) · Thomas Euler (University of Tübingen) · Philipp Berens (University of Tübingen)
Demystifying Orthogonal Monte Carlo and Beyond
Han Lin (Columbia University) · Haoxian Chen (Columbia University) · Krzysztof M Choromanski (Google Brain Robotics) · Tianyi Zhang (Columbia University) · Clement Laroche (Columbia University)
HyNet: Local Descriptor with Hybrid Similarity Measure
Yurun Tian (Imperial College London) · Axel Barroso Laguna (Imperial College London) · Tony Ng (Imperial College London) · Vassileios Balntas (Scape Technologies) · Krystian Mikolajczyk (Imperial College London)
Modeling Shared responses in Neuroimaging Studies through MultiView ICA
Hugo Richard (INRIA) · Luigi Gresele (MPI for Intelligent Systems, Tübingen) · Aapo Hyvarinen (University of Helsinki) · Bertrand Thirion (INRIA) · Alexandre Gramfort (INRIA) · Pierre Ablin (INRIA)
Feature Importance Ranking for Deep Learning
Maksymilian Wojtas (University of Manchester) · Ke Chen (The University of Manchester)
Minimax Bounds for Generalized Linear Models
Kuan-Yun Lee (University of California, Berkeley) · Thomas Courtade (UC Berkeley)
Understanding Anomaly Detection with Deep Invertible Networks through Hierarchies of Distributions and Features
Robin T Schirrmeister (University Medical Center Freiburg) · Yuxuan Zhou (Stuttgart University) · Tonio Ball (Albert-Ludwigs-University) · Dan Zhang (Bosch Center for Artificial Intelligence)
A graph similarity for deep learning
Seongmin Ok (Samsung Advanced Institute of Technology)
Probabilistic Linear Solvers for Machine Learning
Jonathan Wenger (University of Tübingen) · Philipp Hennig (University of Tübingen and MPI for Intelligent Systems Tübingen)
Near-Optimal SQ Lower Bounds for Agnostically Learning Halfspaces and ReLUs under Gaussian Marginals
Ilias Diakonikolas (UW Madison) · Daniel Kane (UCSD) · Nikos Zarifis (University of Wisconsin-Madison)
FixMatch: Simplifying Semi-Supervised Learning with Consistency and Confidence
Kihyuk Sohn (NEC Laboratories America) · David Berthelot (Google Brain) · Nicholas Carlini (Google) · Zizhao Zhang (Google) · Han Zhang (Google) · Colin A Raffel (Google Brain) · Ekin Dogus Cubuk (Google Brain) · Alexey Kurakin (Google Brain) · Chun-Liang Li (Google)
MetaPerturb: Transferable Regularizer for Heterogeneous Tasks and Architectures
Jeong Un Ryu (KAIST) · JaeWoong Shin (KAIST) · Hae Beom Lee (KAIST) · Sung Ju Hwang (KAIST, AITRICS)
Noise2Same: Optimizing A Self-Supervised Bound for Image Denoising
Yaochen Xie (Texas A&M University) · Zhengyang Wang (Texas A&M University) · Shuiwang Ji (Texas A&M University)
Stochastic Variance Reduced Accelerated Dual Averaging for Finite-Sum Optimization
Chaobing Song (Tsinghua University) · Yong Jiang (Tsinghua) · Yi Ma (UC Berkeley)
How does Weight Correlation Affect Generalisation Ability of Deep Neural Networks?
Gaojie Jin (University of Liverpool) · Xinping Yi (University of Liverpool) · Liang Zhang (Institute of Software, Chinese Academy of Sciences) · Lijun Zhang (Institute of Software, Chinese Academy of Sciences) · Sven Schewe (University of Liverpool) · Xiaowei Huang (Liverpool University)
Measuring Robustness to Natural Distribution Shifts in Image Classification
Rohan Taori (University of California, Berkeley) · Achal Dave (Carnegie Mellon University) · Vaishaal Shankar (UC Berkeley) · Nicholas Carlini (Google) · Benjamin Recht (UC Berkeley) · Ludwig Schmidt (UC Berkeley)
Flows for simultaneous manifold learning and density estimation
Johann Brehmer (New York University) · Kyle Cranmer (New York University)
Statistical control for spatio-temporal MEG/EEG source imaging with desparsified mutli-task Lasso
Jerome-Alexis Chevalier (Inria Saclay Île-de-France) · Joseph Salmon (Université de Montpellier) · Alexandre Gramfort (INRIA) · Bertrand Thirion (INRIA)
On the Stability and Convergence of Robust Adversarial Reinforcement Learning: A Case Study on Linear Quadratic Systems
Kaiqing Zhang (University of Illinois at Urbana-Champaign (UIUC)) · Bin Hu (University of Illinois at Urbana-Champaign) · Tamer Basar (University of Illinois at Urbana-Champaign)
Robust compressed sensing of generative models
Ajil Jalal (University of Texas at Austin) · Liu Liu (University of Texas at Austin) · Alexandros Dimakis (University of Texas, Austin) · Constantine Caramanis (UT Austin)
Bayesian Deep Ensembles via the Neural Tangent Kernel
Bobby He (University of Oxford) · Balaji Lakshminarayanan (Google Brain) · Yee Whye Teh (University of Oxford, DeepMind)
Semantic Visual Navigation by Watching YouTube Videos
Matthew Chang (UIUC) · Arjun Gupta (University of Illinois at Urbana-Champaign) · Saurabh Gupta (UIUC)
A random matrix analysis of random Fourier features: beyond the Gaussian kernel, a precise phase transition, and the corresponding double descent
Zhenyu Liao (University of California, Berkeley) · Romain Couillet (Université Grenoble Alpes) · Michael W Mahoney (UC Berkeley)
Complementary Attention Self-Distillation for Weakly-Supervised Object Detection
Zeyi Huang (carnegie mellon university) · Yang Zou (Carnegie Mellon University) · B. V. K. Vijaya Kumar (CMU, USA) · Dong Huang (Carnegie Mellon University)
Inference Stage Optimization for Cross-scenario 3D Human Pose Estimation
Jianfeng Zhang (NUS) · Xuecheng Nie (NUS) · Jiashi Feng (National University of Singapore)
Robust Optimization for Fairness with Noisy Protected Groups
Serena Wang (Google) · Wenshuo Guo (UC Berkeley) · Harikrishna Narasimhan (Google Research) · Andrew Cotter (Google) · Maya Gupta (Google) · Michael Jordan (UC Berkeley)
Distributional Robustness with IPMs and links to Regularization and GANs
Hisham Husain (The Australian National University & Data61)
GPU-Accelerated Primal Learning for Extremely Fast Large-Scale Classification
John Halloran (University of California, Davis) · David M Rocke (University of California, Davis)
One-sample Guided Object Representation Disassembling
Zunlei Feng (Zhejiang University) · Yongming He (Zhejiang University) · Xinchao Wang (Stevens Institute of Technology) · Xin Gao (Alibaba Group) · Jie Lei (Zhejiang University) · Cheng Jin (Fudan University) · Mingli Song (Zhejiang University)
Compositional Generalization via Neural-Symbolic Stack Machines
Xinyun Chen (UC Berkeley) · Chen Liang (Google Brain) · Adams Wei Yu (Google Brain) · Dawn Song (UC Berkeley) · Dengyong Zhou (Google Brain)
Neural Methods for Point-wise Dependency Estimation
Yao-Hung Hubert Tsai (Carnegie Mellon University) · Han Zhao (Carnegie Mellon University) · Makoto Yamada (Kyoto University/RIKEN AIP) · Louis-Philippe Morency (Carnegie Mellon University) · Russ Salakhutdinov (Carnegie Mellon University)
Latent Template Induction with Gumbel-CRFs
Yao Fu (Columbia University) · Chuanqi Tan (Alibaba Group) · Bin Bi (Alibaba Group) · Mosha Chen (Alibaba DAMO Academy) · Yansong Feng (Peking University) · Alexander Rush (Cornell University)
Towards Playing Full MOBA Games with Deep Reinforcement Learning
Deheng Ye (Tencent) · Guibin Chen (Tencent) · Wen Zhang (Tencent) · chen sheng (qq) · Bo Yuan (Tencent) · Bo Liu (Tencent) · Jia Chen (Tencent) · Hongsheng Yu (Tencent) · Zhao Liu (Tencent) · Fuhao Qiu (Tencent AI Lab) · Liang Wang (Tencent) · Tengfei Shi (Tencent) · Yinyuting Yin (Tencent) · Bei Shi (Tencent AI Lab) · Lanxiao Huang (Tencent) · qiang fu (Tencent AI Lab) · Wei Yang (Tencent AI Lab) · Wei Liu (Tencent AI Lab)
DFIS: Dynamic and Fast Instance Segmentation
Xinlong Wang (University of Adelaide) · Rufeng Zhang (Tongji University) · Tao Kong (Bytedance) · Lei Li (ByteDance AI Lab) · Chunhua Shen (University of Adelaide)
Efficient Online Learning of Optimal Rankings: Dimensionality Reduction via Gradient Descent
Dimitris Fotakis (National Technical University of Athens) · Thanasis Lianeas (National Technical University of Athens) · Georgios Piliouras (Singapore University of Technology and Design) · Stratis Skoulakis (Singapore University of Technology and Design)
Error Bounds of Imitating Policies and Environments
Tian Xu (Nanjing University) · Ziniu Li (Nanjing University) · Yang Yu (Nanjing University)
Learning to Prove Theorems by Learning to Generate Theorems
Mingzhe Wang (Pinceton University) · Jia Deng (Princeton University)
How does this interaction affect me? Interpretable attribution for feature interactions
Michael Tsang (University of Southern California) · Sirisha Rambhatla (University of Southern California) · Yan Liu (University of Southern California)
Causal Discovery from Soft Interventions with Unknown Targets: Characterization and Learning
Amin Jaber (Purdue University) · Murat Kocaoglu (IBM Research) · Karthikeyan Shanmugam (IBM Research, NY) · Elias Bareinboim (Columbia University)
Rethinking Learnable Tree Filter for Generic Feature Transform
Lin Song (Xi'an Jiaotong University) · Yanwei Li (The Chinese University of Hong Kong) · Zhengkai Jiang (Institute of Automation,Chinese Academy of Sciences) · Zeming Li (Megvii(Face++) Inc) · Xiangyu Zhang (MEGVII Technology) · Hongbin Sun (Xi'an Jiaotong University) · Jian Sun (Megvii, Face++) · Nanning Zheng (Xi'an Jiaotong University)
BERT Loses Patience: Fast and Robust Inference with Early Exit
Wangchunshu Zhou (Beihang University) · Canwen Xu (Wuhan University) · Tao Ge (Microsoft Research Asia) · Julian McAuley (UCSD) · Ke Xu (Beihang University) · Furu Wei (Microsoft Research Asia)
Decisions, Counterfactual Explanations and Strategic Behavior
Stratis Tsirtsis (MPI-SWS) · Manuel Gomez Rodriguez (Max Planck Institute for Software Systems)
Synthesize, Execute and Debug: Learning to Repair for Neural Program Synthesis
Kavi Gupta (UC Berkeley) · Xinyun Chen (UC Berkeley) · Peter Ebert Christensen (Technical University of Denmark) · Dawn Song (UC Berkeley)
Post-training Iterative Hierarchical Data Augmentation for Deep Networks
Adil Khan (Innopolis University) · Khadija Fraz (Hazara University)
Stochastic Segmentation Networks: Modelling Spatially Correlated Aleatoric Uncertainty
Miguel Monteiro (Imperial College London) · Loic Le Folgoc (Imperial College London) · Daniel Coelho de Castro (Imperial College London) · Nick Pawlowski (Imperial College London) · Bernardo Marques (Imperial College London) · Konstantinos Kamnitsas (Imperial College London) · Mark van der Wilk (Imperial College) · Ben Glocker (Imperial College London)
MeshSDF: Differentiable Iso-Surface Extraction
Edoardo Remelli (EPFL) · Artem Lukoyanov (EPFL) · Stephan Richter (Intel Labs) · Benoit Guillard (EPFL) · Timur Bagautdinov (Facebook) · Pierre Baque (Neural Concept SA) · Pascal Fua (EPFL, Switzerland)
CogLTX: Applying BERT to Long Texts
Ming Ding (Tsinghua University) · Chang Zhou (Alibaba Group) · Hongxia Yang (Alibaba Group) · Jie Tang (Tsinghua University)
Attribute Prototype Network for Zero-Shot Learning
Wenjia Xu (University of Chinese Academy of Sciences) · Yongqin Xian (Max Planck Institute Informatics) · Jiuniu Wang (City University of Hong Kong) · Bernt Schiele (Max Planck Institute for Informatics) · Zeynep Akata (University of Tübingen)
Model Rubik’s Cube: Twisting Resolution, Depth and Width for TinyNets
Kai Han (Huawei Noah's Ark Lab) · Yunhe Wang (Huawei Noah's Ark Lab) · Qiulin Zhang (Beijing University of Posts and Telecommunications) · Wei Zhang (Noah's Ark Lab, Huawei Inc.) · Chunjing XU (Huawei Technologies) · Tong Zhang (Tencent AI Lab)
SIRI: Spatial Relation Induced Network For Spatial Description Resolution
peiyao wang (ShanghaiTech University) · Weixin Luo (Shanghaitech University) · Yanyu Xu (Shanghaitech University) · Haojie Li (Dalian University of Technology) · Shugong Xu (Shanghai University) · Jianyu Yang (Soochow University) · Shenghua Gao (Shanghaitech University)
Model Agnostic Multilevel Explanations
Karthikeyan Natesan Ramamurthy (IBM Research) · Bhanukiran Vinzamuri (IBM Research) · Yunfeng Zhang (IBM Research) · Amit Dhurandhar (IBM Research)
How to Learn a Useful Critic? Model-based Action-Gradient-Estimator Policy Optimization
Pierluca D'Oro (NNAISENSE, Politecnico di Milano) · Wojciech Jaśkowski (NNAISENSE SA)
Learning to Adapt to Evolving Domains
Hong Liu (Tsinghua University) · Mingsheng Long (Tsinghua University) · Jianmin Wang (Tsinghua University) · Yu Wang (Tsinghua Univ.)
Path Integral Based Convolution and Pooling for Graph Neural Networks
Zheng Ma (Princeton University) · Junyu Xuan (University of Technology Sydney) · Yu Guang Wang (University of New South Wales) · Ming Li (Zhejiang Normal University) · Pietro Liò (University of Cambridge)
Solver-in-the-Loop: Learning from Differentiable Physics to Interact with Iterative PDE-Solvers
Kiwon Um (Telecom Paris, IP Paris) · Yun (Raymond) Fei (Columbia University) · Philipp Holl (Technical University of Munich) · Robert Brand (Technical University of Munich) · Nils Thuerey (Technical University of Munich)
Universally Quantized Neural Compression
Eirikur Agustsson (Google) · Lucas Theis (Twitter)
Unsupervised Representation Learning by Invariance Propagation
Feng Wang (Tsinghua University) · Huaping Liu (Tsinghua University) · Di Guo (Tsinghua University) · Sun Fuchun (Tsinghua university)
FedSplit: an algorithmic framework for fast federated optimization
Reese Pathak (University of California, Berkeley) · Martin Wainwright (UC Berkeley)
Reinforcement Learning in Factored MDPs: Oracle-Efficient Algorithms and Tighter Regret Bounds for the Non-Episodic Setting
Ziping Xu (University of Michigan) · Ambuj Tewari (University of Michigan)
Higher-Order Certification For Randomized Smoothing
Jeet Mohapatra (MIT) · Ching-Yun Ko (MIT) · Tsui-Wei Weng (MIT) · Pin-Yu Chen (IBM Research AI) · Sijia Liu (MIT-IBM Watson AI Lab, IBM Research AI) · Luca Daniel (Massachusetts Institute of Technology)
Denoising Diffusion Probabilistic Models
Jonathan Ho (UC Berkeley) · Ajay Jain (UC Berkeley) · Pieter Abbeel (UC Berkeley & covariant.ai)
Finding the Homology of Decision Boundaries with Active Learning
Weizhi Li (Arizona State University) · Gautam Dasarathy (Arizona State University) · Karthikeyan Natesan Ramamurthy (IBM Research) · Visar Berisha (Arizona State University)
Ultrahyperbolic Representation Learning
Law Marc (University of Toronto) · Jos Stam (NVIDIA)
Modern Hopfield Networks and Attention for Immune Repertoire Classification
Michael Widrich (LIT AI Lab / University Linz) · Bernhard Schäfl (JKU Linz) · Milena Pavlović (Department of Informatics, University of Oslo) · Hubert Ramsauer (LIT AI Lab, Institute for Machine Learning, Johannes Kepler University Linz, Austria) · Lukas Gruber (Johannes Kepler University) · Markus Holzleitner (LIT AI Lab / University Linz) · Johannes Brandstetter (LIT AI Lab / University Linz) · Geir Kjetil Sandve (Department of Informatics, University of Oslo) · Victor Greiff (Department of Immunology, University of Oslo) · Sepp Hochreiter (LIT AI Lab / University Linz / IARAI) · Günter Klambauer (LIT AI Lab / University Linz)
HiPPO: Recurrent Memory with Optimal Polynomial Projections
Albert Gu (Stanford) · Tri Dao (Stanford University) · Stefano Ermon (Stanford) · Atri Rudra (University at Buffalo, SUNY) · Christopher Ré (Stanford)
Adversarial Attacks on Linear Contextual Bandits
Evrard Garcelon (Facebook AI Research) · Baptiste Roziere (Facebook AI Research) · Laurent Meunier (Dauphine University - FAIR Paris) · Jean Tarbouriech (Facebook AI Research Paris & Inria Lille) · Olivier Teytaud (Facebook) · Alessandro Lazaric (Facebook Artificial Intelligence Research) · Matteo Pirotta (Facebook AI Research)
Generating Correct Answers for Progressive Matrices Intelligence Tests
Niv Pekar (Tel Aviv University) · Yaniv Benny (Tel Aviv University) · Lior Wolf (Facebook AI Research)
Fair Multiple Decision Making Through Soft Interventions
Yaowei Hu (University of Arkansas) · Yongkai Wu (Clemson University) · Lu Zhang (University of Arkansas) · Xintao Wu (University of Arkansas)
Neural Sparse Representation for Image Restoration
Yuchen Fan (University of Illinois at Urbana-Champaign) · Jiahui Yu (UIUC) · Yiqun Mei (University of Illinois) · Yulun Zhang (Northeastern University) · Yun Fu (Northeastern University) · Ding Liu (Bytedance AI Lab) · Thomas Huang (University of Illinois)
Regularized linear autoencoders recover the principal components, eventually
Xuchan Bao (University of Toronto) · James Lucas (University of Toronto) · Sushant Sachdeva (University of Toronto) · Roger Grosse (University of Toronto)
Robust, Accurate Stochastic Optimization for Variational Inference
Akash Kumar Dhaka (Aalto University) · Alejandro Catalina (Aalto University) · Michael Andersen (Aalto University) · Måns Magnusson (Aalto University) · Jonathan Huggins (Boston University) · Aki Vehtari (Aalto University)
Robustness of Bayesian Neural Networks to Gradient-Based Adversarial Attacks
Ginevra Carbone (University of Trieste) · Matthew Wicker (University of Oxford) · Luca Laurenti (University of Oxford) · Andrea Patane' (University of Oxford) · Luca Bortolussi (University of Trieste, Department of Mathematics and Geosciences) · Guido Sanguinetti (University of Edinburgh)
On the Optimal Weighted ℓ2 Regularization in Overparameterized Linear Regression
Yi Wu (University of Toronto & Vector Institute) · Ji Xu (Columbia University)
First Order Constrained Optimization in Policy Space
Yiming Zhang (New York University) · Quan Vuong (University of California, San Diego) · Keith Ross (NYU Shanghai)
Neural Manifold Ordinary Differential Equations
Aaron Lou (Cornell University) · Derek Lim (Cornell University) · Isay Katsman (Cornell University) · Leo Huang (Cornell University) · Qingxuan Jiang (Cornell University) · Ser Nam Lim (Facebook AI) · Christopher De Sa (Cornell)
Theoretical Insights Into Multiclass Classification: A High-dimensional Asymptotic View
Christos Thrampoulidis (UCSB) · Samet Oymak (University of California Berkeley) · Mahdi Soltanolkotabi (University of Southern california)
A Closer Look at Accuracy vs. Robustness
Yao-Yuan Yang (UCSD) · Cyrus Rashtchian (UCSD) · Hongyang Zhang (TTIC) · Russ Salakhutdinov (Carnegie Mellon University) · Kamalika Chaudhuri (UCSD)
Parametric Instance Classification for Unsupervised Visual Feature learning
Yue Cao (Microsoft Research) · Zhenda Xie (Tsinghua University) · Bin Liu (Tsinghua University) · Yutong Lin (Xi'an Jiaotong University) · Zheng Zhang (MSRA) · Han Hu (Microsoft Research Asia)
The Smoothed Possibility of Social Choice
Lirong Xia (RPI)
Temporal Spike Sequence Learning via Backpropagation for Deep Spiking Neural Networks
Wenrui Zhang (University of California, Santa Barbara) · Peng Li (University of California, Santa Barbara)
Understanding Approximate Fisher Information for Fast Convergence of Natural Gradient Descent in Wide Neural Networks
Ryo Karakida (National Institute of Advanced Industrial Science and Technology) · Kazuki Osawa (Tokyo Institute of Technology)
Can the Brain Do Backpropagation?
Yuhang Song (University of Oxford) · Thomas Lukasiewicz (University of Oxford) · Zhenghua Xu (Hebei University of Technology) · Rafal Bogacz (University of Oxford)
Co-Tuning for Transfer Learning
Kaichao You (Tsinghua University) · Zhi Kou (Tsinghua University) · Mingsheng Long (Tsinghua University) · Jianmin Wang (Tsinghua University)
A Study on Encodings for Neural Architecture Search