forked from talengu/paper_seacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnips_papers.txt
11894 lines (11894 loc) · 973 KB
/
nips_papers.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
NIPS,neurips2020,2020,Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS 2020, December 6-12, 2020, virtual.
NIPS,neurips2020,2020,A graph similarity for deep learning.
NIPS,neurips2020,2020,An Unsupervised Information-Theoretic Perceptual Quality Metric.
NIPS,neurips2020,2020,Self-Supervised MultiModal Versatile Networks.
NIPS,neurips2020,2020,Benchmarking Deep Inverse Models over time, and the Neural-Adjoint method.
NIPS,neurips2020,2020,Off-Policy Evaluation and Learning for External Validity under a Covariate Shift.
NIPS,neurips2020,2020,Neural Methods for Point-wise Dependency Estimation.
NIPS,neurips2020,2020,Fast and Flexible Temporal Point Processes with Triangular Maps.
NIPS,neurips2020,2020,Backpropagating Linearly Improves Transferability of Adversarial Examples.
NIPS,neurips2020,2020,PyGlove: Symbolic Programming for Automated Machine Learning.
NIPS,neurips2020,2020,Fourier Sparse Leverage Scores and Approximate Kernel Learning.
NIPS,neurips2020,2020,Improved Algorithms for Online Submodular Maximization via First-order Regret Bounds.
NIPS,neurips2020,2020,Synbols: Probing Learning Algorithms with Synthetic Datasets.
NIPS,neurips2020,2020,Adversarially Robust Streaming Algorithms via Differential Privacy.
NIPS,neurips2020,2020,Trading Personalization for Accuracy: Data Debugging in Collaborative Filtering.
NIPS,neurips2020,2020,Cascaded Text Generation with Markov Transformers.
NIPS,neurips2020,2020,Improving Local Identifiability in Probabilistic Box Embeddings.
NIPS,neurips2020,2020,Permute-and-Flip: A new mechanism for differentially private selection.
NIPS,neurips2020,2020,Deep reconstruction of strange attractors from time series.
NIPS,neurips2020,2020,Reciprocal Adversarial Learning via Characteristic Functions.
NIPS,neurips2020,2020,Statistical Guarantees of Distributed Nearest Neighbor Classification.
NIPS,neurips2020,2020,Stein Self-Repulsive Dynamics: Benefits From Past Samples.
NIPS,neurips2020,2020,The Statistical Complexity of Early-Stopped Mirror Descent.
NIPS,neurips2020,2020,Algorithmic recourse under imperfect causal knowledge: a probabilistic approach.
NIPS,neurips2020,2020,Quantitative Propagation of Chaos for SGD in Wide Neural Networks.
NIPS,neurips2020,2020,A Causal View on Robustness of Neural Networks.
NIPS,neurips2020,2020,Minimax Classification with 0-1 Loss and Performance Guarantees.
NIPS,neurips2020,2020,How to Learn a Useful Critic? Model-based Action-Gradient-Estimator Policy Optimization.
NIPS,neurips2020,2020,Coresets for Regressions with Panel Data.
NIPS,neurips2020,2020,Learning Composable Energy Surrogates for PDE Order Reduction.
NIPS,neurips2020,2020,Efficient Contextual Bandits with Continuous Actions.
NIPS,neurips2020,2020,Achieving Equalized Odds by Resampling Sensitive Attributes.
NIPS,neurips2020,2020,Multi-Robot Collision Avoidance under Uncertainty with Probabilistic Safety Barrier Certificates.
NIPS,neurips2020,2020,Hard Shape-Constrained Kernel Machines.
NIPS,neurips2020,2020,A Closer Look at the Training Strategy for Modern Meta-Learning.
NIPS,neurips2020,2020,On the Value of Out-of-Distribution Testing: An Example of Goodhart's Law.
NIPS,neurips2020,2020,Generalised Bayesian Filtering via Sequential Monte Carlo.
NIPS,neurips2020,2020,Deterministic Approximation for Submodular Maximization over a Matroid in Nearly Linear Time.
NIPS,neurips2020,2020,Flows for simultaneous manifold learning and density estimation.
NIPS,neurips2020,2020,Simultaneous Preference and Metric Learning from Paired Comparisons.
NIPS,neurips2020,2020,Efficient Variational Inference for Sparse Deep Learning with Theoretical Guarantee.
NIPS,neurips2020,2020,Learning Manifold Implicitly via Explicit Heat-Kernel Learning.
NIPS,neurips2020,2020,Deep Relational Topic Modeling via Graph Poisson Gamma Belief Network.
NIPS,neurips2020,2020,One-bit Supervision for Image Classification.
NIPS,neurips2020,2020,What is being transferred in transfer learning?
NIPS,neurips2020,2020,Submodular Maximization Through Barrier Functions.
NIPS,neurips2020,2020,Neural Networks with Recurrent Generative Feedback.
NIPS,neurips2020,2020,Learning to Extrapolate Knowledge: Transductive Few-shot Out-of-Graph Link Prediction.
NIPS,neurips2020,2020,Exploiting weakly supervised visual patterns to learn from partial annotations.
NIPS,neurips2020,2020,Improving Inference for Neural Image Compression.
NIPS,neurips2020,2020,Neuron Merging: Compensating for Pruned Neurons.
NIPS,neurips2020,2020,FixMatch: Simplifying Semi-Supervised Learning with Consistency and Confidence.
NIPS,neurips2020,2020,Reinforcement Learning with Combinatorial Actions: An Application to Vehicle Routing.
NIPS,neurips2020,2020,Towards Playing Full MOBA Games with Deep Reinforcement Learning.
NIPS,neurips2020,2020,Rankmax: An Adaptive Projection Alternative to the Softmax Function.
NIPS,neurips2020,2020,Online Agnostic Boosting via Regret Minimization.
NIPS,neurips2020,2020,Causal Intervention for Weakly-Supervised Semantic Segmentation.
NIPS,neurips2020,2020,Belief Propagation Neural Networks.
NIPS,neurips2020,2020,Over-parameterized Adversarial Training: An Analysis Overcoming the Curse of Dimensionality.
NIPS,neurips2020,2020,Post-training Iterative Hierarchical Data Augmentation for Deep Networks.
NIPS,neurips2020,2020,Debugging Tests for Model Explanations.
NIPS,neurips2020,2020,Robust compressed sensing using generative models.
NIPS,neurips2020,2020,Fairness without Demographics through Adversarially Reweighted Learning.
NIPS,neurips2020,2020,Stochastic Latent Actor-Critic: Deep Reinforcement Learning with a Latent Variable Model.
NIPS,neurips2020,2020,Ridge Rider: Finding Diverse Solutions by Following Eigenvectors of the Hessian.
NIPS,neurips2020,2020,The route to chaos in routing games: When is price of anarchy too optimistic?
NIPS,neurips2020,2020,Online Algorithm for Unsupervised Sequential Selection with Contextual Information.
NIPS,neurips2020,2020,Adapting Neural Architectures Between Domains.
NIPS,neurips2020,2020,What went wrong and when? Instance-wise feature importance for time-series black-box models.
NIPS,neurips2020,2020,Towards Better Generalization of Adaptive Gradient Methods.
NIPS,neurips2020,2020,Learning Guidance Rewards with Trajectory-space Smoothing.
NIPS,neurips2020,2020,Variance Reduction via Accelerated Dual Averaging for Finite-Sum Optimization.
NIPS,neurips2020,2020,Tree! I am no Tree! I am a low dimensional Hyperbolic Embedding.
NIPS,neurips2020,2020,Deep Structural Causal Models for Tractable Counterfactual Inference.
NIPS,neurips2020,2020,Convolutional Generation of Textured 3D Meshes.
NIPS,neurips2020,2020,A Statistical Framework for Low-bitwidth Training of Deep Neural Networks.
NIPS,neurips2020,2020,Better Set Representations For Relational Reasoning.
NIPS,neurips2020,2020,AutoSync: Learning to Synchronize for Data-Parallel Distributed Deep Learning.
NIPS,neurips2020,2020,A Combinatorial Perspective on Transfer Learning.
NIPS,neurips2020,2020,Hardness of Learning Neural Networks with Natural Weights.
NIPS,neurips2020,2020,Higher-Order Spectral Clustering of Directed Graphs.
NIPS,neurips2020,2020,Primal-Dual Mesh Convolutional Neural Networks.
NIPS,neurips2020,2020,The Advantage of Conditional Meta-Learning for Biased Regularization and Fine Tuning.
NIPS,neurips2020,2020,Watch out! Motion is Blurring the Vision of Your Deep Neural Networks.
NIPS,neurips2020,2020,Sinkhorn Barycenter via Functional Gradient Descent.
NIPS,neurips2020,2020,Coresets for Near-Convex Functions.
NIPS,neurips2020,2020,Bayesian Deep Ensembles via the Neural Tangent Kernel.
NIPS,neurips2020,2020,Improved Schemes for Episodic Memory-based Lifelong Learning.
NIPS,neurips2020,2020,Adaptive Sampling for Stochastic Risk-Averse Learning.
NIPS,neurips2020,2020,Deep Wiener Deconvolution: Wiener Meets Deep Learning for Image Deblurring.
NIPS,neurips2020,2020,Discovering Reinforcement Learning Algorithms.
NIPS,neurips2020,2020,Taming Discrete Integration via the Boon of Dimensionality.
NIPS,neurips2020,2020,Blind Video Temporal Consistency via Deep Video Prior.
NIPS,neurips2020,2020,Simplify and Robustify Negative Sampling for Implicit Collaborative Filtering.
NIPS,neurips2020,2020,Model Selection for Production System via Automated Online Experiments.
NIPS,neurips2020,2020,On the Almost Sure Convergence of Stochastic Gradient Descent in Non-Convex Problems.
NIPS,neurips2020,2020,Automatic Perturbation Analysis for Scalable Certified Robustness and Beyond.
NIPS,neurips2020,2020,Adaptation Properties Allow Identification of Optimized Neural Codes.
NIPS,neurips2020,2020,Global Convergence and Variance Reduction for a Class of Nonconvex-Nonconcave Minimax Problems.
NIPS,neurips2020,2020,Model-Based Multi-Agent RL in Zero-Sum Markov Games with Near-Optimal Sample Complexity.
NIPS,neurips2020,2020,Conservative Q-Learning for Offline Reinforcement Learning.
NIPS,neurips2020,2020,Online Influence Maximization under Linear Threshold Model.
NIPS,neurips2020,2020,Ensembling geophysical models with Bayesian Neural Networks.
NIPS,neurips2020,2020,Delving into the Cyclic Mechanism in Semi-supervised Video Object Segmentation.
NIPS,neurips2020,2020,Asymmetric Shapley values: incorporating causal knowledge into model-agnostic explainability.
NIPS,neurips2020,2020,Understanding Deep Architecture with Reasoning Layer.
NIPS,neurips2020,2020,Planning in Markov Decision Processes with Gap-Dependent Sample Complexity.
NIPS,neurips2020,2020,Provably Good Batch Off-Policy Reinforcement Learning Without Great Exploration.
NIPS,neurips2020,2020,Detection as Regression: Certified Object Detection with Median Smoothing.
NIPS,neurips2020,2020,Contextual Reserve Price Optimization in Auctions via Mixed Integer Programming.
NIPS,neurips2020,2020,ExpandNets: Linear Over-parameterization to Train Compact Convolutional Networks.
NIPS,neurips2020,2020,FleXOR: Trainable Fractional Quantization.
NIPS,neurips2020,2020,The Implications of Local Correlation on Learning Some Deep Functions.
NIPS,neurips2020,2020,Learning to search efficiently for causally near-optimal treatments.
NIPS,neurips2020,2020,A Game Theoretic Analysis of Additive Adversarial Attacks and Defenses.
NIPS,neurips2020,2020,Posterior Network: Uncertainty Estimation without OOD Samples via Density-Based Pseudo-Counts.
NIPS,neurips2020,2020,Recurrent Quantum Neural Networks.
NIPS,neurips2020,2020,No-Regret Learning and Mixed Nash Equilibria: They Do Not Mix.
NIPS,neurips2020,2020,A Unifying View of Optimism in Episodic Reinforcement Learning.
NIPS,neurips2020,2020,Continuous Submodular Maximization: Beyond DR-Submodularity.
NIPS,neurips2020,2020,An Asymptotically Optimal Primal-Dual Incremental Algorithm for Contextual Linear Bandits.
NIPS,neurips2020,2020,Assessing SATNet's Ability to Solve the Symbol Grounding Problem.
NIPS,neurips2020,2020,A Bayesian Nonparametrics View into Deep Representations.
NIPS,neurips2020,2020,On the Similarity between the Laplace and Neural Tangent Kernels.
NIPS,neurips2020,2020,A causal view of compositional zero-shot recognition.
NIPS,neurips2020,2020,HiPPO: Recurrent Memory with Optimal Polynomial Projections.
NIPS,neurips2020,2020,Auto Learning Attention.
NIPS,neurips2020,2020,CASTLE: Regularization via Auxiliary Causal Graph Discovery.
NIPS,neurips2020,2020,Long-Tailed Classification by Keeping the Good and Removing the Bad Momentum Causal Effect.
NIPS,neurips2020,2020,Explainable Voting.
NIPS,neurips2020,2020,Deep Archimedean Copulas.
NIPS,neurips2020,2020,Re-Examining Linear Embeddings for High-Dimensional Bayesian Optimization.
NIPS,neurips2020,2020,UnModNet: Learning to Unwrap a Modulo Image for High Dynamic Range Imaging.
NIPS,neurips2020,2020,Thunder: a Fast Coordinate Selection Solver for Sparse Learning.
NIPS,neurips2020,2020,Neural Networks Fail to Learn Periodic Functions and How to Fix It.
NIPS,neurips2020,2020,Distribution Matching for Crowd Counting.
NIPS,neurips2020,2020,Correspondence learning via linearly-invariant embedding.
NIPS,neurips2020,2020,Learning to Dispatch for Job Shop Scheduling via Deep Reinforcement Learning.
NIPS,neurips2020,2020,On Adaptive Attacks to Adversarial Example Defenses.
NIPS,neurips2020,2020,Sinkhorn Natural Gradient for Generative Models.
NIPS,neurips2020,2020,Online Sinkhorn: Optimal Transport distances from sample streams.
NIPS,neurips2020,2020,Ultrahyperbolic Representation Learning.
NIPS,neurips2020,2020,Locally-Adaptive Nonparametric Online Learning.
NIPS,neurips2020,2020,Compositional Generalization via Neural-Symbolic Stack Machines.
NIPS,neurips2020,2020,Graphon Neural Networks and the Transferability of Graph Neural Networks.
NIPS,neurips2020,2020,Unreasonable Effectiveness of Greedy Algorithms in Multi-Armed Bandit with Many Arms.
NIPS,neurips2020,2020,Gamma-Models: Generative Temporal Difference Learning for Infinite-Horizon Prediction.
NIPS,neurips2020,2020,Deep Transformers with Latent Depth.
NIPS,neurips2020,2020,Neural Mesh Flow: 3D Manifold Mesh Generation via Diffeomorphic Flows.
NIPS,neurips2020,2020,Statistical control for spatio-temporal MEG/EEG source imaging with desparsified mutli-task Lasso.
NIPS,neurips2020,2020,A Scalable MIP-based Method for Learning Optimal Multivariate Decision Trees.
NIPS,neurips2020,2020,Efficient Exact Verification of Binarized Neural Networks.
NIPS,neurips2020,2020,Ultra-Low Precision 4-bit Training of Deep Neural Networks.
NIPS,neurips2020,2020,Bridging the Gap between Sample-based and One-shot Neural Architecture Search with BONAS.
NIPS,neurips2020,2020,On Numerosity of Deep Neural Networks.
NIPS,neurips2020,2020,Outlier Robust Mean Estimation with Subgaussian Rates via Stability.
NIPS,neurips2020,2020,Self-Supervised Relationship Probing.
NIPS,neurips2020,2020,Information Theoretic Counterfactual Learning from Missing-Not-At-Random Feedback.
NIPS,neurips2020,2020,Prophet Attention: Predicting Attention with Future Attention.
NIPS,neurips2020,2020,Language Models are Few-Shot Learners.
NIPS,neurips2020,2020,Margins are Insufficient for Explaining Gradient Boosting.
NIPS,neurips2020,2020,Fourier-transform-based attribution priors improve the interpretability and stability of deep learning models for genomics.
NIPS,neurips2020,2020,MomentumRNN: Integrating Momentum into Recurrent Neural Networks.
NIPS,neurips2020,2020,Marginal Utility for Planning in Continuous or Large Discrete Action Spaces.
NIPS,neurips2020,2020,Projected Stein Variational Gradient Descent.
NIPS,neurips2020,2020,Minimax Lower Bounds for Transfer Learning with Linear and One-hidden Layer Neural Networks.
NIPS,neurips2020,2020,SE(3)-Transformers: 3D Roto-Translation Equivariant Attention Networks.
NIPS,neurips2020,2020,On the equivalence of molecular graph convolution and molecular wave function with poor basis set.
NIPS,neurips2020,2020,The Power of Predictions in Online Control.
NIPS,neurips2020,2020,Learning Affordance Landscapes for Interaction Exploration in 3D Environments.
NIPS,neurips2020,2020,Cooperative Multi-player Bandit Optimization.
NIPS,neurips2020,2020,Tight First- and Second-Order Regret Bounds for Adversarial Linear Bandits.
NIPS,neurips2020,2020,Just Pick a Sign: Optimizing Deep Multitask Models with Gradient Sign Dropout.
NIPS,neurips2020,2020,A Loss Function for Generative Neural Networks Based on Watson's Perceptual Model.
NIPS,neurips2020,2020,Dynamic Fusion of Eye Movement Data and Verbal Narrations in Knowledge-rich Domains.
NIPS,neurips2020,2020,Scalable Multi-Agent Reinforcement Learning for Networked Systems with Average Reward.
NIPS,neurips2020,2020,Optimizing Neural Networks via Koopman Operator Theory.
NIPS,neurips2020,2020,SVGD as a kernelized Wasserstein gradient flow of the chi-squared divergence.
NIPS,neurips2020,2020,Adversarial Robustness of Supervised Sparse Coding.
NIPS,neurips2020,2020,Differentiable Meta-Learning of Bandit Policies.
NIPS,neurips2020,2020,Biologically Inspired Mechanisms for Adversarial Robustness.
NIPS,neurips2020,2020,Statistical-Query Lower Bounds via Functional Gradients.
NIPS,neurips2020,2020,Near-Optimal Reinforcement Learning with Self-Play.
NIPS,neurips2020,2020,Network Diffusions via Neural Mean-Field Dynamics.
NIPS,neurips2020,2020,Self-Distillation as Instance-Specific Label Smoothing.
NIPS,neurips2020,2020,Towards Problem-dependent Optimal Learning Rates.
NIPS,neurips2020,2020,Cross-lingual Retrieval for Iterative Self-Supervised Training.
NIPS,neurips2020,2020,Rethinking pooling in graph neural networks.
NIPS,neurips2020,2020,Pointer Graph Networks.
NIPS,neurips2020,2020,Gradient Regularized V-Learning for Dynamic Treatment Regimes.
NIPS,neurips2020,2020,Faster Wasserstein Distance Estimation with the Sinkhorn Divergence.
NIPS,neurips2020,2020,Forethought and Hindsight in Credit Assignment.
NIPS,neurips2020,2020,Robust Recursive Partitioning for Heterogeneous Treatment Effects with Uncertainty Quantification.
NIPS,neurips2020,2020,Rescuing neural spike train models from bad MLE.
NIPS,neurips2020,2020,Lower Bounds and Optimal Algorithms for Personalized Federated Learning.
NIPS,neurips2020,2020,Black-Box Certification with Randomized Smoothing: A Functional Optimization Based Framework.
NIPS,neurips2020,2020,Deep Imitation Learning for Bimanual Robotic Manipulation.
NIPS,neurips2020,2020,Stationary Activations for Uncertainty Calibration in Deep Learning.
NIPS,neurips2020,2020,Ensemble Distillation for Robust Model Fusion in Federated Learning.
NIPS,neurips2020,2020,Falcon: Fast Spectral Inference on Encrypted Data.
NIPS,neurips2020,2020,On Power Laws in Deep Ensembles.
NIPS,neurips2020,2020,Practical Quasi-Newton Methods for Training Deep Neural Networks.
NIPS,neurips2020,2020,Approximation Based Variance Reduction for Reparameterization Gradients.
NIPS,neurips2020,2020,Inference Stage Optimization for Cross-scenario 3D Human Pose Estimation.
NIPS,neurips2020,2020,Consistent feature selection for analytic deep neural networks.
NIPS,neurips2020,2020,Glance and Focus: a Dynamic Approach to Reducing Spatial Redundancy in Image Classification.
NIPS,neurips2020,2020,Information Maximization for Few-Shot Learning.
NIPS,neurips2020,2020,Inverse Reinforcement Learning from a Gradient-based Learner.
NIPS,neurips2020,2020,Bayesian Multi-type Mean Field Multi-agent Imitation Learning.
NIPS,neurips2020,2020,Bayesian Robust Optimization for Imitation Learning.
NIPS,neurips2020,2020,Multiview Neural Surface Reconstruction by Disentangling Geometry and Appearance.
NIPS,neurips2020,2020,Riemannian Continuous Normalizing Flows.
NIPS,neurips2020,2020,Attention-Gated Brain Propagation: How the brain can implement reward-based error backpropagation.
NIPS,neurips2020,2020,Asymptotic Guarantees for Generative Modeling Based on the Smooth Wasserstein Distance.
NIPS,neurips2020,2020,Online Robust Regression via SGD on the l1 loss.
NIPS,neurips2020,2020,PRANK: motion Prediction based on RANKing.
NIPS,neurips2020,2020,Fighting Copycat Agents in Behavioral Cloning from Observation Histories.
NIPS,neurips2020,2020,Tight Nonparametric Convergence Rates for Stochastic Gradient Descent under the Noiseless Linear Model.
NIPS,neurips2020,2020,Structured Prediction for Conditional Meta-Learning.
NIPS,neurips2020,2020,Optimal Lottery Tickets via Subset Sum: Logarithmic Over-Parameterization is Sufficient.
NIPS,neurips2020,2020,The Hateful Memes Challenge: Detecting Hate Speech in Multimodal Memes.
NIPS,neurips2020,2020,Stochasticity of Deterministic Gradient Descent: Large Learning Rate for Multiscale Objective Function.
NIPS,neurips2020,2020,Identifying Learning Rules From Neural Network Observables.
NIPS,neurips2020,2020,Optimal Approximation - Smoothness Tradeoffs for Soft-Max Functions.
NIPS,neurips2020,2020,Weakly-Supervised Reinforcement Learning for Controllable Behavior.
NIPS,neurips2020,2020,Improving Policy-Constrained Kidney Exchange via Pre-Screening.
NIPS,neurips2020,2020,Learning abstract structure for drawing by efficient motor program induction.
NIPS,neurips2020,2020,Why Do Deep Residual Networks Generalize Better than Deep Feedforward Networks? - A Neural Tangent Kernel Perspective.
NIPS,neurips2020,2020,Dual Instrumental Variable Regression.
NIPS,neurips2020,2020,Stochastic Gradient Descent in Correlated Settings: A Study on Gaussian Processes.
NIPS,neurips2020,2020,Interventional Few-Shot Learning.
NIPS,neurips2020,2020,Minimax Value Interval for Off-Policy Evaluation and Policy Optimization.
NIPS,neurips2020,2020,Biased Stochastic First-Order Methods for Conditional Stochastic Optimization and Applications in Meta Learning.
NIPS,neurips2020,2020,ShiftAddNet: A Hardware-Inspired Deep Network.
NIPS,neurips2020,2020,Network-to-Network Translation with Conditional Invertible Neural Networks.
NIPS,neurips2020,2020,Intra-Processing Methods for Debiasing Neural Networks.
NIPS,neurips2020,2020,Finding Second-Order Stationary Points Efficiently in Smooth Nonconvex Linearly Constrained Optimization Problems.
NIPS,neurips2020,2020,Model-based Policy Optimization with Unsupervised Model Adaptation.
NIPS,neurips2020,2020,Implicit Regularization and Convergence for Weight Normalization.
NIPS,neurips2020,2020,Geometric All-way Boolean Tensor Decomposition.
NIPS,neurips2020,2020,Modular Meta-Learning with Shrinkage.
NIPS,neurips2020,2020,A/B Testing in Dense Large-Scale Networks: Design and Inference.
NIPS,neurips2020,2020,What Neural Networks Memorize and Why: Discovering the Long Tail via Influence Estimation.
NIPS,neurips2020,2020,Partially View-aligned Clustering.
NIPS,neurips2020,2020,Partial Optimal Tranport with applications on Positive-Unlabeled Learning.
NIPS,neurips2020,2020,Toward the Fundamental Limits of Imitation Learning.
NIPS,neurips2020,2020,Logarithmic Pruning is All You Need.
NIPS,neurips2020,2020,Hold me tight! Influence of discriminative features on deep network boundaries.
NIPS,neurips2020,2020,Learning from Mixtures of Private and Public Populations.
NIPS,neurips2020,2020,Adversarial Weight Perturbation Helps Robust Generalization.
NIPS,neurips2020,2020,Stateful Posted Pricing with Vanishing Regret via Dynamic Deterministic Markov Decision Processes.
NIPS,neurips2020,2020,Adversarial Self-Supervised Contrastive Learning.
NIPS,neurips2020,2020,Normalizing Kalman Filters for Multivariate Time Series Analysis.
NIPS,neurips2020,2020,Learning to summarize with human feedback.
NIPS,neurips2020,2020,Fourier Spectrum Discrepancies in Deep Network Generated Images.
NIPS,neurips2020,2020,Lamina-specific neuronal properties promote robust, stable signal propagation in feedforward networks.
NIPS,neurips2020,2020,Learning Dynamic Belief Graphs to Generalize on Text-Based Games.
NIPS,neurips2020,2020,Triple descent and the two kinds of overfitting: where & why do they appear?
NIPS,neurips2020,2020,Multimodal Graph Networks for Compositional Generalization in Visual Question Answering.
NIPS,neurips2020,2020,Learning Graph Structure With A Finite-State Automaton Layer.
NIPS,neurips2020,2020,A Universal Approximation Theorem of Deep Neural Networks for Expressing Probability Distributions.
NIPS,neurips2020,2020,Unsupervised object-centric video generation and decomposition in 3D.
NIPS,neurips2020,2020,Domain Generalization for Medical Imaging Classification with Linear-Dependency Regularization.
NIPS,neurips2020,2020,Multi-label classification: do Hamming loss and subset accuracy really conflict with each other?
NIPS,neurips2020,2020,A Novel Automated Curriculum Strategy to Solve Hard Sokoban Planning Instances.
NIPS,neurips2020,2020,Causal analysis of Covid-19 Spread in Germany.
NIPS,neurips2020,2020,Locally private non-asymptotic testing of discrete distributions is faster using interactive mechanisms.
NIPS,neurips2020,2020,Adaptive Gradient Quantization for Data-Parallel SGD.
NIPS,neurips2020,2020,Finite Continuum-Armed Bandits.
NIPS,neurips2020,2020,Removing Bias in Multi-modal Classifiers: Regularization by Maximizing Functional Entropies.
NIPS,neurips2020,2020,Compact task representations as a normative model for higher-order brain activity.
NIPS,neurips2020,2020,Robust-Adaptive Control of Linear Systems: beyond Quadratic Costs.
NIPS,neurips2020,2020,Co-exposure Maximization in Online Social Networks.
NIPS,neurips2020,2020,UCLID-Net: Single View Reconstruction in Object Space.
NIPS,neurips2020,2020,Reinforcement Learning for Control with Multiple Frequencies.
NIPS,neurips2020,2020,Complex Dynamics in Simple Neural Networks: Understanding Gradient Flow in Phase Retrieval.
NIPS,neurips2020,2020,Neural Message Passing for Multi-Relational Ordered and Recursive Hypergraphs.
NIPS,neurips2020,2020,A Unified View of Label Shift Estimation.
NIPS,neurips2020,2020,Optimal Private Median Estimation under Minimal Distributional Assumptions.
NIPS,neurips2020,2020,Breaking the Communication-Privacy-Accuracy Trilemma.
NIPS,neurips2020,2020,Audeo: Audio Generation for a Silent Performance Video.
NIPS,neurips2020,2020,Ode to an ODE.
NIPS,neurips2020,2020,Self-Distillation Amplifies Regularization in Hilbert Space.
NIPS,neurips2020,2020,Coupling-based Invertible Neural Networks Are Universal Diffeomorphism Approximators.
NIPS,neurips2020,2020,Community detection using fast low-cardinality semidefinite programming.
NIPS,neurips2020,2020,Modeling Noisy Annotations for Crowd Counting.
NIPS,neurips2020,2020,An operator view of policy gradient methods.
NIPS,neurips2020,2020,Demystifying Contrastive Self-Supervised Learning: Invariances, Augmentations and Dataset Biases.
NIPS,neurips2020,2020,Online MAP Inference of Determinantal Point Processes.
NIPS,neurips2020,2020,Video Object Segmentation with Adaptive Feature Bank and Uncertain-Region Refinement.
NIPS,neurips2020,2020,Inferring learning rules from animal decision-making.
NIPS,neurips2020,2020,Input-Aware Dynamic Backdoor Attack.
NIPS,neurips2020,2020,How hard is to distinguish graphs with graph neural networks?
NIPS,neurips2020,2020,Minimax Regret of Switching-Constrained Online Convex Optimization: No Phase Transition.
NIPS,neurips2020,2020,Dual Manifold Adversarial Robustness: Defense against Lp and non-Lp Adversarial Attacks.
NIPS,neurips2020,2020,Cross-Scale Internal Graph Neural Network for Image Super-Resolution.
NIPS,neurips2020,2020,Unsupervised Representation Learning by Invariance Propagation.
NIPS,neurips2020,2020,Restoring Negative Information in Few-Shot Object Detection.
NIPS,neurips2020,2020,Do Adversarially Robust ImageNet Models Transfer Better?
NIPS,neurips2020,2020,Robust Correction of Sampling Bias using Cumulative Distribution Functions.
NIPS,neurips2020,2020,Personalized Federated Learning with Theoretical Guarantees: A Model-Agnostic Meta-Learning Approach.
NIPS,neurips2020,2020,Pixel-Level Cycle Association: A New Perspective for Domain Adaptive Semantic Segmentation.
NIPS,neurips2020,2020,Classification with Valid and Adaptive Coverage.
NIPS,neurips2020,2020,Learning Global Transparent Models consistent with Local Contrastive Explanations.
NIPS,neurips2020,2020,Learning to Approximate a Bregman Divergence.
NIPS,neurips2020,2020,Diverse Image Captioning with Context-Object Split Latent Spaces.
NIPS,neurips2020,2020,Learning Disentangled Representations of Videos with Missing Data.
NIPS,neurips2020,2020,Natural Graph Networks.
NIPS,neurips2020,2020,Continual Learning with Node-Importance based Adaptive Group Sparse Regularization.
NIPS,neurips2020,2020,Towards Crowdsourced Training of Large Neural Networks using Decentralized Mixture-of-Experts.
NIPS,neurips2020,2020,Bidirectional Convolutional Poisson Gamma Dynamical Systems.
NIPS,neurips2020,2020,Deep Reinforcement and InfoMax Learning.
NIPS,neurips2020,2020,On ranking via sorting by estimated expected utility.
NIPS,neurips2020,2020,Distribution-free binary classification: prediction sets, confidence intervals and calibration.
NIPS,neurips2020,2020,Closing the Dequantization Gap: PixelCNN as a Single-Layer Flow.
NIPS,neurips2020,2020,Sequence to Multi-Sequence Learning via Conditional Chain Mapping for Mixture Signals.
NIPS,neurips2020,2020,Variance reduction for Random Coordinate Descent-Langevin Monte Carlo.
NIPS,neurips2020,2020,Language as a Cognitive Tool to Imagine Goals in Curiosity Driven Exploration.
NIPS,neurips2020,2020,All Word Embeddings from One Embedding.
NIPS,neurips2020,2020,Primal Dual Interpretation of the Proximal Stochastic Gradient Langevin Algorithm.
NIPS,neurips2020,2020,How to Characterize The Landscape of Overparameterized Convolutional Neural Networks.
NIPS,neurips2020,2020,On the Tightness of Semidefinite Relaxations for Certifying Robustness to Adversarial Examples.
NIPS,neurips2020,2020,Submodular Meta-Learning.
NIPS,neurips2020,2020,Rethinking Pre-training and Self-training.
NIPS,neurips2020,2020,Unsupervised Sound Separation Using Mixture Invariant Training.
NIPS,neurips2020,2020,Adaptive Discretization for Model-Based Reinforcement Learning.
NIPS,neurips2020,2020,CodeCMR: Cross-Modal Retrieval For Function-Level Binary Source Code Matching.
NIPS,neurips2020,2020,On Warm-Starting Neural Network Training.
NIPS,neurips2020,2020,DAGs with No Fears: A Closer Look at Continuous Optimization for Learning Bayesian Networks.
NIPS,neurips2020,2020,OOD-MAML: Meta-Learning for Few-Shot Out-of-Distribution Detection and Classification.
NIPS,neurips2020,2020,An Imitation from Observation Approach to Transfer Learning with Dynamics Mismatch.
NIPS,neurips2020,2020,Learning About Objects by Learning to Interact with Them.
NIPS,neurips2020,2020,Learning discrete distributions with infinite support.
NIPS,neurips2020,2020,Dissecting Neural ODEs.
NIPS,neurips2020,2020,Teaching a GAN What Not to Learn.
NIPS,neurips2020,2020,Counterfactual Data Augmentation using Locally Factored Dynamics.
NIPS,neurips2020,2020,Rethinking Learnable Tree Filter for Generic Feature Transform.
NIPS,neurips2020,2020,Self-Supervised Relational Reasoning for Representation Learning.
NIPS,neurips2020,2020,Sufficient dimension reduction for classification using principal optimal transport direction.
NIPS,neurips2020,2020,Fast Epigraphical Projection-based Incremental Algorithms for Wasserstein Distributionally Robust Support Vector Machine.
NIPS,neurips2020,2020,Differentially Private Clustering: Tight Approximation Ratios.
NIPS,neurips2020,2020,On the Power of Louvain in the Stochastic Block Model.
NIPS,neurips2020,2020,Fairness with Overlapping Groups; a Probabilistic Perspective.
NIPS,neurips2020,2020,AttendLight: Universal Attention-Based Reinforcement Learning Model for Traffic Signal Control.
NIPS,neurips2020,2020,Searching for Low-Bit Weights in Quantized Neural Networks.
NIPS,neurips2020,2020,Adaptive Reduced Rank Regression.
NIPS,neurips2020,2020,From Predictions to Decisions: Using Lookahead Regularization.
NIPS,neurips2020,2020,Sequential Bayesian Experimental Design with Variable Cost Structure.
NIPS,neurips2020,2020,Predictive inference is free with the jackknife+-after-bootstrap.
NIPS,neurips2020,2020,Counterfactual Predictions under Runtime Confounding.
NIPS,neurips2020,2020,Learning Loss for Test-Time Augmentation.
NIPS,neurips2020,2020,Balanced Meta-Softmax for Long-Tailed Visual Recognition.
NIPS,neurips2020,2020,Efficient Exploration of Reward Functions in Inverse Reinforcement Learning via Bayesian Optimization.
NIPS,neurips2020,2020,MDP Homomorphic Networks: Group Symmetries in Reinforcement Learning.
NIPS,neurips2020,2020,How Can I Explain This to You? An Empirical Study of Deep Neural Network Explanation Methods.
NIPS,neurips2020,2020,On the Error Resistance of Hinge-Loss Minimization.
NIPS,neurips2020,2020,Munchausen Reinforcement Learning.
NIPS,neurips2020,2020,Object Goal Navigation using Goal-Oriented Semantic Exploration.
NIPS,neurips2020,2020,Efficient semidefinite-programming-based inference for binary and multi-class MRFs.
NIPS,neurips2020,2020,Funnel-Transformer: Filtering out Sequential Redundancy for Efficient Language Processing.
NIPS,neurips2020,2020,Semantic Visual Navigation by Watching YouTube Videos.
NIPS,neurips2020,2020,Heavy-tailed Representations, Text Polarity Classification & Data Augmentation.
NIPS,neurips2020,2020,SuperLoss: A Generic Loss for Robust Curriculum Learning.
NIPS,neurips2020,2020,CogMol: Target-Specific and Selective Drug Design for COVID-19 Using Deep Generative Models.
NIPS,neurips2020,2020,Memory Based Trajectory-conditioned Policies for Learning from Sparse Rewards.
NIPS,neurips2020,2020,Liberty or Depth: Deep Bayesian Neural Nets Do Not Need Complex Weight Posterior Approximations.
NIPS,neurips2020,2020,Improving Sample Complexity Bounds for (Natural) Actor-Critic Algorithms.
NIPS,neurips2020,2020,Learning Differential Equations that are Easy to Solve.
NIPS,neurips2020,2020,Stability of Stochastic Gradient Descent on Nonsmooth Convex Losses.
NIPS,neurips2020,2020,Influence-Augmented Online Planning for Complex Environments.
NIPS,neurips2020,2020,PAC-Bayes Learning Bounds for Sample-Dependent Priors.
NIPS,neurips2020,2020,Reward-rational (implicit) choice: A unifying formalism for reward learning.
NIPS,neurips2020,2020,Probabilistic Time Series Forecasting with Shape and Temporal Diversity.
NIPS,neurips2020,2020,Low Distortion Block-Resampling with Spatially Stochastic Networks.
NIPS,neurips2020,2020,Continual Deep Learning by Functional Regularisation of Memorable Past.
NIPS,neurips2020,2020,Distance Encoding: Design Provably More Powerful Neural Networks for Graph Representation Learning.
NIPS,neurips2020,2020,Fast Fourier Convolution.
NIPS,neurips2020,2020,Unsupervised Learning of Dense Visual Representations.
NIPS,neurips2020,2020,Higher-Order Certification For Randomized Smoothing.
NIPS,neurips2020,2020,Learning Structured Distributions From Untrusted Batches: Faster and Simpler.
NIPS,neurips2020,2020,Hierarchical Quantized Autoencoders.
NIPS,neurips2020,2020,Diversity can be Transferred: Output Diversification for White- and Black-box Attacks.
NIPS,neurips2020,2020,POLY-HOOT: Monte-Carlo Planning in Continuous Space MDPs with Non-Asymptotic Analysis.
NIPS,neurips2020,2020,AvE: Assistance via Empowerment.
NIPS,neurips2020,2020,Variational Policy Gradient Method for Reinforcement Learning with General Utilities.
NIPS,neurips2020,2020,Reverse-engineering recurrent neural network solutions to a hierarchical inference task for mice.
NIPS,neurips2020,2020,Temporal Positive-unlabeled Learning for Biomedical Hypothesis Generation via Risk Estimation.
NIPS,neurips2020,2020,Efficient Low Rank Gaussian Variational Inference for Neural Networks.
NIPS,neurips2020,2020,Privacy Amplification via Random Check-Ins.
NIPS,neurips2020,2020,Probabilistic Circuits for Variational Inference in Discrete Graphical Models.
NIPS,neurips2020,2020,Your Classifier can Secretly Suffice Multi-Source Domain Adaptation.
NIPS,neurips2020,2020,Labelling unlabelled videos from scratch with multi-modal self-supervision.
NIPS,neurips2020,2020,A Non-Asymptotic Analysis for Stein Variational Gradient Descent.
NIPS,neurips2020,2020,Robust Meta-learning for Mixed Linear Regression with Small Batches.
NIPS,neurips2020,2020,Bayesian Deep Learning and a Probabilistic Perspective of Generalization.
NIPS,neurips2020,2020,Unsupervised Learning of Object Landmarks via Self-Training Correspondence.
NIPS,neurips2020,2020,Randomized tests for high-dimensional regression: A more efficient and powerful solution.
NIPS,neurips2020,2020,Learning Representations from Audio-Visual Spatial Alignment.
NIPS,neurips2020,2020,Generative View Synthesis: From Single-view Semantics to Novel-view Images.
NIPS,neurips2020,2020,Towards More Practical Adversarial Attacks on Graph Neural Networks.
NIPS,neurips2020,2020,Multi-Task Reinforcement Learning with Soft Modularization.
NIPS,neurips2020,2020,Causal Shapley Values: Exploiting Causal Knowledge to Explain Individual Predictions of Complex Models.
NIPS,neurips2020,2020,On the training dynamics of deep networks with $L_2$ regularization.
NIPS,neurips2020,2020,Improved Algorithms for Convex-Concave Minimax Optimization.
NIPS,neurips2020,2020,Deep Variational Instance Segmentation.
NIPS,neurips2020,2020,Learning Implicit Functions for Topology-Varying Dense 3D Shape Correspondence.
NIPS,neurips2020,2020,Deep Multimodal Fusion by Channel Exchanging.
NIPS,neurips2020,2020,Hierarchically Organized Latent Modules for Exploratory Search in Morphogenetic Systems.
NIPS,neurips2020,2020,AI Feynman 2.0: Pareto-optimal symbolic regression exploiting graph modularity.
NIPS,neurips2020,2020,Delay and Cooperation in Nonstochastic Linear Bandits.
NIPS,neurips2020,2020,Probabilistic Orientation Estimation with Matrix Fisher Distributions.
NIPS,neurips2020,2020,Minimax Dynamics of Optimally Balanced Spiking Networks of Excitatory and Inhibitory Neurons.
NIPS,neurips2020,2020,Telescoping Density-Ratio Estimation.
NIPS,neurips2020,2020,Towards Deeper Graph Neural Networks with Differentiable Group Normalization.
NIPS,neurips2020,2020,Stochastic Optimization for Performative Prediction.
NIPS,neurips2020,2020,Learning Differentiable Programs with Admissible Neural Heuristics.
NIPS,neurips2020,2020,Improved guarantees and a multiple-descent curve for Column Subset Selection and the Nystrom method.
NIPS,neurips2020,2020,Domain Adaptation as a Problem of Inference on Graphical Models.
NIPS,neurips2020,2020,Network size and size of the weights in memorization with two-layers neural networks.
NIPS,neurips2020,2020,Certifying Strategyproof Auction Networks.
NIPS,neurips2020,2020,Continual Learning of Control Primitives : Skill Discovery via Reset-Games.
NIPS,neurips2020,2020,HOI Analysis: Integrating and Decomposing Human-Object Interaction.
NIPS,neurips2020,2020,Strongly local p-norm-cut algorithms for semi-supervised learning and local graph clustering.
NIPS,neurips2020,2020,Deep Direct Likelihood Knockoffs.
NIPS,neurips2020,2020,Meta-Neighborhoods.
NIPS,neurips2020,2020,Neural Dynamic Policies for End-to-End Sensorimotor Learning.
NIPS,neurips2020,2020,A new inference approach for training shallow and deep generalized linear models of noisy interacting neurons.
NIPS,neurips2020,2020,Decision-Making with Auto-Encoding Variational Bayes.
NIPS,neurips2020,2020,Attribution Preservation in Network Compression for Reliable Network Interpretation.
NIPS,neurips2020,2020,Feature Importance Ranking for Deep Learning.
NIPS,neurips2020,2020,Causal Estimation with Functional Confounders.
NIPS,neurips2020,2020,Model Inversion Networks for Model-Based Optimization.
NIPS,neurips2020,2020,Hausdorff Dimension, Heavy Tails, and Generalization in Neural Networks.
NIPS,neurips2020,2020,Exact expressions for double descent and implicit regularization via surrogate random design.
NIPS,neurips2020,2020,Certifying Confidence via Randomized Smoothing.
NIPS,neurips2020,2020,Learning Physical Constraints with Neural Projections.
NIPS,neurips2020,2020,Robust Optimization for Fairness with Noisy Protected Groups.
NIPS,neurips2020,2020,Noise-Contrastive Estimation for Multivariate Point Processes.
NIPS,neurips2020,2020,A Game-Theoretic Analysis of the Empirical Revenue Maximization Algorithm with Endogenous Sampling.
NIPS,neurips2020,2020,Neural Path Features and Neural Path Kernel : Understanding the role of gates in deep learning.
NIPS,neurips2020,2020,Multiscale Deep Equilibrium Models.
NIPS,neurips2020,2020,Sparse Graphical Memory for Robust Planning.
NIPS,neurips2020,2020,Second Order PAC-Bayesian Bounds for the Weighted Majority Vote.
NIPS,neurips2020,2020,Dirichlet Graph Variational Autoencoder.
NIPS,neurips2020,2020,Modeling Task Effects on Meaning Representation in the Brain via Zero-Shot MEG Prediction.
NIPS,neurips2020,2020,Counterfactual Vision-and-Language Navigation: Unravelling the Unseen.
NIPS,neurips2020,2020,Robust Quantization: One Model to Rule Them All.
NIPS,neurips2020,2020,Enabling certification of verification-agnostic networks via memory-efficient semidefinite programming.
NIPS,neurips2020,2020,Federated Accelerated Stochastic Gradient Descent.
NIPS,neurips2020,2020,Robust Density Estimation under Besov IPM Losses.
NIPS,neurips2020,2020,An analytic theory of shallow networks dynamics for hinge loss classification.
NIPS,neurips2020,2020,Fixed-Support Wasserstein Barycenters: Computational Hardness and Fast Algorithm.
NIPS,neurips2020,2020,Learning to Orient Surfaces by Self-supervised Spherical CNNs.
NIPS,neurips2020,2020,Adam with Bandit Sampling for Deep Learning.
NIPS,neurips2020,2020,Parabolic Approximation Line Search for DNNs.
NIPS,neurips2020,2020,Agnostic Learning of a Single Neuron with Gradient Descent.
NIPS,neurips2020,2020,Statistical Efficiency of Thompson Sampling for Combinatorial Semi-Bandits.
NIPS,neurips2020,2020,Analytic Characterization of the Hessian in Shallow ReLU Models: A Tale of Symmetry.
NIPS,neurips2020,2020,Generative causal explanations of black-box classifiers.
NIPS,neurips2020,2020,Sub-sampling for Efficient Non-Parametric Bandit Exploration.
NIPS,neurips2020,2020,Learning under Model Misspecification: Applications to Variational and Ensemble methods.
NIPS,neurips2020,2020,Language Through a Prism: A Spectral Approach for Multiscale Language Representations.
NIPS,neurips2020,2020,DVERGE: Diversifying Vulnerabilities for Enhanced Robust Generation of Ensembles.
NIPS,neurips2020,2020,Towards practical differentially private causal graph discovery.
NIPS,neurips2020,2020,Independent Policy Gradient Methods for Competitive Reinforcement Learning.
NIPS,neurips2020,2020,The Value Equivalence Principle for Model-Based Reinforcement Learning.
NIPS,neurips2020,2020,Structured Convolutions for Efficient Neural Network Design.
NIPS,neurips2020,2020,Latent World Models For Intrinsically Motivated Exploration.
NIPS,neurips2020,2020,Estimating Rank-One Spikes from Heavy-Tailed Noise via Self-Avoiding Walks.
NIPS,neurips2020,2020,Policy Improvement via Imitation of Multiple Oracles.
NIPS,neurips2020,2020,Training Generative Adversarial Networks by Solving Ordinary Differential Equations.
NIPS,neurips2020,2020,Learning of Discrete Graphical Models with Neural Networks.
NIPS,neurips2020,2020,RepPoints v2: Verification Meets Regression for Object Detection.
NIPS,neurips2020,2020,Unfolding the Alternating Optimization for Blind Super Resolution.
NIPS,neurips2020,2020,Entrywise convergence of iterative methods for eigenproblems.
NIPS,neurips2020,2020,Learning Object-Centric Representations of Multi-Object Scenes from Multiple Views.
NIPS,neurips2020,2020,A Catalyst Framework for Minimax Optimization.
NIPS,neurips2020,2020,Self-supervised Co-Training for Video Representation Learning.
NIPS,neurips2020,2020,Gradient Estimation with Stochastic Softmax Tricks.
NIPS,neurips2020,2020,Meta-Learning Requires Meta-Augmentation.
NIPS,neurips2020,2020,SLIP: Learning to predict in unknown dynamical systems with long-term memory.
NIPS,neurips2020,2020,Improving GAN Training with Probability Ratio Clipping and Sample Reweighting.
NIPS,neurips2020,2020,Bayesian Bits: Unifying Quantization and Pruning.
NIPS,neurips2020,2020,On Testing of Samplers.
NIPS,neurips2020,2020,Gaussian Process Bandit Optimization of the Thermodynamic Variational Objective.
NIPS,neurips2020,2020,MiniLM: Deep Self-Attention Distillation for Task-Agnostic Compression of Pre-Trained Transformers.
NIPS,neurips2020,2020,Optimal Epoch Stochastic Gradient Descent Ascent Methods for Min-Max Optimization.
NIPS,neurips2020,2020,Woodbury Transformations for Deep Generative Flows.
NIPS,neurips2020,2020,Graph Contrastive Learning with Augmentations.
NIPS,neurips2020,2020,Gradient Surgery for Multi-Task Learning.
NIPS,neurips2020,2020,Bayesian Probabilistic Numerical Integration with Tree-Based Models.
NIPS,neurips2020,2020,Deep learning versus kernel learning: an empirical study of loss landscape geometry and the time evolution of the Neural Tangent Kernel.
NIPS,neurips2020,2020,Graph Meta Learning via Local Subgraphs.
NIPS,neurips2020,2020,Stochastic Deep Gaussian Processes over Graphs.
NIPS,neurips2020,2020,Bayesian Causal Structural Learning with Zero-Inflated Poisson Bayesian Networks.
NIPS,neurips2020,2020,Evaluating Attribution for Graph Neural Networks.
NIPS,neurips2020,2020,On Second Order Behaviour in Augmented Neural ODEs.
NIPS,neurips2020,2020,Neuron Shapley: Discovering the Responsible Neurons.
NIPS,neurips2020,2020,Stochastic Normalizing Flows.
NIPS,neurips2020,2020,GPU-Accelerated Primal Learning for Extremely Fast Large-Scale Classification.
NIPS,neurips2020,2020,Random Reshuffling is Not Always Better.
NIPS,neurips2020,2020,Model Agnostic Multilevel Explanations.
NIPS,neurips2020,2020,NeuMiss networks: differentiable programming for supervised learning with missing values.
NIPS,neurips2020,2020,Revisiting Parameter Sharing for Automatic Neural Channel Number Search.
NIPS,neurips2020,2020,Differentially-Private Federated Linear Bandits.
NIPS,neurips2020,2020,Is Plug-in Solver Sample-Efficient for Feature-based Reinforcement Learning?
NIPS,neurips2020,2020,Learning Physical Graph Representations from Visual Scenes.
NIPS,neurips2020,2020,Deep Graph Pose: a semi-supervised deep graphical model for improved animal pose tracking.
NIPS,neurips2020,2020,Meta-learning from Tasks with Heterogeneous Attribute Spaces.
NIPS,neurips2020,2020,Estimating decision tree learnability with polylogarithmic sample complexity.
NIPS,neurips2020,2020,Sparse Symplectically Integrated Neural Networks.
NIPS,neurips2020,2020,Continuous Object Representation Networks: Novel View Synthesis without Target View Supervision.
NIPS,neurips2020,2020,Multimodal Generative Learning Utilizing Jensen-Shannon-Divergence.
NIPS,neurips2020,2020,Solver-in-the-Loop: Learning from Differentiable Physics to Interact with Iterative PDE-Solvers.
NIPS,neurips2020,2020,Reinforcement Learning with General Value Function Approximation: Provably Efficient Approach via Bounded Eluder Dimension.
NIPS,neurips2020,2020,Predicting Training Time Without Training.
NIPS,neurips2020,2020,How does This Interaction Affect Me? Interpretable Attribution for Feature Interactions.
NIPS,neurips2020,2020,Optimal Adaptive Electrode Selection to Maximize Simultaneously Recorded Neuron Yield.
NIPS,neurips2020,2020,Neurosymbolic Reinforcement Learning with Formally Verified Exploration.
NIPS,neurips2020,2020,Wavelet Flow: Fast Training of High Resolution Normalizing Flows.
NIPS,neurips2020,2020,Multi-task Batch Reinforcement Learning with Metric Learning.
NIPS,neurips2020,2020,On 1/n neural representation and robustness.
NIPS,neurips2020,2020,Boundary thickness and robustness in learning models.
NIPS,neurips2020,2020,Demixed shared component analysis of neural population data from multiple brain areas.
NIPS,neurips2020,2020,Learning Kernel Tests Without Data Splitting.
NIPS,neurips2020,2020,Unsupervised Data Augmentation for Consistency Training.
NIPS,neurips2020,2020,Subgroup-based Rank-1 Lattice Quasi-Monte Carlo.
NIPS,neurips2020,2020,Minibatch vs Local SGD for Heterogeneous Distributed Learning.
NIPS,neurips2020,2020,Multi-task Causal Learning with Gaussian Processes.
NIPS,neurips2020,2020,Proximity Operator of the Matrix Perspective Function and its Applications.
NIPS,neurips2020,2020,Generative 3D Part Assembly via Dynamic Graph Learning.
NIPS,neurips2020,2020,Improving Natural Language Processing Tasks with Human Gaze-Guided Neural Attention.
NIPS,neurips2020,2020,The Power of Comparisons for Actively Learning Linear Classifiers.
NIPS,neurips2020,2020,From Boltzmann Machines to Neural Networks and Back Again.
NIPS,neurips2020,2020,Crush Optimism with Pessimism: Structured Bandits Beyond Asymptotic Optimality.
NIPS,neurips2020,2020,Pruning neural networks without any data by iteratively conserving synaptic flow.
NIPS,neurips2020,2020,Detecting Interactions from Neural Networks via Topological Analysis.
NIPS,neurips2020,2020,Neural Bridge Sampling for Evaluating Safety-Critical Autonomous Systems.
NIPS,neurips2020,2020,Interpretable and Personalized Apprenticeship Scheduling: Learning Interpretable Scheduling Policies from Heterogeneous User Demonstrations.
NIPS,neurips2020,2020,Task-Agnostic Online Reinforcement Learning with an Infinite Mixture of Gaussian Processes.
NIPS,neurips2020,2020,Benchmarking Deep Learning Interpretability in Time Series Predictions.
NIPS,neurips2020,2020,Federated Principal Component Analysis.
NIPS,neurips2020,2020,(De)Randomized Smoothing for Certifiable Defense against Patch Attacks.
NIPS,neurips2020,2020,SMYRF - Efficient Attention using Asymmetric Clustering.
NIPS,neurips2020,2020,Introducing Routing Uncertainty in Capsule Networks.
NIPS,neurips2020,2020,A Simple and Efficient Smoothing Method for Faster Optimization and Local Exploration.
NIPS,neurips2020,2020,Hyperparameter Ensembles for Robustness and Uncertainty Quantification.
NIPS,neurips2020,2020,Neutralizing Self-Selection Bias in Sampling for Sortition.
NIPS,neurips2020,2020,On the Convergence of Smooth Regularized Approximate Value Iteration Schemes.
NIPS,neurips2020,2020,Off-Policy Evaluation via the Regularized Lagrangian.
NIPS,neurips2020,2020,The LoCA Regret: A Consistent Metric to Evaluate Model-Based Behavior in Reinforcement Learning.
NIPS,neurips2020,2020,Neural Power Units.
NIPS,neurips2020,2020,Towards Scalable Bayesian Learning of Causal DAGs.
NIPS,neurips2020,2020,A Dictionary Approach to Domain-Invariant Learning in Deep Networks.
NIPS,neurips2020,2020,Bootstrapping neural processes.
NIPS,neurips2020,2020,Large-Scale Adversarial Training for Vision-and-Language Representation Learning.
NIPS,neurips2020,2020,Most ReLU Networks Suffer from $\ell^2$ Adversarial Perturbations.
NIPS,neurips2020,2020,Compositional Visual Generation with Energy Based Models.
NIPS,neurips2020,2020,Factor Graph Grammars.
NIPS,neurips2020,2020,Erdos Goes Neural: an Unsupervised Learning Framework for Combinatorial Optimization on Graphs.
NIPS,neurips2020,2020,Autoregressive Score Matching.
NIPS,neurips2020,2020,Debiasing Distributed Second Order Optimization with Surrogate Sketching and Scaled Regularization.
NIPS,neurips2020,2020,Neural Controlled Differential Equations for Irregular Time Series.
NIPS,neurips2020,2020,On Efficiency in Hierarchical Reinforcement Learning.
NIPS,neurips2020,2020,On Correctness of Automatic Differentiation for Non-Differentiable Functions.
NIPS,neurips2020,2020,Probabilistic Linear Solvers for Machine Learning.
NIPS,neurips2020,2020,Dynamic Regret of Policy Optimization in Non-Stationary Environments.
NIPS,neurips2020,2020,Multipole Graph Neural Operator for Parametric Partial Differential Equations.
NIPS,neurips2020,2020,BlockGAN: Learning 3D Object-aware Scene Representations from Unlabelled Images.
NIPS,neurips2020,2020,Online Structured Meta-learning.
NIPS,neurips2020,2020,Learning Strategic Network Emergence Games.
NIPS,neurips2020,2020,Towards Interpretable Natural Language Understanding with Explanations as Latent Variables.
NIPS,neurips2020,2020,The Mean-Squared Error of Double Q-Learning.
NIPS,neurips2020,2020,What Makes for Good Views for Contrastive Learning?
NIPS,neurips2020,2020,Denoising Diffusion Probabilistic Models.
NIPS,neurips2020,2020,Barking up the right tree: an approach to search over molecule synthesis DAGs.
NIPS,neurips2020,2020,On Uniform Convergence and Low-Norm Interpolation Learning.
NIPS,neurips2020,2020,Bandit Samplers for Training Graph Neural Networks.
NIPS,neurips2020,2020,Sampling from a k-DPP without looking at all items.
NIPS,neurips2020,2020,Uncovering the Topology of Time-Varying fMRI Data using Cubical Persistence.
NIPS,neurips2020,2020,Hierarchical Poset Decoding for Compositional Generalization in Language.
NIPS,neurips2020,2020,Evaluating and Rewarding Teamwork Using Cooperative Game Abstractions.
NIPS,neurips2020,2020,Exchangeable Neural ODE for Set Modeling.
NIPS,neurips2020,2020,Profile Entropy: A Fundamental Measure for the Learnability and Compressibility of Distributions.
NIPS,neurips2020,2020,CoADNet: Collaborative Aggregation-and-Distribution Networks for Co-Salient Object Detection.
NIPS,neurips2020,2020,Regularized linear autoencoders recover the principal components, eventually.
NIPS,neurips2020,2020,Semi-Supervised Partial Label Learning via Confidence-Rated Margin Maximization.
NIPS,neurips2020,2020,GramGAN: Deep 3D Texture Synthesis From 2D Exemplars.
NIPS,neurips2020,2020,UWSOD: Toward Fully-Supervised-Level Capacity Weakly Supervised Object Detection.
NIPS,neurips2020,2020,Learning Restricted Boltzmann Machines with Sparse Latent Variables.
NIPS,neurips2020,2020,Sample Complexity of Asynchronous Q-Learning: Sharper Analysis and Variance Reduction.
NIPS,neurips2020,2020,Curriculum learning for multilevel budgeted combinatorial problems.
NIPS,neurips2020,2020,FedSplit: an algorithmic framework for fast federated optimization.
NIPS,neurips2020,2020,Estimation and Imputation in Probabilistic Principal Component Analysis with Missing Not At Random Data.
NIPS,neurips2020,2020,Correlation Robust Influence Maximization.
NIPS,neurips2020,2020,Neuronal Gaussian Process Regression.
NIPS,neurips2020,2020,Nonconvex Sparse Graph Learning under Laplacian Constrained Graphical Model.
NIPS,neurips2020,2020,Synthetic Data Generators - Sequential and Private.
NIPS,neurips2020,2020,Uncertainty Quantification for Inferring Hawkes Networks.
NIPS,neurips2020,2020,Implicit Distributional Reinforcement Learning.
NIPS,neurips2020,2020,Auxiliary Task Reweighting for Minimum-data Learning.
NIPS,neurips2020,2020,Small Nash Equilibrium Certificates in Very Large Games.
NIPS,neurips2020,2020,Training Linear Finite-State Machines.
NIPS,neurips2020,2020,Efficient active learning of sparse halfspaces with arbitrary bounded noise.
NIPS,neurips2020,2020,Swapping Autoencoder for Deep Image Manipulation.
NIPS,neurips2020,2020,Self-Supervised Few-Shot Learning on Point Clouds.
NIPS,neurips2020,2020,Faster Differentially Private Samplers via Rényi Divergence Analysis of Discretized Langevin MCMC.
NIPS,neurips2020,2020,Learning identifiable and interpretable latent models of high-dimensional neural activity using pi-VAE.
NIPS,neurips2020,2020,RL Unplugged: A Collection of Benchmarks for Offline Reinforcement Learning.
NIPS,neurips2020,2020,Dual T: Reducing Estimation Error for Transition Matrix in Label-noise Learning.
NIPS,neurips2020,2020,Interior Point Solving for LP-based prediction+optimisation.
NIPS,neurips2020,2020,A simple normative network approximates local non-Hebbian learning in the cortex.
NIPS,neurips2020,2020,Kernelized information bottleneck leads to biologically plausible 3-factor Hebbian learning in deep networks.
NIPS,neurips2020,2020,Understanding the Role of Training Regimes in Continual Learning.
NIPS,neurips2020,2020,Fair regression with Wasserstein barycenters.
NIPS,neurips2020,2020,Training Stronger Baselines for Learning to Optimize.
NIPS,neurips2020,2020,Exactly Computing the Local Lipschitz Constant of ReLU Networks.
NIPS,neurips2020,2020,Strictly Batch Imitation Learning by Energy-based Distribution Matching.
NIPS,neurips2020,2020,On the Ergodicity, Bias and Asymptotic Normality of Randomized Midpoint Sampling Method.
NIPS,neurips2020,2020,A Single-Loop Smoothed Gradient Descent-Ascent Algorithm for Nonconvex-Concave Min-Max Problems.
NIPS,neurips2020,2020,Generating Correct Answers for Progressive Matrices Intelligence Tests.
NIPS,neurips2020,2020,HyNet: Learning Local Descriptor with Hybrid Similarity Measure and Triplet Loss.
NIPS,neurips2020,2020,Preference learning along multiple criteria: A game-theoretic perspective.
NIPS,neurips2020,2020,Multi-Plane Program Induction with 3D Box Priors.
NIPS,neurips2020,2020,Online Neural Connectivity Estimation with Noisy Group Testing.
NIPS,neurips2020,2020,Once-for-All Adversarial Training: In-Situ Tradeoff between Robustness and Accuracy for Free.
NIPS,neurips2020,2020,Implicit Neural Representations with Periodic Activation Functions.
NIPS,neurips2020,2020,Rotated Binary Neural Network.
NIPS,neurips2020,2020,Community detection in sparse time-evolving graphs with a dynamical Bethe-Hessian.
NIPS,neurips2020,2020,Simple and Principled Uncertainty Estimation with Deterministic Deep Learning via Distance Awareness.
NIPS,neurips2020,2020,Adaptive Learning of Rank-One Models for Efficient Pairwise Sequence Alignment.
NIPS,neurips2020,2020,Hierarchical nucleation in deep neural networks.
NIPS,neurips2020,2020,Fourier Features Let Networks Learn High Frequency Functions in Low Dimensional Domains.
NIPS,neurips2020,2020,Graph Geometry Interaction Learning.
NIPS,neurips2020,2020,Differentiable Augmentation for Data-Efficient GAN Training.
NIPS,neurips2020,2020,Heuristic Domain Adaptation.
NIPS,neurips2020,2020,Learning Certified Individually Fair Representations.
NIPS,neurips2020,2020,Part-dependent Label Noise: Towards Instance-dependent Label Noise.
NIPS,neurips2020,2020,Tackling the Objective Inconsistency Problem in Heterogeneous Federated Optimization.
NIPS,neurips2020,2020,An Improved Analysis of (Variance-Reduced) Policy Gradient and Natural Policy Gradient Methods.
NIPS,neurips2020,2020,Geometric Exploration for Online Control.
NIPS,neurips2020,2020,Automatic Curriculum Learning through Value Disagreement.
NIPS,neurips2020,2020,MRI Banding Removal via Adversarial Training.
NIPS,neurips2020,2020,The NetHack Learning Environment.
NIPS,neurips2020,2020,Language and Visual Entity Relationship Graph for Agent Navigation.
NIPS,neurips2020,2020,ICAM: Interpretable Classification via Disentangled Representations and Feature Attribution Mapping.
NIPS,neurips2020,2020,Spectra of the Conjugate Kernel and Neural Tangent Kernel for linear-width neural networks.
NIPS,neurips2020,2020,No-Regret Learning Dynamics for Extensive-Form Correlated Equilibrium.
NIPS,neurips2020,2020,Estimating weighted areas under the ROC curve.
NIPS,neurips2020,2020,Can Implicit Bias Explain Generalization? Stochastic Convex Optimization as a Case Study.
NIPS,neurips2020,2020,Generalized Hindsight for Reinforcement Learning.
NIPS,neurips2020,2020,Critic Regularized Regression.
NIPS,neurips2020,2020,Boosting Adversarial Training with Hypersphere Embedding.
NIPS,neurips2020,2020,Beyond Homophily in Graph Neural Networks: Current Limitations and Effective Designs.
NIPS,neurips2020,2020,Modeling Continuous Stochastic Processes with Dynamic Normalizing Flows.
NIPS,neurips2020,2020,Efficient Online Learning of Optimal Rankings: Dimensionality Reduction via Gradient Descent.
NIPS,neurips2020,2020,Training Normalizing Flows with the Information Bottleneck for Competitive Generative Classification.
NIPS,neurips2020,2020,Detecting Hands and Recognizing Physical Contact in the Wild.
NIPS,neurips2020,2020,On the Theory of Transfer Learning: The Importance of Task Diversity.
NIPS,neurips2020,2020,Finite-Time Analysis of Round-Robin Kullback-Leibler Upper Confidence Bounds for Optimal Adaptive Allocation with Multiple Plays and Markovian Rewards.
NIPS,neurips2020,2020,Neural Star Domain as Primitive Representation.
NIPS,neurips2020,2020,Off-Policy Interval Estimation with Lipschitz Value Iteration.
NIPS,neurips2020,2020,Inverse Rational Control with Partially Observable Continuous Nonlinear Dynamics.
NIPS,neurips2020,2020,Deep Statistical Solvers.
NIPS,neurips2020,2020,Distributionally Robust Parametric Maximum Likelihood Estimation.
NIPS,neurips2020,2020,Secretary and Online Matching Problems with Machine Learned Advice.
NIPS,neurips2020,2020,Deep Transformation-Invariant Clustering.
NIPS,neurips2020,2020,Overfitting Can Be Harmless for Basis Pursuit, But Only to a Degree.
NIPS,neurips2020,2020,Improving Generalization in Reinforcement Learning with Mixture Regularization.
NIPS,neurips2020,2020,Pontryagin Differentiable Programming: An End-to-End Learning and Control Framework.
NIPS,neurips2020,2020,Learning from Aggregate Observations.
NIPS,neurips2020,2020,The Devil is in the Detail: A Framework for Macroscopic Prediction via Microscopic Models.
NIPS,neurips2020,2020,Subgraph Neural Networks.
NIPS,neurips2020,2020,Demystifying Orthogonal Monte Carlo and Beyond.
NIPS,neurips2020,2020,Optimal Robustness-Consistency Trade-offs for Learning-Augmented Online Algorithms.
NIPS,neurips2020,2020,A Scalable Approach for Privacy-Preserving Collaborative Machine Learning.
NIPS,neurips2020,2020,Glow-TTS: A Generative Flow for Text-to-Speech via Monotonic Alignment Search.
NIPS,neurips2020,2020,Towards Learning Convolutions from Scratch.
NIPS,neurips2020,2020,Cycle-Contrast for Self-Supervised Video Representation Learning.
NIPS,neurips2020,2020,Posterior Re-calibration for Imbalanced Datasets.
NIPS,neurips2020,2020,Novelty Search in Representational Space for Sample Efficient Exploration.
NIPS,neurips2020,2020,Robust Reinforcement Learning via Adversarial training with Langevin Dynamics.
NIPS,neurips2020,2020,Adversarial Blocking Bandits.
NIPS,neurips2020,2020,Online Algorithms for Multi-shop Ski Rental with Machine Learned Advice.
NIPS,neurips2020,2020,Multi-label Contrastive Predictive Coding.
NIPS,neurips2020,2020,Rotation-Invariant Local-to-Global Representation Learning for 3D Point Cloud.
NIPS,neurips2020,2020,Learning Invariants through Soft Unification.
NIPS,neurips2020,2020,One Solution is Not All You Need: Few-Shot Extrapolation via Structured MaxEnt RL.
NIPS,neurips2020,2020,Variational Bayesian Monte Carlo with Noisy Likelihoods.
NIPS,neurips2020,2020,Finite-Sample Analysis of Contractive Stochastic Approximation Using Smooth Convex Envelopes.
NIPS,neurips2020,2020,Self-Supervised Generative Adversarial Compression.
NIPS,neurips2020,2020,An efficient nonconvex reformulation of stagewise convex optimization problems.
NIPS,neurips2020,2020,From Finite to Countable-Armed Bandits.
NIPS,neurips2020,2020,Adversarial Distributional Training for Robust Deep Learning.
NIPS,neurips2020,2020,Meta-Learning Stationary Stochastic Process Prediction with Convolutional Neural Processes.
NIPS,neurips2020,2020,Theory-Inspired Path-Regularized Differential Network Architecture Search.
NIPS,neurips2020,2020,Conic Descent and its Application to Memory-efficient Optimization over Positive Semidefinite Matrices.
NIPS,neurips2020,2020,Learning the Geometry of Wave-Based Imaging.
NIPS,neurips2020,2020,Greedy inference with structure-exploiting lazy maps.
NIPS,neurips2020,2020,Nimble: Lightweight and Parallel GPU Task Scheduling for Deep Learning.
NIPS,neurips2020,2020,Finding the Homology of Decision Boundaries with Active Learning.
NIPS,neurips2020,2020,Reinforced Molecular Optimization with Neighborhood-Controlled Grammars.
NIPS,neurips2020,2020,Natural Policy Gradient Primal-Dual Method for Constrained Markov Decision Processes.
NIPS,neurips2020,2020,Classification Under Misspecification: Halfspaces, Generalized Linear Models, and Evolvability.
NIPS,neurips2020,2020,Certified Defense to Image Transformations via Randomized Smoothing.
NIPS,neurips2020,2020,Estimation of Skill Distribution from a Tournament.
NIPS,neurips2020,2020,Reparameterizing Mirror Descent as Gradient Descent.
NIPS,neurips2020,2020,General Control Functions for Causal Effect Estimation from IVs.
NIPS,neurips2020,2020,Optimal Algorithms for Stochastic Multi-Armed Bandits with Heavy Tailed Rewards.
NIPS,neurips2020,2020,Certified Robustness of Graph Convolution Networks for Graph Classification under Topological Attacks.
NIPS,neurips2020,2020,Zero-Resource Knowledge-Grounded Dialogue Generation.
NIPS,neurips2020,2020,Targeted Adversarial Perturbations for Monocular Depth Prediction.
NIPS,neurips2020,2020,Beyond the Mean-Field: Structured Deep Gaussian Processes Improve the Predictive Uncertainties.
NIPS,neurips2020,2020,Offline Imitation Learning with a Misspecified Simulator.
NIPS,neurips2020,2020,Multi-Fidelity Bayesian Optimization via Deep Neural Networks.
NIPS,neurips2020,2020,PlanGAN: Model-based Planning With Sparse Rewards and Multiple Goals.
NIPS,neurips2020,2020,Bad Global Minima Exist and SGD Can Reach Them.
NIPS,neurips2020,2020,Optimal Prediction of the Number of Unseen Species with Multiplicity.
NIPS,neurips2020,2020,Characterizing Optimal Mixed Policies: Where to Intervene and What to Observe.
NIPS,neurips2020,2020,Factor Graph Neural Networks.
NIPS,neurips2020,2020,A Closer Look at Accuracy vs. Robustness.
NIPS,neurips2020,2020,Curriculum Learning by Dynamic Instance Hardness.
NIPS,neurips2020,2020,Spin-Weighted Spherical CNNs.
NIPS,neurips2020,2020,Learning to Execute Programs with Instruction Pointer Attention Graph Neural Networks.
NIPS,neurips2020,2020,AutoPrivacy: Automated Layer-wise Parameter Selection for Secure Neural Network Inference.
NIPS,neurips2020,2020,Baxter Permutation Process.
NIPS,neurips2020,2020,Characterizing emergent representations in a space of candidate learning rules for deep networks.
NIPS,neurips2020,2020,Fast, Accurate, and Simple Models for Tabular Data via Augmented Distillation.
NIPS,neurips2020,2020,Adaptive Probing Policies for Shortest Path Routing.
NIPS,neurips2020,2020,Approximate Heavily-Constrained Learning with Lagrange Multiplier Models.
NIPS,neurips2020,2020,Faster Randomized Infeasible Interior Point Methods for Tall/Wide Linear Programs.
NIPS,neurips2020,2020,Sliding Window Algorithms for k-Clustering Problems.
NIPS,neurips2020,2020,AdaShare: Learning What To Share For Efficient Deep Multi-Task Learning.
NIPS,neurips2020,2020,Approximate Cross-Validation for Structured Models.
NIPS,neurips2020,2020,Exemplar VAE: Linking Generative Models, Nearest Neighbor Retrieval, and Data Augmentation.
NIPS,neurips2020,2020,Debiased Contrastive Learning.
NIPS,neurips2020,2020,UCSG-NET- Unsupervised Discovering of Constructive Solid Geometry Tree.
NIPS,neurips2020,2020,Generalized Boosting.
NIPS,neurips2020,2020,COT-GAN: Generating Sequential Data via Causal Optimal Transport.
NIPS,neurips2020,2020,Impossibility Results for Grammar-Compressed Linear Algebra.
NIPS,neurips2020,2020,Understanding spiking networks through convex optimization.
NIPS,neurips2020,2020,Better Full-Matrix Regret via Parameter-Free Online Learning.
NIPS,neurips2020,2020,Large-Scale Methods for Distributionally Robust Optimization.
NIPS,neurips2020,2020,Analysis and Design of Thompson Sampling for Stochastic Partial Monitoring.
NIPS,neurips2020,2020,Bandit Linear Control.
NIPS,neurips2020,2020,Refactoring Policy for Compositional Generalizability using Self-Supervised Object Proposals.
NIPS,neurips2020,2020,PEP: Parameter Ensembling by Perturbation.
NIPS,neurips2020,2020,Theoretical Insights Into Multiclass Classification: A High-dimensional Asymptotic View.
NIPS,neurips2020,2020,Adversarial Example Games.
NIPS,neurips2020,2020,Residual Distillation: Towards Portable Deep Neural Networks without Shortcuts.
NIPS,neurips2020,2020,Provably Efficient Neural Estimation of Structural Equation Models: An Adversarial Approach.
NIPS,neurips2020,2020,Security Analysis of Safe and Seldonian Reinforcement Learning Algorithms.
NIPS,neurips2020,2020,Learning to Play Sequential Games versus Unknown Opponents.
NIPS,neurips2020,2020,Further Analysis of Outlier Detection with Deep Generative Models.
NIPS,neurips2020,2020,Bridging Imagination and Reality for Model-Based Deep Reinforcement Learning.
NIPS,neurips2020,2020,Neural Networks Learning and Memorization with (almost) no Over-Parameterization.
NIPS,neurips2020,2020,Exploiting Higher Order Smoothness in Derivative-free Optimization and Continuous Bandits.
NIPS,neurips2020,2020,Towards a Combinatorial Characterization of Bounded-Memory Learning.
NIPS,neurips2020,2020,Chaos, Extremism and Optimism: Volume Analysis of Learning in Games.
NIPS,neurips2020,2020,On Regret with Multiple Best Arms.
NIPS,neurips2020,2020,Matrix Completion with Hierarchical Graph Side Information.
NIPS,neurips2020,2020,Is Long Horizon RL More Difficult Than Short Horizon RL?
NIPS,neurips2020,2020,Hamiltonian Monte Carlo using an adjoint-differentiated Laplace approximation: Bayesian inference for latent Gaussian models and beyond.
NIPS,neurips2020,2020,Adversarial Learning for Robust Deep Clustering.
NIPS,neurips2020,2020,Learning Mutational Semantics.
NIPS,neurips2020,2020,Learning to Learn Variational Semantic Memory.
NIPS,neurips2020,2020,Myersonian Regression.
NIPS,neurips2020,2020,Learnability with Indirect Supervision Signals.
NIPS,neurips2020,2020,Towards Safe Policy Improvement for Non-Stationary MDPs.
NIPS,neurips2020,2020,Finer Metagenomic Reconstruction via Biodiversity Optimization.
NIPS,neurips2020,2020,Causal Discovery in Physical Systems from Videos.
NIPS,neurips2020,2020,Glyph: Fast and Accurately Training Deep Neural Networks on Encrypted Data.
NIPS,neurips2020,2020,Smoothed Analysis of Online and Differentially Private Learning.
NIPS,neurips2020,2020,Self-Paced Deep Reinforcement Learning.
NIPS,neurips2020,2020,Kalman Filtering Attention for User Behavior Modeling in CTR Prediction.
NIPS,neurips2020,2020,Towards Maximizing the Representation Gap between In-Domain & Out-of-Distribution Examples.
NIPS,neurips2020,2020,Fully Convolutional Mesh Autoencoder using Efficient Spatially Varying Kernels.
NIPS,neurips2020,2020,GNNGuard: Defending Graph Neural Networks against Adversarial Attacks.
NIPS,neurips2020,2020,Geo-PIFu: Geometry and Pixel Aligned Implicit Functions for Single-view Human Reconstruction.
NIPS,neurips2020,2020,Optimal visual search based on a model of target detectability in natural images.
NIPS,neurips2020,2020,Towards Convergence Rate Analysis of Random Forests for Classification.
NIPS,neurips2020,2020,List-Decodable Mean Estimation via Iterative Multi-Filtering.
NIPS,neurips2020,2020,Exact Recovery of Mangled Clusters with Same-Cluster Queries.
NIPS,neurips2020,2020,Steady State Analysis of Episodic Reinforcement Learning.
NIPS,neurips2020,2020,Direct Feedback Alignment Scales to Modern Deep Learning Tasks and Architectures.
NIPS,neurips2020,2020,Bayesian Optimization for Iterative Learning.
NIPS,neurips2020,2020,Minimax Bounds for Generalized Linear Models.
NIPS,neurips2020,2020,Projection Robust Wasserstein Distance and Riemannian Optimization.
NIPS,neurips2020,2020,CoinDICE: Off-Policy Confidence Interval Estimation.
NIPS,neurips2020,2020,Simple and Fast Algorithm for Binary Integer and Online Linear Programming.
NIPS,neurips2020,2020,Learning Diverse and Discriminative Representations via the Principle of Maximal Coding Rate Reduction.
NIPS,neurips2020,2020,Learning Rich Rankings.
NIPS,neurips2020,2020,Color Visual Illusions: A Statistics-based Computational Model.
NIPS,neurips2020,2020,Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks.
NIPS,neurips2020,2020,Universal guarantees for decision tree induction via a higher-order splitting criterion.
NIPS,neurips2020,2020,Trade-offs and Guarantees of Adversarial Representation Learning for Information Obfuscation.
NIPS,neurips2020,2020,A Boolean Task Algebra for Reinforcement Learning.
NIPS,neurips2020,2020,Learning with Differentiable Pertubed Optimizers.
NIPS,neurips2020,2020,Optimal Learning from Verified Training Data.
NIPS,neurips2020,2020,Online Linear Optimization with Many Hints.
NIPS,neurips2020,2020,Dynamical mean-field theory for stochastic gradient descent in Gaussian mixture classification.
NIPS,neurips2020,2020,Causal Discovery from Soft Interventions with Unknown Targets: Characterization and Learning.
NIPS,neurips2020,2020,Exploiting the Surrogate Gap in Online Multiclass Classification.
NIPS,neurips2020,2020,The Pitfalls of Simplicity Bias in Neural Networks.
NIPS,neurips2020,2020,Automatically Learning Compact Quality-aware Surrogates for Optimization Problems.
NIPS,neurips2020,2020,Empirical Likelihood for Contextual Bandits.
NIPS,neurips2020,2020,Can Q-Learning with Graph Networks Learn a Generalizable Branching Heuristic for a SAT Solver?
NIPS,neurips2020,2020,Non-reversible Gaussian processes for identifying latent dynamical structure in neural data.
NIPS,neurips2020,2020,Listening to Sounds of Silence for Speech Denoising.
NIPS,neurips2020,2020,BoxE: A Box Embedding Model for Knowledge Base Completion.
NIPS,neurips2020,2020,Coherent Hierarchical Multi-Label Classification Networks.
NIPS,neurips2020,2020,Walsh-Hadamard Variational Inference for Bayesian Deep Learning.
NIPS,neurips2020,2020,Federated Bayesian Optimization via Thompson Sampling.
NIPS,neurips2020,2020,MultiON: Benchmarking Semantic Map Memory using Multi-Object Navigation.
NIPS,neurips2020,2020,Neural Complexity Measures.
NIPS,neurips2020,2020,Optimal Iterative Sketching Methods with the Subsampled Randomized Hadamard Transform.
NIPS,neurips2020,2020,Provably adaptive reinforcement learning in metric spaces.
NIPS,neurips2020,2020,ShapeFlow: Learnable Deformation Flows Among 3D Shapes.
NIPS,neurips2020,2020,Self-Supervised Learning by Cross-Modal Audio-Video Clustering.
NIPS,neurips2020,2020,Optimal Query Complexity of Secure Stochastic Convex Optimization.
NIPS,neurips2020,2020,DynaBERT: Dynamic BERT with Adaptive Width and Depth.
NIPS,neurips2020,2020,Generalization Bound of Gradient Descent for Non-Convex Metric Learning.
NIPS,neurips2020,2020,Dynamic Submodular Maximization.
NIPS,neurips2020,2020,Inference for Batched Bandits.
NIPS,neurips2020,2020,Approximate Cross-Validation with Low-Rank Data in High Dimensions.
NIPS,neurips2020,2020,GANSpace: Discovering Interpretable GAN Controls.
NIPS,neurips2020,2020,Differentiable Expected Hypervolume Improvement for Parallel Multi-Objective Bayesian Optimization.
NIPS,neurips2020,2020,Neuron-level Structured Pruning using Polarization Regularizer.
NIPS,neurips2020,2020,Limits on Testing Structural Changes in Ising Models.
NIPS,neurips2020,2020,Field-wise Learning for Multi-field Categorical Data.
NIPS,neurips2020,2020,Continual Learning in Low-rank Orthogonal Subspaces.
NIPS,neurips2020,2020,Unsupervised Learning of Visual Features by Contrasting Cluster Assignments.
NIPS,neurips2020,2020,Sharpened Generalization Bounds based on Conditional Mutual Information and an Application to Noisy, Iterative Algorithms.
NIPS,neurips2020,2020,Learning Deformable Tetrahedral Meshes for 3D Reconstruction.
NIPS,neurips2020,2020,Information theoretic limits of learning a sparse rule.
NIPS,neurips2020,2020,Self-supervised learning through the eyes of a child.
NIPS,neurips2020,2020,Unsupervised Semantic Aggregation and Deformable Template Matching for Semi-Supervised Learning.
NIPS,neurips2020,2020,A game-theoretic analysis of networked system control for common-pool resource management using multi-agent reinforcement learning.
NIPS,neurips2020,2020,What shapes feature representations? Exploring datasets, architectures, and training.
NIPS,neurips2020,2020,Optimal Best-arm Identification in Linear Bandits.
NIPS,neurips2020,2020,Data Diversification: A Simple Strategy For Neural Machine Translation.
NIPS,neurips2020,2020,Interstellar: Searching Recurrent Architecture for Knowledge Graph Embedding.
NIPS,neurips2020,2020,CoSE: Compositional Stroke Embeddings.
NIPS,neurips2020,2020,Learning Multi-Agent Coordination for Enhancing Target Coverage in Directional Sensor Networks.
NIPS,neurips2020,2020,Biological credit assignment through dynamic inversion of feedforward networks.
NIPS,neurips2020,2020,Discriminative Sounding Objects Localization via Self-supervised Audiovisual Matching.
NIPS,neurips2020,2020,Learning Multi-Agent Communication through Structured Attentive Reasoning.
NIPS,neurips2020,2020,Private Identity Testing for High-Dimensional Distributions.
NIPS,neurips2020,2020,On the Optimal Weighted $\ell_2$ Regularization in Overparameterized Linear Regression.
NIPS,neurips2020,2020,An Efficient Asynchronous Method for Integrating Evolutionary and Gradient-based Policy Search.
NIPS,neurips2020,2020,MetaSDF: Meta-Learning Signed Distance Functions.
NIPS,neurips2020,2020,Simple and Scalable Sparse k-means Clustering via Feature Ranking.
NIPS,neurips2020,2020,Model-based Adversarial Meta-Reinforcement Learning.
NIPS,neurips2020,2020,Graph Policy Network for Transferable Active Learning on Graphs.
NIPS,neurips2020,2020,Towards a Better Global Loss Landscape of GANs.
NIPS,neurips2020,2020,Weighted QMIX: Expanding Monotonic Value Function Factorisation for Deep Multi-Agent Reinforcement Learning.
NIPS,neurips2020,2020,BanditPAM: Almost Linear Time k-Medoids Clustering via Multi-Armed Bandits.
NIPS,neurips2020,2020,UDH: Universal Deep Hiding for Steganography, Watermarking, and Light Field Messaging.
NIPS,neurips2020,2020,Evidential Sparsification of Multimodal Latent Spaces in Conditional Variational Autoencoders.
NIPS,neurips2020,2020,An Unbiased Risk Estimator for Learning with Augmented Classes.
NIPS,neurips2020,2020,AutoBSS: An Efficient Algorithm for Block Stacking Style Search.
NIPS,neurips2020,2020,Pushing the Limits of Narrow Precision Inferencing at Cloud Scale with Microsoft Floating Point.
NIPS,neurips2020,2020,Stochastic Optimization with Laggard Data Pipelines.
NIPS,neurips2020,2020,Self-supervised Auxiliary Learning with Meta-paths for Heterogeneous Graphs.
NIPS,neurips2020,2020,GPS-Net: Graph-based Photometric Stereo Network.
NIPS,neurips2020,2020,Consistent Structural Relation Learning for Zero-Shot Segmentation.
NIPS,neurips2020,2020,Model Selection in Contextual Stochastic Bandit Problems.
NIPS,neurips2020,2020,Truncated Linear Regression in High Dimensions.
NIPS,neurips2020,2020,Incorporating Pragmatic Reasoning Communication into Emergent Language.
NIPS,neurips2020,2020,Deep Subspace Clustering with Data Augmentation.
NIPS,neurips2020,2020,An Empirical Process Approach to the Union Bound: Practical Algorithms for Combinatorial and Linear Bandits.
NIPS,neurips2020,2020,Can Graph Neural Networks Count Substructures?
NIPS,neurips2020,2020,A Bayesian Perspective on Training Speed and Model Selection.
NIPS,neurips2020,2020,On the Modularity of Hypernetworks.
NIPS,neurips2020,2020,Doubly Robust Off-Policy Value and Gradient Estimation for Deterministic Policies.
NIPS,neurips2020,2020,Provably Efficient Neural GTD for Off-Policy Learning.
NIPS,neurips2020,2020,Learning Discrete Energy-based Models via Auxiliary-variable Local Exploration.
NIPS,neurips2020,2020,Stable and expressive recurrent vision models.
NIPS,neurips2020,2020,Entropic Optimal Transport between Unbalanced Gaussian Measures has a Closed Form.
NIPS,neurips2020,2020,BRP-NAS: Prediction-based NAS using GCNs.
NIPS,neurips2020,2020,Deep Shells: Unsupervised Shape Correspondence with Optimal Transport.
NIPS,neurips2020,2020,ISTA-NAS: Efficient and Consistent Neural Architecture Search by Sparse Coding.
NIPS,neurips2020,2020,Rel3D: A Minimally Contrastive Benchmark for Grounding Spatial Relations in 3D.
NIPS,neurips2020,2020,Regularizing Black-box Models for Improved Interpretability.
NIPS,neurips2020,2020,Trust the Model When It Is Confident: Masked Model-based Actor-Critic.
NIPS,neurips2020,2020,Semi-Supervised Neural Architecture Search.
NIPS,neurips2020,2020,Consistency Regularization for Certified Robustness of Smoothed Classifiers.
NIPS,neurips2020,2020,Robust Multi-Agent Reinforcement Learning with Model Uncertainty.
NIPS,neurips2020,2020,SIRI: Spatial Relation Induced Network For Spatial Description Resolution.
NIPS,neurips2020,2020,Adaptive Shrinkage Estimation for Streaming Graphs.
NIPS,neurips2020,2020,Make One-Shot Video Object Segmentation Efficient Again.
NIPS,neurips2020,2020,Depth Uncertainty in Neural Networks.
NIPS,neurips2020,2020,Non-Euclidean Universal Approximation.
NIPS,neurips2020,2020,Constraining Variational Inference with Geometric Jensen-Shannon Divergence.
NIPS,neurips2020,2020,Gibbs Sampling with People.
NIPS,neurips2020,2020,HM-ANN: Efficient Billion-Point Nearest Neighbor Search on Heterogeneous Memory.
NIPS,neurips2020,2020,FrugalML: How to use ML Prediction APIs more accurately and cheaply.
NIPS,neurips2020,2020,Sharp Representation Theorems for ReLU Networks with Precise Dependence on Depth.
NIPS,neurips2020,2020,Shared Experience Actor-Critic for Multi-Agent Reinforcement Learning.
NIPS,neurips2020,2020,Monotone operator equilibrium networks.
NIPS,neurips2020,2020,When and How to Lift the Lockdown? Global COVID-19 Scenario Analysis and Policy Assessment using Compartmental Gaussian Processes.
NIPS,neurips2020,2020,Unsupervised Learning of Lagrangian Dynamics from Images for Prediction and Control.
NIPS,neurips2020,2020,High-Dimensional Sparse Linear Bandits.
NIPS,neurips2020,2020,Non-Stochastic Control with Bandit Feedback.
NIPS,neurips2020,2020,Generalized Leverage Score Sampling for Neural Networks.
NIPS,neurips2020,2020,An Optimal Elimination Algorithm for Learning a Best Arm.
NIPS,neurips2020,2020,Efficient Projection-free Algorithms for Saddle Point Problems.
NIPS,neurips2020,2020,A mathematical model for automatic differentiation in machine learning.
NIPS,neurips2020,2020,Unsupervised Text Generation by Learning from Search.
NIPS,neurips2020,2020,Learning Compositional Rules via Neural Program Synthesis.
NIPS,neurips2020,2020,Incorporating BERT into Parallel Sequence Decoding with Adapters.
NIPS,neurips2020,2020,Estimating Fluctuations in Neural Representations of Uncertain Environments.
NIPS,neurips2020,2020,Discover, Hallucinate, and Adapt: Open Compound Domain Adaptation for Semantic Segmentation.
NIPS,neurips2020,2020,SURF: A Simple, Universal, Robust, Fast Distribution Learning Algorithm.
NIPS,neurips2020,2020,Understanding Approximate Fisher Information for Fast Convergence of Natural Gradient Descent in Wide Neural Networks.
NIPS,neurips2020,2020,General Transportability of Soft Interventions: Completeness Results.
NIPS,neurips2020,2020,GAIT-prop: A biologically plausible learning rule derived from backpropagation of error.
NIPS,neurips2020,2020,Lipschitz Bounds and Provably Robust Training by Laplacian Smoothing.
NIPS,neurips2020,2020,SCOP: Scientific Control for Reliable Neural Network Pruning.
NIPS,neurips2020,2020,Provably Consistent Partial-Label Learning.
NIPS,neurips2020,2020,Robust, Accurate Stochastic Optimization for Variational Inference.
NIPS,neurips2020,2020,Discovering conflicting groups in signed networks.
NIPS,neurips2020,2020,Learning Some Popular Gaussian Graphical Models without Condition Number Bounds.
NIPS,neurips2020,2020,Sense and Sensitivity Analysis: Simple Post-Hoc Analysis of Bias Due to Unobserved Confounding.
NIPS,neurips2020,2020,Mix and Match: An Optimistic Tree-Search Approach for Learning Models from Mixture Distributions.
NIPS,neurips2020,2020,Understanding Double Descent Requires A Fine-Grained Bias-Variance Decomposition.
NIPS,neurips2020,2020,VIME: Extending the Success of Self- and Semi-supervised Learning to Tabular Domain.
NIPS,neurips2020,2020,The Smoothed Possibility of Social Choice.
NIPS,neurips2020,2020,A Decentralized Parallel Algorithm for Training Generative Adversarial Nets.
NIPS,neurips2020,2020,Phase retrieval in high dimensions: Statistical and computational phase transitions.
NIPS,neurips2020,2020,Fair Performance Metric Elicitation.
NIPS,neurips2020,2020,Hybrid Variance-Reduced SGD Algorithms For Minimax Problems with Nonconvex-Linear Function.
NIPS,neurips2020,2020,Belief-Dependent Macro-Action Discovery in POMDPs using the Value of Information.
NIPS,neurips2020,2020,Soft Contrastive Learning for Visual Localization.
NIPS,neurips2020,2020,Fine-Grained Dynamic Head for Object Detection.
NIPS,neurips2020,2020,LoCo: Local Contrastive Representation Learning.
NIPS,neurips2020,2020,Modeling and Optimization Trade-off in Meta-learning.
NIPS,neurips2020,2020,SnapBoost: A Heterogeneous Boosting Machine.
NIPS,neurips2020,2020,On Adaptive Distance Estimation.
NIPS,neurips2020,2020,Stage-wise Conservative Linear Bandits.
NIPS,neurips2020,2020,RELATE: Physically Plausible Multi-Object Scene Synthesis Using Structured Latent Spaces.
NIPS,neurips2020,2020,Metric-Free Individual Fairness in Online Learning.
NIPS,neurips2020,2020,GreedyFool: Distortion-Aware Sparse Adversarial Attack.
NIPS,neurips2020,2020,VAEM: a Deep Generative Model for Heterogeneous Mixed Type Data.
NIPS,neurips2020,2020,RetroXpert: Decompose Retrosynthesis Prediction Like A Chemist.
NIPS,neurips2020,2020,Sample-Efficient Optimization in the Latent Space of Deep Generative Models via Weighted Retraining.
NIPS,neurips2020,2020,Improved Sample Complexity for Incremental Autonomous Exploration in MDPs.
NIPS,neurips2020,2020,TinyTL: Reduce Memory, Not Parameters for Efficient On-Device Learning.
NIPS,neurips2020,2020,RD$^2$: Reward Decomposition with Representation Decomposition.
NIPS,neurips2020,2020,Self-paced Contrastive Learning with Hybrid Memory for Domain Adaptive Object Re-ID.
NIPS,neurips2020,2020,Fairness constraints can help exact inference in structured prediction.
NIPS,neurips2020,2020,Instance-based Generalization in Reinforcement Learning.
NIPS,neurips2020,2020,Smooth And Consistent Probabilistic Regression Trees.
NIPS,neurips2020,2020,Computing Valid p-value for Optimal Changepoint by Selective Inference using Dynamic Programming.
NIPS,neurips2020,2020,Factorized Neural Processes for Neural Processes: K-Shot Prediction of Neural Responses.
NIPS,neurips2020,2020,Winning the Lottery with Continuous Sparsification.
NIPS,neurips2020,2020,Adversarial robustness via robust low rank representations.
NIPS,neurips2020,2020,Joints in Random Forests.
NIPS,neurips2020,2020,Compositional Generalization by Learning Analytical Expressions.
NIPS,neurips2020,2020,JAX MD: A Framework for Differentiable Physics.
NIPS,neurips2020,2020,An implicit function learning approach for parametric modal regression.
NIPS,neurips2020,2020,SDF-SRN: Learning Signed Distance 3D Object Reconstruction from Static Images.
NIPS,neurips2020,2020,Coresets for Robust Training of Deep Neural Networks against Noisy Labels.
NIPS,neurips2020,2020,Adapting to Misspecification in Contextual Bandits.
NIPS,neurips2020,2020,Convergence of Meta-Learning with Task-Specific Adaptation over Partial Parameters.
NIPS,neurips2020,2020,MetaPerturb: Transferable Regularizer for Heterogeneous Tasks and Architectures.
NIPS,neurips2020,2020,Learning to solve TV regularised problems with unrolled algorithms.
NIPS,neurips2020,2020,Object-Centric Learning with Slot Attention.
NIPS,neurips2020,2020,Improving robustness against common corruptions by covariate shift adaptation.
NIPS,neurips2020,2020,Deep Smoothing of the Implied Volatility Surface.
NIPS,neurips2020,2020,Probabilistic Inference with Algebraic Constraints: Theoretical Limits and Practical Approximations.
NIPS,neurips2020,2020,Provable Online CP/PARAFAC Decomposition of a Structured Tensor via Dictionary Learning.
NIPS,neurips2020,2020,Look-ahead Meta Learning for Continual Learning.
NIPS,neurips2020,2020,A polynomial-time algorithm for learning nonparametric causal graphs.
NIPS,neurips2020,2020,Sparse Learning with CART.
NIPS,neurips2020,2020,Proximal Mapping for Deep Regularization.
NIPS,neurips2020,2020,Identifying Causal-Effect Inference Failure with Uncertainty-Aware Models.
NIPS,neurips2020,2020,Hierarchical Granularity Transfer Learning.
NIPS,neurips2020,2020,Deep active inference agents using Monte-Carlo methods.
NIPS,neurips2020,2020,Consistent Estimation of Identifiable Nonparametric Mixture Models from Grouped Observations.
NIPS,neurips2020,2020,Manifold structure in graph embeddings.
NIPS,neurips2020,2020,Adaptive Learned Bloom Filter (Ada-BF): Efficient Utilization of the Classifier with Application to Real-Time Information Filtering on the Web.
NIPS,neurips2020,2020,MCUNet: Tiny Deep Learning on IoT Devices.
NIPS,neurips2020,2020,In search of robust measures of generalization.
NIPS,neurips2020,2020,Task-agnostic Exploration in Reinforcement Learning.
NIPS,neurips2020,2020,Multi-task Additive Models for Robust Estimation and Automatic Structure Discovery.
NIPS,neurips2020,2020,Provably Efficient Reward-Agnostic Navigation with Linear Value Iteration.
NIPS,neurips2020,2020,Softmax Deep Double Deterministic Policy Gradients.
NIPS,neurips2020,2020,Online Decision Based Visual Tracking via Reinforcement Learning.
NIPS,neurips2020,2020,Efficient Marginalization of Discrete and Structured Latent Variables via Sparsity.
NIPS,neurips2020,2020,DeepI2I: Enabling Deep Hierarchical Image-to-Image Translation by Transferring from GANs.
NIPS,neurips2020,2020,Distributional Robustness with IPMs and links to Regularization and GANs.
NIPS,neurips2020,2020,A shooting formulation of deep learning.
NIPS,neurips2020,2020,CSI: Novelty Detection via Contrastive Learning on Distributionally Shifted Instances.
NIPS,neurips2020,2020,Learning Implicit Credit Assignment for Cooperative Multi-Agent Reinforcement Learning.
NIPS,neurips2020,2020,MATE: Plugging in Model Awareness to Task Embedding for Meta Learning.
NIPS,neurips2020,2020,Restless-UCB, an Efficient and Low-complexity Algorithm for Online Restless Bandits.
NIPS,neurips2020,2020,Predictive Information Accelerates Learning in RL.
NIPS,neurips2020,2020,Robust and Heavy-Tailed Mean Estimation Made Simple, via Regret Minimization.
NIPS,neurips2020,2020,High-Fidelity Generative Image Compression.