forked from talengu/paper_seacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiclr_papers.txt
1163 lines (1163 loc) · 92.5 KB
/
iclr_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
ICLR,iclr2018,2018,6th International Conference on Learning Representations, ICLR 2018, Vancouver, BC, Canada, April 30 - May 3, 2018, Conference Track Proceedings.
ICLR,iclr2018,2018,On the Convergence of Adam and Beyond.
ICLR,iclr2018,2018,Synthetic and Natural Noise Both Break Neural Machine Translation.
ICLR,iclr2018,2018,Multi-Scale Dense Networks for Resource Efficient Image Classification.
ICLR,iclr2018,2018,Training and Inference with Integers in Deep Neural Networks.
ICLR,iclr2018,2018,Emergence of Linguistic Communication from Referential Games with Symbolic and Pixel Input.
ICLR,iclr2018,2018,Spherical CNNs.
ICLR,iclr2018,2018,Ask the Right Questions: Active Question Reformulation with Reinforcement Learning.
ICLR,iclr2018,2018,On the insufficiency of existing momentum schemes for Stochastic Optimization.
ICLR,iclr2018,2018,Certifying Some Distributional Robustness with Principled Adversarial Training.
ICLR,iclr2018,2018,Learning Deep Mean Field Games for Modeling Large Population Behavior.
ICLR,iclr2018,2018,Wasserstein Auto-Encoders.
ICLR,iclr2018,2018,Spectral Normalization for Generative Adversarial Networks.
ICLR,iclr2018,2018,Learning to Represent Programs with Graphs.
ICLR,iclr2018,2018,Characterizing Adversarial Subspaces Using Local Intrinsic Dimensionality.
ICLR,iclr2018,2018,Breaking the Softmax Bottleneck: A High-Rank RNN Language Model.
ICLR,iclr2018,2018,Continuous Adaptation via Meta-Learning in Nonstationary and Competitive Environments.
ICLR,iclr2018,2018,Boosting Dilated Convolutional Networks with Mixed Tensor Decompositions.
ICLR,iclr2018,2018,Neural Sketch Learning for Conditional Program Generation.
ICLR,iclr2018,2018,Progressive Growing of GANs for Improved Quality, Stability, and Variation.
ICLR,iclr2018,2018,Variance Reduction for Policy Gradient with Action-Dependent Factorized Baselines.
ICLR,iclr2018,2018,Zero-Shot Visual Imitation.
ICLR,iclr2018,2018,Beyond Word Importance: Contextual Decomposition to Extract Interactions from LSTMs.
ICLR,iclr2018,2018,AmbientGAN: Generative models from lossy measurements.
ICLR,iclr2018,2018,Minimal-Entropy Correlation Alignment for Unsupervised Deep Domain Adaptation.
ICLR,iclr2018,2018,Large Scale Optimal Transport and Mapping Estimation.
ICLR,iclr2018,2018,Truncated horizon Policy Search: Combining Reinforcement Learning & Imitation Learning.
ICLR,iclr2018,2018,Model-Ensemble Trust-Region Policy Optimization.
ICLR,iclr2018,2018,A Neural Representation of Sketch Drawings.
ICLR,iclr2018,2018,Deep Learning with Logged Bandit Feedback.
ICLR,iclr2018,2018,Learning Latent Permutations with Gumbel-Sinkhorn Networks.
ICLR,iclr2018,2018,Learning an Embedding Space for Transferable Robot Skills.
ICLR,iclr2018,2018,Unsupervised Learning of Goal Spaces for Intrinsically Motivated Goal Exploration.
ICLR,iclr2018,2018,Multi-View Data Generation Without View Supervision.
ICLR,iclr2018,2018,Deep Bayesian Bandits Showdown: An Empirical Comparison of Bayesian Deep Networks for Thompson Sampling.
ICLR,iclr2018,2018,Semantic Interpolation in Implicit Models.
ICLR,iclr2018,2018,Fidelity-Weighted Learning.
ICLR,iclr2018,2018,Latent Space Oddity: on the Curvature of Deep Generative Models.
ICLR,iclr2018,2018,Imitation Learning from Visual Data with Multiple Intentions.
ICLR,iclr2018,2018,Hyperparameter optimization: a spectral approach.
ICLR,iclr2018,2018,Leveraging Grammar and Reinforcement Learning for Neural Program Synthesis.
ICLR,iclr2018,2018,Efficient Sparse-Winograd Convolutional Neural Networks.
ICLR,iclr2018,2018,Espresso: Efficient Forward Propagation for Binary Deep Neural Networks.
ICLR,iclr2018,2018,Auto-Conditioned Recurrent Networks for Extended Complex Human Motion Synthesis.
ICLR,iclr2018,2018,Decoupling the Layers in Residual Networks.
ICLR,iclr2018,2018,Polar Transformer Networks.
ICLR,iclr2018,2018,Enhancing The Reliability of Out-of-distribution Image Detection in Neural Networks.
ICLR,iclr2018,2018,Stabilizing Adversarial Nets with Prediction Methods.
ICLR,iclr2018,2018,Graph Attention Networks.
ICLR,iclr2018,2018,Minimax Curriculum Learning: Machine Teaching with Desirable Difficulties and Scheduled Diversity.
ICLR,iclr2018,2018,Generalizing Hamiltonian Monte Carlo with Neural Networks.
ICLR,iclr2018,2018,An Online Learning Approach to Generative Adversarial Networks.
ICLR,iclr2018,2018,Improving GANs Using Optimal Transport.
ICLR,iclr2018,2018,The Kanerva Machine: A Generative Distributed Memory.
ICLR,iclr2018,2018,Mixed Precision Training.
ICLR,iclr2018,2018,Latent Constraints: Learning to Generate Conditionally from Unconditional Generative Models.
ICLR,iclr2018,2018,MaskGAN: Better Text Generation via Filling in the _______.
ICLR,iclr2018,2018,Divide and Conquer Networks.
ICLR,iclr2018,2018,Meta-Learning and Universality: Deep Representations and Gradient Descent can Approximate any Learning Algorithm.
ICLR,iclr2018,2018,Maximum a Posteriori Policy Optimisation.
ICLR,iclr2018,2018,Meta Learning Shared Hierarchies.
ICLR,iclr2018,2018,Deep Neural Networks as Gaussian Processes.
ICLR,iclr2018,2018,Syntax-Directed Variational Autoencoder for Structured Data.
ICLR,iclr2018,2018,Neural-Guided Deductive Search for Real-Time Program Synthesis from Examples.
ICLR,iclr2018,2018,Evidence Aggregation for Answer Re-Ranking in Open-Domain Question Answering.
ICLR,iclr2018,2018,WRPN: Wide Reduced-Precision Networks.
ICLR,iclr2018,2018,MGAN: Training Generative Adversarial Nets with Multiple Generators.
ICLR,iclr2018,2018,The Reactor: A fast and sample-efficient Actor-Critic agent for Reinforcement Learning.
ICLR,iclr2018,2018,SEARNN: Training RNNs with global-local losses.
ICLR,iclr2018,2018,Distributed Distributional Deterministic Policy Gradients.
ICLR,iclr2018,2018,Hierarchical Subtask Discovery with Non-Negative Matrix Factorization.
ICLR,iclr2018,2018,Parametrized Hierarchical Procedures for Neural Programming.
ICLR,iclr2018,2018,Viterbi-based Pruning for Sparse Matrix with Fixed and High Index Compression Ratio.
ICLR,iclr2018,2018,cGANs with Projection Discriminator.
ICLR,iclr2018,2018,Unsupervised Representation Learning by Predicting Image Rotations.
ICLR,iclr2018,2018,Emergent Communication in a Multi-Modal, Multi-Step Referential Game.
ICLR,iclr2018,2018,FastGCN: Fast Learning with Graph Convolutional Networks via Importance Sampling.
ICLR,iclr2018,2018,Emergent Translation in Multi-Agent Communication.
ICLR,iclr2018,2018,An efficient framework for learning sentence representations.
ICLR,iclr2018,2018,NerveNet: Learning Structured Policy with Graph Neural Networks.
ICLR,iclr2018,2018,Learning Latent Representations in Neural Networks for Clustering through Pseudo Supervision and Graph-based Activity Regularization.
ICLR,iclr2018,2018,Adversarial Dropout Regularization.
ICLR,iclr2018,2018,Demystifying MMD GANs.
ICLR,iclr2018,2018,Smooth Loss Functions for Deep Top-k Classification.
ICLR,iclr2018,2018,Deep Learning as a Mixed Convex-Combinatorial Optimization Problem.
ICLR,iclr2018,2018,Learning Approximate Inference Networks for Structured Prediction.
ICLR,iclr2018,2018,Learning to Share: simultaneous parameter tying and Sparsification in Deep Learning.
ICLR,iclr2018,2018,Model compression via distillation and quantization.
ICLR,iclr2018,2018,Variational Message Passing with Structured Inference Networks.
ICLR,iclr2018,2018,Action-dependent Control Variates for Policy Optimization via Stein Identity.
ICLR,iclr2018,2018,Variational image compression with a scale hyperprior.
ICLR,iclr2018,2018,Variational Inference of Disentangled Latent Concepts from Unlabeled Observations.
ICLR,iclr2018,2018,Flipout: Efficient Pseudo-Independent Weight Perturbations on Mini-Batches.
ICLR,iclr2018,2018,Kernel Implicit Variational Inference.
ICLR,iclr2018,2018,A Scalable Laplace Approximation for Neural Networks.
ICLR,iclr2018,2018,The High-Dimensional Geometry of Binary Neural Networks.
ICLR,iclr2018,2018,Apprentice: Using Knowledge Distillation Techniques To Improve Low-Precision Network Accuracy.
ICLR,iclr2018,2018,Distributed Prioritized Experience Replay.
ICLR,iclr2018,2018,Learning from Between-class Examples for Deep Sound Recognition.
ICLR,iclr2018,2018,Training Confidence-calibrated Classifiers for Detecting Out-of-Distribution Samples.
ICLR,iclr2018,2018,VoiceLoop: Voice Fitting and Synthesis via a Phonological Loop.
ICLR,iclr2018,2018,Large scale distributed neural network training through online distillation.
ICLR,iclr2018,2018,Learning Differentially Private Recurrent Language Models.
ICLR,iclr2018,2018,Mastering the Dungeon: Grounded Language Learning by Mechanical Turker Descent.
ICLR,iclr2018,2018,Generating Wikipedia by Summarizing Long Sequences.
ICLR,iclr2018,2018,Unsupervised Machine Translation Using Monolingual Corpora Only.
ICLR,iclr2018,2018,A Deep Reinforced Model for Abstractive Summarization.
ICLR,iclr2018,2018,Compressing Word Embeddings via Deep Compositional Code Learning.
ICLR,iclr2018,2018,Deep Gradient Compression: Reducing the Communication Bandwidth for Distributed Training.
ICLR,iclr2018,2018,QANet: Combining Local Convolution with Global Self-Attention for Reading Comprehension.
ICLR,iclr2018,2018,Unsupervised Neural Machine Translation.
ICLR,iclr2018,2018,Learning One-hidden-layer Neural Networks with Landscape Design.
ICLR,iclr2018,2018,Critical Points of Linear Neural Networks: Analytical Forms and Landscape Properties.
ICLR,iclr2018,2018,Learning Parametric Closed-Loop Policies for Markov Potential Games.
ICLR,iclr2018,2018,The power of deeper networks for expressing natural functions.
ICLR,iclr2018,2018,Empirical Risk Landscape Analysis for Understanding Deep Neural Networks.
ICLR,iclr2018,2018,On the Discrimination-Generalization Tradeoff in GANs.
ICLR,iclr2018,2018,Decision-Based Adversarial Attacks: Reliable Attacks Against Black-Box Machine Learning Models.
ICLR,iclr2018,2018,Unbiased Online Recurrent Optimization.
ICLR,iclr2018,2018,Measuring the Intrinsic Dimension of Objective Landscapes.
ICLR,iclr2018,2018,Memorization Precedes Generation: Learning Unsupervised GANs with Memory Networks.
ICLR,iclr2018,2018,Stochastic Activation Pruning for Robust Adversarial Defense.
ICLR,iclr2018,2018,Sparse Persistent RNNs: Squeezing Large Recurrent Networks On-Chip.
ICLR,iclr2018,2018,GANITE: Estimation of Individualized Treatment Effects using Generative Adversarial Nets.
ICLR,iclr2018,2018,Thermometer Encoding: One Hot Way To Resist Adversarial Examples.
ICLR,iclr2018,2018,Trust-PCL: An Off-Policy Trust Region Method for Continuous Control.
ICLR,iclr2018,2018,Stochastic Variational Video Prediction.
ICLR,iclr2018,2018,Towards Image Understanding from Deep Compression Without Decoding.
ICLR,iclr2018,2018,Automatically Inferring Data Quality for Spatiotemporal Forecasting.
ICLR,iclr2018,2018,Towards better understanding of gradient-based attribution methods for Deep Neural Networks.
ICLR,iclr2018,2018,Countering Adversarial Images using Input Transformations.
ICLR,iclr2018,2018,Skip RNN: Learning to Skip State Updates in Recurrent Neural Networks.
ICLR,iclr2018,2018,Modular Continual Learning in a Unified Visual Environment.
ICLR,iclr2018,2018,Twin Networks: Matching the Future for Sequence Generation.
ICLR,iclr2018,2018,Interpretable Counting for Visual Question Answering.
ICLR,iclr2018,2018,Interactive Grounded Language Acquisition and Generalization in a 2D World.
ICLR,iclr2018,2018,Emergent Complexity via Multi-Agent Competition.
ICLR,iclr2018,2018,Universal Agent for Disentangling Environments and Tasks.
ICLR,iclr2018,2018,Residual Connections Encourage Iterative Inference.
ICLR,iclr2018,2018,Emergent Communication through Negotiation.
ICLR,iclr2018,2018,Semi-parametric topological memory for navigation.
ICLR,iclr2018,2018,Learning to Count Objects in Natural Images for Visual Question Answering.
ICLR,iclr2018,2018,i-RevNet: Deep Invertible Networks.
ICLR,iclr2018,2018,Evaluating the Robustness of Neural Networks: An Extreme Value Theory Approach.
ICLR,iclr2018,2018,HexaConv.
ICLR,iclr2018,2018,Towards Deep Learning Models Resistant to Adversarial Attacks.
ICLR,iclr2018,2018,Deep Learning for Physical Processes: Incorporating Prior Scientific Knowledge.
ICLR,iclr2018,2018,Communication Algorithms via Deep Learning.
ICLR,iclr2018,2018,Simulating Action Dynamics with Neural Process Networks.
ICLR,iclr2018,2018,Unsupervised Cipher Cracking Using Discrete GANs.
ICLR,iclr2018,2018,Neural Speed Reading via Skim-RNN.
ICLR,iclr2018,2018,Multi-level Residual Networks from Dynamical Systems View.
ICLR,iclr2018,2018,Towards Neural Phrase-based Machine Translation.
ICLR,iclr2018,2018,On the State of the Art of Evaluation in Neural Language Models.
ICLR,iclr2018,2018,Memory-based Parameter Adaptation.
ICLR,iclr2018,2018,Initialization matters: Orthogonal Predictive State Recurrent Neural Networks.
ICLR,iclr2018,2018,PixelDefend: Leveraging Generative Models to Understand and Defend against Adversarial Examples.
ICLR,iclr2018,2018,Certified Defenses against Adversarial Examples.
ICLR,iclr2018,2018,Defense-GAN: Protecting Classifiers Against Adversarial Attacks Using Generative Models.
ICLR,iclr2018,2018,Ensemble Adversarial Training: Attacks and Defenses.
ICLR,iclr2018,2018,Fraternal Dropout.
ICLR,iclr2018,2018,Can recurrent neural networks warp time?
ICLR,iclr2018,2018,Parallelizing Linear Recurrent Neural Nets Over Sequence Length.
ICLR,iclr2018,2018,Attacking Binarized Neural Networks.
ICLR,iclr2018,2018,Depthwise Separable Convolutions for Neural Machine Translation.
ICLR,iclr2018,2018,Noisy Networks For Exploration.
ICLR,iclr2018,2018,A Hierarchical Model for Device Placement.
ICLR,iclr2018,2018,Deep Autoencoding Gaussian Mixture Model for Unsupervised Anomaly Detection.
ICLR,iclr2018,2018,Learning Discrete Weights Using the Local Reparameterization Trick.
ICLR,iclr2018,2018,Deep Rewiring: Training very sparse deep networks.
ICLR,iclr2018,2018,Quantitatively Evaluating GANs With Divergences Proposed for Training.
ICLR,iclr2018,2018,Improving GAN Training via Binarized Representation Entropy (BRE) Regularization.
ICLR,iclr2018,2018,Generative networks as inverse problems with Scattering transforms.
ICLR,iclr2018,2018,Critical Percolation as a Framework to Analyze the Training of Deep Networks.
ICLR,iclr2018,2018,On the Expressive Power of Overlapping Architectures of Deep Learning.
ICLR,iclr2018,2018,Rethinking the Smaller-Norm-Less-Informative Assumption in Channel Pruning of Convolution Layers.
ICLR,iclr2018,2018,Diffusion Convolutional Recurrent Neural Network: Data-Driven Traffic Forecasting.
ICLR,iclr2018,2018,Simulated+Unsupervised Learning With Adaptive Data Generation and Bidirectional Mappings.
ICLR,iclr2018,2018,Relational Neural Expectation Maximization: Unsupervised Discovery of Objects and their Interactions.
ICLR,iclr2018,2018,Generative Models of Visually Grounded Imagination.
ICLR,iclr2018,2018,Few-shot Autoregressive Density Estimation: Towards Learning to Learn Distributions.
ICLR,iclr2018,2018,Compositional Obverter Communication Learning from Raw Visual Input.
ICLR,iclr2018,2018,SCAN: Learning Hierarchical Compositional Visual Concepts.
ICLR,iclr2018,2018,Hierarchical Density Order Embeddings.
ICLR,iclr2018,2018,Identifying Analogies Across Domains.
ICLR,iclr2018,2018,Emergence of grid-like representations by training recurrent neural networks to perform spatial localization.
ICLR,iclr2018,2018,Learning a neural response metric for retinal prosthesis.
ICLR,iclr2018,2018,Few-Shot Learning with Graph Neural Networks.
ICLR,iclr2018,2018,Semantically Decomposing the Latent Spaces of Generative Adversarial Networks.
ICLR,iclr2018,2018,A Framework for the Quantitative Evaluation of Disentangled Representations.
ICLR,iclr2018,2018,Meta-Learning for Semi-Supervised Few-Shot Classification.
ICLR,iclr2018,2018,A DIRT-T Approach to Unsupervised Domain Adaptation.
ICLR,iclr2018,2018,Generalizing Across Domains via Cross-Gradient Training.
ICLR,iclr2018,2018,Learning to cluster in order to transfer across domains and tasks.
ICLR,iclr2018,2018,Deep Complex Networks.
ICLR,iclr2018,2018,Skip Connections Eliminate Singularities.
ICLR,iclr2018,2018,Bi-Directional Block Self-Attention for Fast and Memory-Efficient Sequence Modeling.
ICLR,iclr2018,2018,Routing Networks: Adaptive Selection of Non-Linear Functions for Multi-Task Learning.
ICLR,iclr2018,2018,Wavelet Pooling for Convolutional Neural Networks.
ICLR,iclr2018,2018,FearNet: Brain-Inspired Model for Incremental Learning.
ICLR,iclr2018,2018,Do GANs learn the distribution? Some Theory and Empirics.
ICLR,iclr2018,2018,Towards Reverse-Engineering Black-Box Neural Networks.
ICLR,iclr2018,2018,Understanding Deep Neural Networks with Rectified Linear Units.
ICLR,iclr2018,2018,Training wide residual networks for deployment using a single bit for each weight.
ICLR,iclr2018,2018,Learn to Pay Attention.
ICLR,iclr2018,2018,Monotonic Chunkwise Attention.
ICLR,iclr2018,2018,Recasting Gradient-Based Meta-Learning as Hierarchical Bayes.
ICLR,iclr2018,2018,Don't Decay the Learning Rate, Increase the Batch Size.
ICLR,iclr2018,2018,Kronecker-factored Curvature Approximations for Recurrent Neural Networks.
ICLR,iclr2018,2018,Proximal Backpropagation.
ICLR,iclr2018,2018,Neumann Optimizer: A Practical Optimization Algorithm for Deep Neural Networks.
ICLR,iclr2018,2018,SGD Learns Over-parameterized Networks that Provably Generalize on Linearly Separable Data.
ICLR,iclr2018,2018,A PAC-Bayesian Approach to Spectrally-Normalized Margin Bounds for Neural Networks.
ICLR,iclr2018,2018,On the importance of single directions for generalization.
ICLR,iclr2018,2018,The Implicit Bias of Gradient Descent on Separable Data.
ICLR,iclr2018,2018,Many Paths to Equilibrium: GANs Do Not Need to Decrease a Divergence At Every Step.
ICLR,iclr2018,2018,Adaptive Dropout with Rademacher Complexity Regularization.
ICLR,iclr2018,2018,A Bayesian Perspective on Generalization and Stochastic Gradient Descent.
ICLR,iclr2018,2018,Implicit Causal Models for Genome-wide Association Studies.
ICLR,iclr2018,2018,Sensitivity and Generalization in Neural Networks: an Empirical Study.
ICLR,iclr2018,2018,Regularizing and Optimizing LSTM Language Models.
ICLR,iclr2018,2018,DCN+: Mixed Objective And Deep Residual Coattention for Question Answering.
ICLR,iclr2018,2018,Word translation without parallel data.
ICLR,iclr2018,2018,All-but-the-Top: Simple and Effective Postprocessing for Word Representations.
ICLR,iclr2018,2018,Learning General Purpose Distributed Sentence Representations via Large Scale Multi-task Learning.
ICLR,iclr2018,2018,Natural Language Inference over Interaction Space.
ICLR,iclr2018,2018,Multi-Task Learning for Document Ranking and Query Suggestion.
ICLR,iclr2018,2018,Distributed Fine-tuning of Language Models on Private Data.
ICLR,iclr2018,2018,Intrinsic Motivation and Automatic Curricula via Asymmetric Self-Play.
ICLR,iclr2018,2018,Reinforcement Learning Algorithm Selection.
ICLR,iclr2018,2018,Leave no Trace: Learning to Reset for Safe and Autonomous Reinforcement Learning.
ICLR,iclr2018,2018,Consequentialist conditional cooperation in social dilemmas with imperfect information.
ICLR,iclr2018,2018,Can Neural Networks Understand Logical Entailment?
ICLR,iclr2018,2018,Cascade Adversarial Machine Learning Regularized with a Unified Embedding.
ICLR,iclr2018,2018,Mitigating Adversarial Effects Through Randomization.
ICLR,iclr2018,2018,Decision Boundary Analysis of Adversarial Examples.
ICLR,iclr2018,2018,Matrix capsules with EM routing.
ICLR,iclr2018,2018,CausalGAN: Learning Causal Implicit Generative Models with Adversarial Training.
ICLR,iclr2018,2018,Learning Wasserstein Embeddings.
ICLR,iclr2018,2018,Training Generative Adversarial Networks via Primal-Dual subgradient Methods: a Lagrangian Perspective on GaN.
ICLR,iclr2018,2018,Activation Maximization Generative Adversarial Nets.
ICLR,iclr2018,2018,Coulomb GANs: Provably Optimal Nash Equilibria via Potential Fields.
ICLR,iclr2018,2018,Improving the Improved Training of Wasserstein GANs: A Consistency Term and Its Dual Effect.
ICLR,iclr2018,2018,FusionNet: Fusing via Fully-aware Attention with Application to Machine Comprehension.
ICLR,iclr2018,2018,Neural Language Modeling by Jointly Learning Syntax and Lexicon.
ICLR,iclr2018,2018,Learning Intrinsic Sparse Structures within Long Short-Term Memory.
ICLR,iclr2018,2018,Deep Active Learning for Named Entity Recognition.
ICLR,iclr2018,2018,Go for a Walk and Arrive at the Answer: Reasoning Over Paths in Knowledge Bases using Reinforcement Learning.
ICLR,iclr2018,2018,Lifelong Learning with Dynamically Expandable Networks.
ICLR,iclr2018,2018,The Role of Minimal Complexity Functions in Unsupervised Learning of Semantic Mappings.
ICLR,iclr2018,2018,Dynamic Neural Program Embeddings for Program Repair.
ICLR,iclr2018,2018,Compositional Attention Networks for Machine Reasoning.
ICLR,iclr2018,2018,Beyond Shared Hierarchies: Deep Multitask Learning through Soft Layer Ordering.
ICLR,iclr2018,2018,Hierarchical Representations for Efficient Architecture Search.
ICLR,iclr2018,2018,Reinforcement Learning on Web Interfaces using Workflow-Guided Exploration.
ICLR,iclr2018,2018,Combining Symbolic Expressions and Black-box Function Evaluations in Neural Programs.
ICLR,iclr2018,2018,Scalable Private Learning with PATE.
ICLR,iclr2018,2018,Active Learning for Convolutional Neural Networks: A Core-Set Approach.
ICLR,iclr2018,2018,Loss-aware Weight Quantization of Deep Networks.
ICLR,iclr2018,2018,Global Optimality Conditions for Deep Neural Networks.
ICLR,iclr2018,2018,SpectralNet: Spectral Clustering using Deep Neural Networks.
ICLR,iclr2018,2018,Not-So-Random Features.
ICLR,iclr2018,2018,Learning how to explain neural networks: PatternNet and PatternAttribution.
ICLR,iclr2018,2018,Detecting Statistical Interactions from Neural Network Weights.
ICLR,iclr2018,2018,Deep Gaussian Embedding of Graphs: Unsupervised Inductive Learning via Ranking.
ICLR,iclr2018,2018,Generating Natural Adversarial Examples.
ICLR,iclr2018,2018,Spatially Transformed Adversarial Examples.
ICLR,iclr2018,2018,Predicting Floor-Level for 911 Calls with Neural Networks and Smartphone Sensor Data.
ICLR,iclr2018,2018,Understanding image motion with group representations.
ICLR,iclr2018,2018,Learning Awareness Models.
ICLR,iclr2018,2018,Backpropagation through the Void: Optimizing control variates for black-box gradient estimation.
ICLR,iclr2018,2018,On Unifying Deep Generative Models.
ICLR,iclr2018,2018,Debiasing Evidence Approximations: On Importance-weighted Autoencoders and Jackknife Variational Inference.
ICLR,iclr2018,2018,Learning a Generative Model for Validity in Complex Discrete Structures.
ICLR,iclr2018,2018,Boundary Seeking GANs.
ICLR,iclr2018,2018,Learning Sparse Latent Representations with the Deep Copula Information Bottleneck.
ICLR,iclr2018,2018,WHAI: Weibull Hybrid Autoencoding Inference for Deep Topic Modeling.
ICLR,iclr2018,2018,Understanding Short-Horizon Bias in Stochastic Meta-Optimization.
ICLR,iclr2018,2018,Self-ensembling for visual domain adaptation.
ICLR,iclr2018,2018,Gradient Estimators for Implicit Models.
ICLR,iclr2018,2018,Learning to Multi-Task by Active Sampling.
ICLR,iclr2018,2018,Learning Robust Rewards with Adverserial Inverse Reinforcement Learning.
ICLR,iclr2018,2018,A Simple Neural Attentive Meta-Learner.
ICLR,iclr2018,2018,Deep Learning and Quantum Entanglement: Fundamental Connections with Implications to Network Design.
ICLR,iclr2018,2018,Towards Synthesizing Complex Programs From Input-Output Examples.
ICLR,iclr2018,2018,Expressive power of recurrent neural networks.
ICLR,iclr2018,2018,Improving the Universality and Learnability of Neural Programmer-Interpreters with Combinator Abstraction.
ICLR,iclr2018,2018,An image representation based convolutional network for DNA classification.
ICLR,iclr2018,2018,SMASH: One-Shot Model Architecture Search through HyperNetworks.
ICLR,iclr2018,2018,Parameter Space Noise for Exploration.
ICLR,iclr2018,2018,Synthesizing realistic neural population activity patterns using Generative Adversarial Networks.
ICLR,iclr2018,2018,Auto-Encoding Sequential Monte Carlo.
ICLR,iclr2018,2018,Learning to Teach.
ICLR,iclr2018,2018,PixelNN: Example-based Image Synthesis.
ICLR,iclr2018,2018,Non-Autoregressive Neural Machine Translation.
ICLR,iclr2018,2018,Deep Voice 3: Scaling Text-to-Speech with Convolutional Sequence Learning.
ICLR,iclr2018,2018,mixup: Beyond Empirical Risk Minimization.
ICLR,iclr2018,2018,TD or not TD: Analyzing the Role of Temporal Differencing in Deep Reinforcement Learning.
ICLR,iclr2018,2018,DORA The Explorer: Directed Outreaching Reinforcement Action-Selection.
ICLR,iclr2018,2018,Temporal Difference Models: Model-Free Deep RL for Model-Based Control.
ICLR,iclr2018,2018,TreeQN and ATreeC: Differentiable Tree-Structured Models for Deep Reinforcement Learning.
ICLR,iclr2018,2018,Alternating Multi-bit Quantization for Recurrent Neural Networks.
ICLR,iclr2018,2018,Residual Loss Prediction: Reinforcement Learning With No Incremental Feedback.
ICLR,iclr2018,2018,Adaptive Quantization of Neural Networks.
ICLR,iclr2018,2018,Boosting the Actor with Dual Critic.
ICLR,iclr2018,2018,Guide Actor-Critic for Continuous Control.
ICLR,iclr2018,2018,Policy Optimization by Genetic Distillation.
ICLR,iclr2018,2018,When is a Convolutional Filter Easy to Learn?
ICLR,iclr2018,2018,Online Learning Rate Adaptation with Hypergradient Descent.
ICLR,iclr2018,2018,Stochastic gradient descent performs variational inference, converges to limit cycles for deep networks.
ICLR,iclr2018,2018,Robustness of Classifiers to Universal Perturbations: A Geometric Perspective.
ICLR,iclr2018,2018,On the regularization of Wasserstein GANs.
ICLR,iclr2018,2018,Eigenoption Discovery through the Deep Successor Representation.
ICLR,iclr2018,2018,Neural Map: Structured Memory for Deep Reinforcement Learning.
ICLR,iclr2018,2018,Active Neural Localization.
ICLR,iclr2018,2018,Overcoming Catastrophic Interference using Conceptor-Aided Backpropagation.
ICLR,iclr2018,2018,Memory Augmented Control Networks.
ICLR,iclr2018,2018,Progressive Reinforcement Learning with Distillation for Multi-Skilled Motion Control.
ICLR,iclr2018,2018,N2N learning: Network to Network Compression via Policy Gradient Reinforcement Learning.
ICLR,iclr2018,2018,Hierarchical and Interpretable Skill Acquisition in Multi-task Reinforcement Learning.
ICLR,iclr2018,2018,Divide-and-Conquer Reinforcement Learning.
ICLR,iclr2018,2018,A Compressed Sensing View of Unsupervised Text Embeddings, Bag-of-n-Grams, and LSTMs.
ICLR,iclr2018,2018,A New Method of Region Embedding for Text Classification.
ICLR,iclr2018,2018,Fix your classifier: the marginal value of training the last weight layer.
ICLR,iclr2018,2018,Multi-Mention Learning for Reading Comprehension with Neural Cascades.
ICLR,iclr2018,2018,Deep Sensing: Active Sensing using Multi-directional Recurrent Neural Networks.
ICLR,iclr2018,2018,Temporally Efficient Deep Learning with Spikes.
ICLR,iclr2018,2018,Variational Network Quantization.
ICLR,iclr2018,2018,Training GANs with Optimism.
ICLR,iclr2018,2018,Sobolev GAN.
ICLR,iclr2018,2018,Learning From Noisy Singly-labeled Data.
ICLR,iclr2018,2018,Learning Sparse Neural Networks through L_0 Regularization.
ICLR,iclr2018,2018,Variational Continual Learning.
ICLR,iclr2018,2018,Gaussian Process Behaviour in Wide Deep Neural Networks.
ICLR,iclr2018,2018,Mixed Precision Training of Convolutional Neural Networks using Integer Operations.
ICLR,iclr2018,2018,Memory Architectures in Recurrent Neural Network Language Models.
ICLR,iclr2018,2018,On the Information Bottleneck Theory of Deep Learning.
ICLR,iclr2018w,2018,6th International Conference on Learning Representations, ICLR 2018, Vancouver, BC, Canada, April 30 - May 3, 2018, Workshop Track Proceedings.
ICLR,iclr2018w,2018,Feature Incay for Representation Regularization.
ICLR,iclr2018w,2018,Capturing Human Category Representations by Sampling in Deep Feature Spaces.
ICLR,iclr2018w,2018,Investigating Human Priors for Playing Video Games.
ICLR,iclr2018w,2018,Gradients explode - Deep Networks are shallow - ResNet explained.
ICLR,iclr2018w,2018,Towards Provable Control for Unknown Linear Dynamical Systems.
ICLR,iclr2018w,2018,FigureQA: An Annotated Figure Dataset for Visual Reasoning.
ICLR,iclr2018w,2018,Fast and Accurate Text Classification: Skimming, Rereading and Early Stopping.
ICLR,iclr2018w,2018,Deep learning mutation prediction enables early stage lung cancer detection in liquid biopsy.
ICLR,iclr2018w,2018,Learning Efficient Tensor Representations with Ring Structure Networks.
ICLR,iclr2018w,2018,Building Generalizable Agents with a Realistic and Rich 3D Environment.
ICLR,iclr2018w,2018,Automated Design using Neural Networks and Gradient Descent.
ICLR,iclr2018w,2018,To Prune, or Not to Prune: Exploring the Efficacy of Pruning for Model Compression.
ICLR,iclr2018w,2018,Analyzing and Exploiting NARX Recurrent Neural Networks for Long-Term Dependencies.
ICLR,iclr2018w,2018,Neural Program Search: Solving Programming Tasks from Description and Examples.
ICLR,iclr2018w,2018,The Effectiveness of a two-Layer Neural Network for Recommendations.
ICLR,iclr2018w,2018,Fast Node Embeddings: Learning Ego-Centric Representations.
ICLR,iclr2018w,2018,Can Deep Reinforcement Learning solve Erdos-Selfridge-Spencer Games?
ICLR,iclr2018w,2018,Exploring Deep Recurrent Models with Reinforcement Learning for Molecule Design.
ICLR,iclr2018w,2018,Predict Responsibly: Increasing Fairness by Learning to Defer.
ICLR,iclr2018w,2018,Adversarial Spheres.
ICLR,iclr2018w,2018,Stable Distribution Alignment Using the Dual of the Adversarial Distance.
ICLR,iclr2018w,2018,Time-Dependent Representation for Neural Event Sequence Prediction.
ICLR,iclr2018w,2018,Distributional Adversarial Networks.
ICLR,iclr2018w,2018,Multiple Source Domain Adaptation with Adversarial Learning.
ICLR,iclr2018w,2018,A Flexible Approach to Automated RNN Architecture Generation.
ICLR,iclr2018w,2018,Simple and efficient architecture search for Convolutional Neural Networks.
ICLR,iclr2018w,2018,Convolutional Sequence Modeling Revisited.
ICLR,iclr2018w,2018,Decoding Decoders: Finding Optimal Representation Spaces for Unsupervised Similarity Tasks.
ICLR,iclr2018w,2018,Searching for Activation Functions.
ICLR,iclr2018w,2018,Benefits of Depth for Long-Term Memory of Recurrent Networks.
ICLR,iclr2018w,2018,Accelerating Neural Architecture Search using Performance Prediction.
ICLR,iclr2018w,2018,Faster Discovery of Neural Architectures by Searching for Paths in a Large Model.
ICLR,iclr2018w,2018,DLVM: A modern compiler infrastructure for deep learning systems.
ICLR,iclr2018w,2018,Adversarial Policy Gradient for Alternating Markov Games.
ICLR,iclr2018w,2018,Variance-based Gradient Compression for Efficient Distributed Deep Learning.
ICLR,iclr2018w,2018,Ensemble Robustness and Generalization of Stochastic Deep Learning Algorithms.
ICLR,iclr2018w,2018,Kronecker Recurrent Units.
ICLR,iclr2018w,2018,Neuron as an Agent.
ICLR,iclr2018w,2018,Intriguing Properties of Adversarial Examples.
ICLR,iclr2018w,2018,No Spurious Local Minima in a Two Hidden Unit ReLU Network.
ICLR,iclr2018w,2018,Lsh-Sampling breaks the Computational chicken-and-egg Loop in adaptive stochastic Gradient estimation.
ICLR,iclr2018w,2018,Learning Representations and Generative Models for 3D Point Clouds.
ICLR,iclr2018w,2018,Cold fusion: Training Seq2seq Models Together with Language Models.
ICLR,iclr2018w,2018,Extending the Framework of Equilibrium Propagation to General Dynamics.
ICLR,iclr2018w,2018,Learning Deep Models: Critical Points and Local Openness.
ICLR,iclr2018w,2018,Covariant Compositional Networks For Learning Graphs.
ICLR,iclr2018w,2018,Empirical Analysis of the Hessian of Over-Parametrized Neural Networks.
ICLR,iclr2018w,2018,Regularization Neural Networks via Constrained Virtual Movement Field.
ICLR,iclr2018w,2018,Graph Partition Neural Networks for Semi-Supervised Classification.
ICLR,iclr2018w,2018,The loss surface and expressivity of deep convolutional neural networks.
ICLR,iclr2018w,2018,Weightless: Lossy weight encoding for deep neural network compression.
ICLR,iclr2018w,2018,Exponentially vanishing sub-optimal local minima in multilayer neural networks.
ICLR,iclr2018w,2018,Tree-to-tree Neural Networks for Program Translation.
ICLR,iclr2018w,2018,Aspect-based Question Generation.
ICLR,iclr2018w,2018,Shifting Mean Activation Towards Zero with Bipolar Activation Functions.
ICLR,iclr2018w,2018,Challenges in Disentangling Independent Factors of Variation.
ICLR,iclr2018w,2018,Learning to Organize Knowledge with N-Gram Machines.
ICLR,iclr2018w,2018,Rotational Unit of Memory.
ICLR,iclr2018w,2018,DNA-GAN: Learning Disentangled Representations from Multi-Attribute Images.
ICLR,iclr2018w,2018,Autoregressive Generative Adversarial Networks.
ICLR,iclr2018w,2018,Regret Minimization for Partially Observable Deep Reinforcement Learning.
ICLR,iclr2018w,2018,Beyond Finite Layer Neural Networks: Bridging Deep Architectures and Numerical Differential Equations.
ICLR,iclr2018w,2018,PDE-Net: Learning PDEs from Data.
ICLR,iclr2018w,2018,Reinforcement Learning from Imperfect Demonstrations.
ICLR,iclr2018w,2018,Adaptive Memory Networks.
ICLR,iclr2018w,2018,Parametric Adversarial Divergences are Good Task Losses for Generative Modeling.
ICLR,iclr2018w,2018,Learning to Infer.
ICLR,iclr2018w,2018,GeoSeq2Seq: Information Geometric Sequence-to-Sequence Networks.
ICLR,iclr2018w,2018,Negative eigenvalues of the Hessian in deep neural networks.
ICLR,iclr2018w,2018,3D-Scene-GAN: Three-dimensional Scene Reconstruction with Generative Adversarial Networks.
ICLR,iclr2018w,2018,Comparing Fixed and Adaptive Computation Time for Recurrent Neural Networks.
ICLR,iclr2018w,2018,ChatPainter: Improving Text to Image Generation using Dialogue.
ICLR,iclr2018w,2018,ReinforceWalk: Learning to Walk in Graph with Monte Carlo Tree Search.
ICLR,iclr2018w,2018,A moth brain learns to read MNIST.
ICLR,iclr2018w,2018,MemCNN: a Framework for Developing Memory Efficient Deep Invertible Networks.
ICLR,iclr2018w,2018,Evaluating visual "common sense" using fine-grained classification and captioning tasks.
ICLR,iclr2018w,2018,Deep Neural Maps.
ICLR,iclr2018w,2018,Clustering Meets Implicit Generative Models.
ICLR,iclr2018w,2018,Coupled Ensembles of Neural Networks.
ICLR,iclr2018w,2018,NAM - Unsupervised Cross-Domain Image Mapping without Cycles or GANs.
ICLR,iclr2018w,2018,Predicting Embryo Morphokinetics in Videos with Late Fusion Nets & Dynamic Decoders.
ICLR,iclr2018w,2018,Differentiable Neural Network Architecture Search.
ICLR,iclr2018w,2018,An Optimization View on Dynamic Routing Between Capsules.
ICLR,iclr2018w,2018,Stable and Effective Trainable Greedy Decoding for Sequence to Sequence Learning.
ICLR,iclr2018w,2018,Tempered Adversarial Networks.
ICLR,iclr2018w,2018,Reward Estimation for Variance Reduction in Deep Reinforcement Learning.
ICLR,iclr2018w,2018,Learning via social awareness: improving sketch representations with facial feedback.
ICLR,iclr2018w,2018,Analysis of Cosmic Microwave Background with Deep Learning.
ICLR,iclr2018w,2018,Jointly Learning "What" and "How" from Instructions and Goal-States.
ICLR,iclr2018w,2018,Uncertainty Estimation via Stochastic Batch Normalization.
ICLR,iclr2018w,2018,Extending Robust Adversarial Reinforcement Learning Considering Adaptation and Diversity.
ICLR,iclr2018w,2018,Leveraging Constraint Logic Programming for Neural Guided Program Synthesis.
ICLR,iclr2018w,2018,Multi-Agent Generative Adversarial Imitation Learning.
ICLR,iclr2018w,2018,Learning Disentangled Representations with Wasserstein Auto-Encoders.
ICLR,iclr2018w,2018,Adaptive Path-Integral Approach for Representation Learning and Planning.
ICLR,iclr2018w,2018,Efficient Entropy For Policy Gradient with Multi-Dimensional Action Space.
ICLR,iclr2018w,2018,DeepNCM: Deep Nearest Class Mean Classifiers.
ICLR,iclr2018w,2018,Learning How Not to Act in Text-based Games.
ICLR,iclr2018w,2018,SGD on Random Mixtures: Private Machine Learning under Data Breach Threats.
ICLR,iclr2018w,2018,Training Shallow and Thin Networks for Acceleration via Knowledge Distillation with Conditional Adversarial Networks.
ICLR,iclr2018w,2018,PPP-Net: Platform-aware Progressive Search for Pareto-optimal Neural Architectures.
ICLR,iclr2018w,2018,Expert-based reward function training: the novel method to train sequence generators.
ICLR,iclr2018w,2018,Systematic Weight Pruning of DNNs using Alternating Direction Method of Multipliers.
ICLR,iclr2018w,2018,Designing Efficient Neural Attention Systems Towards Achieving Human-level Sharp Vision.
ICLR,iclr2018w,2018,Additive Margin Softmax for Face Verification.
ICLR,iclr2018w,2018,ComboGAN: Unrestricted Scalability for Image Domain Translation.
ICLR,iclr2018w,2018,An Experimental Study of Neural Networks for Variable Graphs.
ICLR,iclr2018w,2018,Semi-Supervised Few-Shot Learning with MAML.
ICLR,iclr2018w,2018,Stacked Filters Stationary Flow For Hardware-Oriented Acceleration Of Deep Convolutional Neural Networks.
ICLR,iclr2018w,2018,ShakeDrop regularization.
ICLR,iclr2018w,2018,A Language and Compiler View on Differentiable Programming.
ICLR,iclr2018w,2018,Easing non-convex optimization with neural networks.
ICLR,iclr2018w,2018,Are Efficient Deep Representations Learnable?
ICLR,iclr2018w,2018,Learning Longer-term Dependencies in RNNs with Auxiliary Losses.
ICLR,iclr2018w,2018,Diversity-Driven Exploration Strategy for Deep Reinforcement Learning.
ICLR,iclr2018w,2018,Policy Optimization with Second-Order Advantage Information.
ICLR,iclr2018w,2018,Reconstructing evolutionary trajectories of mutations in cancer.
ICLR,iclr2018w,2018,Meta-Learning a Dynamical Language Model.
ICLR,iclr2018w,2018,A differentiable BLEU loss. Analysis and first results.
ICLR,iclr2018w,2018,Deep Convolutional Malware Classifiers Can Learn from Raw Executables and Labels Only.
ICLR,iclr2018w,2018,Censoring Representations with Multiple-Adversaries over Random Subspaces.
ICLR,iclr2018w,2018,Finding Flatter Minima with SGD.
ICLR,iclr2018w,2018,SufiSent - Universal Sentence Representations Using Suffix Encodings.
ICLR,iclr2018w,2018,Universal Successor Representations for Transfer Reinforcement Learning.
ICLR,iclr2018w,2018,Generative Modeling for Protein Structures.
ICLR,iclr2018w,2018,DiCE: The Infinitely Differentiable Monte-Carlo Estimator.
ICLR,iclr2018w,2018,Meta-Learning for Batch Mode Active Learning.
ICLR,iclr2018w,2018,Combating Adversarial Attacks Using Sparse Representations.
ICLR,iclr2018w,2018,An Evaluation of Fisher Approximations Beyond Kronecker Factorization.
ICLR,iclr2018w,2018,Minimally Redundant Laplacian Eigenmaps.
ICLR,iclr2018w,2018,Synthesizing Audio with GANs.
ICLR,iclr2018w,2018,Causal Discovery Using Proxy Variables.
ICLR,iclr2018w,2018,IamNN: Iterative and Adaptive Mobile Neural Network for efficient image classification.
ICLR,iclr2018w,2018,Pelee: A Real-Time Object Detection System on Mobile Devices.
ICLR,iclr2018w,2018,3D-FilterMap: A Compact Architecture for Deep Convolutional Neural Networks.
ICLR,iclr2018w,2018,Resilient Backpropagation (Rprop) for Batch-learning in TensorFlow.
ICLR,iclr2018w,2018,Semiparametric Reinforcement Learning.
ICLR,iclr2018w,2018,Towards Mixed-initiative generation of multi-channel sequential structure.
ICLR,iclr2018w,2018,An interpretable LSTM neural network for autoregressive exogenous model.
ICLR,iclr2018w,2018,GitGraph - from Computational Subgraphs to Smaller Architecture Search Spaces.
ICLR,iclr2018w,2018,GILBO: One Metric to Measure Them All.
ICLR,iclr2018w,2018,Concept Learning with Energy-Based Models.
ICLR,iclr2018w,2018,eCommerceGAN: A Generative Adversarial Network for e-commerce.
ICLR,iclr2018w,2018,Towards Specification-Directed Program Repair.
ICLR,iclr2018w,2018,Local Explanation Methods for Deep Neural Networks Lack Sensitivity to Parameter Values.
ICLR,iclr2018w,2018,Learning Rich Image Representation with Deep Layer Aggregation.
ICLR,iclr2018w,2018,LSTM Iteration Networks: An Exploration of Differentiable Path Finding.
ICLR,iclr2018w,2018,Spatially Parallel Convolutions.
ICLR,iclr2018w,2018,Decoupling Dynamics and Reward for Transfer Learning.
ICLR,iclr2018w,2018,On the Limitation of Local Intrinsic Dimensionality for Characterizing the Subspaces of Adversarial Examples.
ICLR,iclr2018w,2018,Hockey-Stick GAN.
ICLR,iclr2018w,2018,SpectralWords: Spectral Embeddings Approach to Word Similarity Task for Large Vocabularies.
ICLR,iclr2018w,2018,Understanding the Loss Surface of Single-Layered Neural Networks for Binary Classification.
ICLR,iclr2018w,2018,Attacking the Madry Defense Model with $L_1$-based Adversarial Examples.
ICLR,iclr2018w,2018,Black-box Attacks on Deep Neural Networks via Gradient Estimation.
ICLR,iclr2018w,2018,Efficient Recurrent Neural Networks using Structured Matrices in FPGAs.
ICLR,iclr2018w,2018,Neural network parameter regression for lattice quantum chromodynamics simulations in nuclear and particle physics.
ICLR,iclr2018w,2018,Stochastic Gradient Langevin dynamics that Exploit Neural Network Structure.
ICLR,iclr2018w,2018,Learning Invariances for Policy Generalization.
ICLR,iclr2018w,2018,Faster Neural Networks Straight from JPEG.
ICLR,iclr2018w,2018,Inference in probabilistic graphical models by Graph Neural Networks.
ICLR,iclr2018w,2018,A Proximal Block Coordinate Descent Algorithm for Deep Neural Network Training.
ICLR,iclr2018w,2018,Realistic Evaluation of Semi-Supervised Learning Algorithms.
ICLR,iclr2018w,2018,Learning to Learn Without Labels.
ICLR,iclr2018w,2018,Conditional Networks for Few-Shot Semantic Segmentation.
ICLR,iclr2018w,2018,Practical Hyperparameter Optimization for Deep Learning.
ICLR,iclr2018w,2018,The Mirage of Action-Dependent Baselines in Reinforcement Learning.
ICLR,iclr2018w,2018,Online variance-reducing optimization.
ICLR,iclr2018w,2018,HoME: a Household Multimodal Environment.
ICLR,iclr2018w,2018,Monotonic models for real-time dynamic malware detection.
ICLR,iclr2018w,2018,In reinforcement learning, all objective functions are not equal.
ICLR,iclr2018w,2018,Compression by the signs: distributed learning is a two-way street.
ICLR,iclr2018w,2018,Rethinking Style and Content Disentanglement in Variational Autoencoders.
ICLR,iclr2018w,2018,Bayesian Incremental Learning for Deep Neural Networks.
ICLR,iclr2018w,2018,Wasserstein Auto-Encoders: Latent Dimensionality and Random Encoders.
ICLR,iclr2018w,2018,Feature-Based Metrics for Exploring the Latent Space of Generative Models.
ICLR,iclr2018w,2018,Scalable Estimation via LSH Samplers (LSS).
ICLR,iclr2018w,2018,Learning and Analyzing Vector Encoding of Symbolic Representation.
ICLR,iclr2018w,2018,Iterative GANs for Rotating Visual Objects.
ICLR,iclr2018w,2018,PixelSNAIL: An Improved Autoregressive Generative Model.
ICLR,iclr2018w,2018,Isolating Sources of Disentanglement in Variational Autoencoders.
ICLR,iclr2018w,2018,TransNets for Review Generation.
ICLR,iclr2018w,2018,Towards Variational Generation of Small Graphs.
ICLR,iclr2018w,2018,Selecting the Best in GANs Family: a Post Selection Inference Framework.
ICLR,iclr2018w,2018,Adapting to Continuously Shifting Domains.
ICLR,iclr2018w,2018,Gradient-based Optimization of Neural Network Architecture.
ICLR,iclr2018w,2018,Weighted Geodesic Distance Following Fermat's Principle.
ICLR,iclr2018w,2018,Learning and Memorization.
ICLR,iclr2018w,2018,Semi-Supervised Learning With GANs: Revisiting Manifold Regularization.
ICLR,iclr2018w,2018,Learning Invariance with Compact Transforms.
ICLR,iclr2018w,2018,Depth separation and weight-width trade-offs for sigmoidal neural networks.
ICLR,iclr2018w,2018,A Dataset To Evaluate The Representations Learned By Video Prediction Models.
ICLR,iclr2018w,2018,One-Shot Imitation from Observing Humans via Domain-Adaptive Meta-Learning.
ICLR,iclr2018w,2018,Nonlinear Acceleration of CNNs.
ICLR,iclr2018w,2018,Winner's Curse? On Pace, Progress, and Empirical Rigor.
ICLR,iclr2017,2017,5th International Conference on Learning Representations, ICLR 2017, Toulon, France, April 24-26, 2017, Conference Track Proceedings.
ICLR,iclr2017,2017,Making Neural Programming Architectures Generalize via Recursion.
ICLR,iclr2017,2017,End-to-end Optimized Image Compression.
ICLR,iclr2017,2017,Optimization as a Model for Few-Shot Learning.
ICLR,iclr2017,2017,Learning End-to-End Goal-Oriented Dialog.
ICLR,iclr2017,2017,Towards Principled Methods for Training Generative Adversarial Networks.
ICLR,iclr2017,2017,Reinforcement Learning with Unsupervised Auxiliary Tasks.
ICLR,iclr2017,2017,Multi-Agent Cooperation and the Emergence of (Natural) Language.
ICLR,iclr2017,2017,Understanding deep learning requires rethinking generalization.
ICLR,iclr2017,2017,Neural Architecture Search with Reinforcement Learning.
ICLR,iclr2017,2017,Q-Prop: Sample-Efficient Policy Gradient with An Off-Policy Critic.
ICLR,iclr2017,2017,Learning to Act by Predicting the Future.
ICLR,iclr2017,2017,On Large-Batch Training for Deep Learning: Generalization Gap and Sharp Minima.
ICLR,iclr2017,2017,Semi-supervised Knowledge Transfer for Deep Learning from Private Training Data.
ICLR,iclr2017,2017,Amortised MAP Inference for Image Super-resolution.
ICLR,iclr2017,2017,Learning Graphical State Transitions.
ICLR,iclr2017,2017,Maximum Entropy Flow Networks.
ICLR,iclr2017,2017,Topology and Geometry of Half-Rectified Network Optimization.
ICLR,iclr2017,2017,Paying More Attention to Attention: Improving the Performance of Convolutional Neural Networks via Attention Transfer.
ICLR,iclr2017,2017,Learning Visual Servoing with Deep Features and Fitted Q-Iteration.
ICLR,iclr2017,2017,Stochastic Neural Networks for Hierarchical Reinforcement Learning.
ICLR,iclr2017,2017,Nonparametric Neural Networks.
ICLR,iclr2017,2017,Distributed Second-Order Optimization using Kronecker-Factored Approximations.
ICLR,iclr2017,2017,Pruning Filters for Efficient ConvNets.
ICLR,iclr2017,2017,Learning to Generate Samples from Noise through Infusion Training.
ICLR,iclr2017,2017,Filter shaping for Convolutional Neural Networks.
ICLR,iclr2017,2017,Normalizing the Normalizers: Comparing and Extending Network Normalization Schemes.
ICLR,iclr2017,2017,Multilayer Recurrent Network Models of Primate Retinal Ganglion Cell Responses.
ICLR,iclr2017,2017,Improving Generative Adversarial Networks with Denoising Feature Matching.
ICLR,iclr2017,2017,Efficient Vector Representation for Documents through Corruption.
ICLR,iclr2017,2017,Learning Invariant Feature Spaces to Transfer Skills with Reinforcement Learning.
ICLR,iclr2017,2017,Transfer of View-manifold Learning to Similarity Perception of Novel Objects.
ICLR,iclr2017,2017,What does it take to generate natural textures?
ICLR,iclr2017,2017,Emergence of foveal image sampling from learning to attend in visual scenes.
ICLR,iclr2017,2017,An Information-Theoretic Framework for Fast and Robust Unsupervised Learning via Neural Population Infomax.
ICLR,iclr2017,2017,PixelCNN++: Improving the PixelCNN with Discretized Logistic Mixture Likelihood and Other Modifications.
ICLR,iclr2017,2017,Mode Regularized Generative Adversarial Networks.
ICLR,iclr2017,2017,Highway and Residual Networks learn Unrolled Iterative Estimation.
ICLR,iclr2017,2017,Improving Neural Language Models with a Continuous Cache.
ICLR,iclr2017,2017,Unsupervised Cross-Domain Image Generation.
ICLR,iclr2017,2017,Third Person Imitation Learning.
ICLR,iclr2017,2017,Variational Recurrent Adversarial Deep Domain Adaptation.
ICLR,iclr2017,2017,Program Synthesis for Character Level Language Modeling.
ICLR,iclr2017,2017,Episodic Exploration for Deep Deterministic Policies for StarCraft Micromanagement.
ICLR,iclr2017,2017,Soft Weight-Sharing for Neural Network Compression.
ICLR,iclr2017,2017,Neural Program Lattices.
ICLR,iclr2017,2017,Tracking the World State with Recurrent Entity Networks.
ICLR,iclr2017,2017,Steerable CNNs.
ICLR,iclr2017,2017,Learning to Query, Reason, and Answer Questions On Ambiguous Texts.
ICLR,iclr2017,2017,Deep Predictive Coding Networks for Video Prediction and Unsupervised Learning.
ICLR,iclr2017,2017,Diet Networks: Thin Parameters for Fat Genomics.
ICLR,iclr2017,2017,Deep Biaffine Attention for Neural Dependency Parsing.
ICLR,iclr2017,2017,PixelVAE: A Latent Variable Model for Natural Images.
ICLR,iclr2017,2017,Snapshot Ensembles: Train 1, Get M for Free.
ICLR,iclr2017,2017,Training Agent for First-Person Shooter Game with Actor-Critic Curriculum Learning.
ICLR,iclr2017,2017,Neuro-Symbolic Program Synthesis.
ICLR,iclr2017,2017,Decomposing Motion and Content for Natural Video Sequence Prediction.
ICLR,iclr2017,2017,Towards a Neural Statistician.
ICLR,iclr2017,2017,Generative Models and Model Criticism via Optimized Maximum Mean Discrepancy.
ICLR,iclr2017,2017,Generalizing Skills with Semi-Supervised Reinforcement Learning.
ICLR,iclr2017,2017,Learning Curve Prediction with Bayesian Neural Networks.
ICLR,iclr2017,2017,Learning to Optimize.
ICLR,iclr2017,2017,A Compare-Aggregate Model for Matching Text Sequences.
ICLR,iclr2017,2017,Data Noising as Smoothing in Neural Network Language Models.
ICLR,iclr2017,2017,Training Compressed Fully-Connected Networks with a Density-Diversity Penalty.
ICLR,iclr2017,2017,Autoencoding Variational Inference For Topic Models.
ICLR,iclr2017,2017,Optimal Binary Autoencoding with Pairwise Correlations.
ICLR,iclr2017,2017,On the Quantitative Analysis of Decoder-Based Generative Models.
ICLR,iclr2017,2017,Trained Ternary Quantization.
ICLR,iclr2017,2017,DSD: Dense-Sparse-Dense Training for Deep Neural Networks.
ICLR,iclr2017,2017,A Compositional Object-Based Approach to Learning Physical Dynamics.
ICLR,iclr2017,2017,Learning to Remember Rare Events.
ICLR,iclr2017,2017,Transfer Learning for Sequence Tagging with Hierarchical Recurrent Networks.
ICLR,iclr2017,2017,Words or Characters? Fine-grained Gating for Reading Comprehension.
ICLR,iclr2017,2017,A Simple but Tough-to-Beat Baseline for Sentence Embeddings.
ICLR,iclr2017,2017,Capacity and Trainability in Recurrent Neural Networks.
ICLR,iclr2017,2017,Learning to Perform Physics Experiments via Deep Reinforcement Learning.
ICLR,iclr2017,2017,Improving Policy Gradient by Exploring Under-appreciated Rewards.
ICLR,iclr2017,2017,Deep Learning with Dynamic Computation Graphs.
ICLR,iclr2017,2017,Calibrating Energy-based Generative Adversarial Networks.
ICLR,iclr2017,2017,Pruning Convolutional Neural Networks for Resource Efficient Inference.
ICLR,iclr2017,2017,Query-Reduction Networks for Question Answering.
ICLR,iclr2017,2017,Designing Neural Network Architectures using Reinforcement Learning.
ICLR,iclr2017,2017,Machine Comprehension Using Match-LSTM and Answer Pointer.
ICLR,iclr2017,2017,DeepDSL: A Compilation-based Domain-Specific Language for Deep Learning.
ICLR,iclr2017,2017,Bidirectional Attention Flow for Machine Comprehension.
ICLR,iclr2017,2017,Incorporating long-range consistency in CNN-based texture generation.
ICLR,iclr2017,2017,Dynamic Coattention Networks For Question Answering.
ICLR,iclr2017,2017,SampleRNN: An Unconditional End-to-End Neural Audio Generation Model.
ICLR,iclr2017,2017,Metacontrol for Adaptive Imagination-Based Optimization.
ICLR,iclr2017,2017,Exploring Sparsity in Recurrent Neural Networks.
ICLR,iclr2017,2017,Lossy Image Compression with Compressive Autoencoders.
ICLR,iclr2017,2017,Structured Attention Networks.
ICLR,iclr2017,2017,Zoneout: Regularizing RNNs by Randomly Preserving Hidden Activations.
ICLR,iclr2017,2017,Deep Probabilistic Programming.
ICLR,iclr2017,2017,LR-GAN: Layered Recursive Generative Adversarial Networks for Image Generation.
ICLR,iclr2017,2017,Variational Lossy Autoencoder.
ICLR,iclr2017,2017,A recurrent neural network without chaos.
ICLR,iclr2017,2017,Outrageously Large Neural Networks: The Sparsely-Gated Mixture-of-Experts Layer.
ICLR,iclr2017,2017,Tree-structured decoding with doubly-recurrent neural networks.
ICLR,iclr2017,2017,Introspection: Accelerating Neural Network Training By Learning Weight Evolution.
ICLR,iclr2017,2017,Hyperband: Bandit-Based Configuration Evaluation for Hyperparameter Optimization.
ICLR,iclr2017,2017,Lie-Access Neural Turing Machines.
ICLR,iclr2017,2017,Quasi-Recurrent Neural Networks.
ICLR,iclr2017,2017,Recurrent Environment Simulators.
ICLR,iclr2017,2017,EPOpt: Learning Robust Neural Network Policies Using Model Ensembles.
ICLR,iclr2017,2017,Attend, Adapt and Transfer: Attentive Deep Architecture for Adaptive Transfer from multiple sources in the same domain.
ICLR,iclr2017,2017,Multi-view Recurrent Neural Acoustic Word Embeddings.
ICLR,iclr2017,2017,Learning Features of Music From Scratch.
ICLR,iclr2017,2017,A Baseline for Detecting Misclassified and Out-of-Distribution Examples in Neural Networks.
ICLR,iclr2017,2017,Learning to superoptimize programs.
ICLR,iclr2017,2017,Trusting SVM for Piecewise Linear CNNs.
ICLR,iclr2017,2017,Sigma Delta Quantized Networks.
ICLR,iclr2017,2017,A Structured Self-Attentive Sentence Embedding.
ICLR,iclr2017,2017,Regularizing CNNs with Locally Constrained Decorrelations.
ICLR,iclr2017,2017,The Concrete Distribution: A Continuous Relaxation of Discrete Random Variables.
ICLR,iclr2017,2017,Unrolled Generative Adversarial Networks.
ICLR,iclr2017,2017,TopicRNN: A Recurrent Neural Network with Long-Range Semantic Dependency.
ICLR,iclr2017,2017,Frustratingly Short Attention Spans in Neural Language Modeling.
ICLR,iclr2017,2017,Recurrent Hidden Semi-Markov Model.
ICLR,iclr2017,2017,Deep Variational Bayes Filters: Unsupervised Learning of State Space Models from Raw Data.
ICLR,iclr2017,2017,Generative Multi-Adversarial Networks.
ICLR,iclr2017,2017,Mollifying Networks.
ICLR,iclr2017,2017,beta-VAE: Learning Basic Visual Concepts with a Constrained Variational Framework.
ICLR,iclr2017,2017,Offline bilingual word vectors, orthogonal transformations and the inverted softmax.
ICLR,iclr2017,2017,Visualizing Deep Neural Network Decisions: Prediction Difference Analysis.
ICLR,iclr2017,2017,Categorical Reparameterization with Gumbel-Softmax.
ICLR,iclr2017,2017,Online Bayesian Transfer Learning for Sequential Data Modeling.
ICLR,iclr2017,2017,Latent Sequence Decompositions.
ICLR,iclr2017,2017,Paleo: A Performance Model for Deep Neural Networks.
ICLR,iclr2017,2017,Combining policy gradient and Q-learning.
ICLR,iclr2017,2017,Density estimation using Real NVP.
ICLR,iclr2017,2017,Recurrent Batch Normalization.
ICLR,iclr2017,2017,SGDR: Stochastic Gradient Descent with Warm Restarts.
ICLR,iclr2017,2017,Learning a Natural Language Interface with Neural Programmer.
ICLR,iclr2017,2017,Reinforcement Learning through Asynchronous Advantage Actor-Critic on a GPU.
ICLR,iclr2017,2017,Learning to Navigate in Complex Environments.
ICLR,iclr2017,2017,DeepCoder: Learning to Write Programs.
ICLR,iclr2017,2017,Learning and Policy Search in Stochastic Dynamical Systems with Bayesian Neural Networks.
ICLR,iclr2017,2017,Variable Computation in Recurrent Neural Networks.
ICLR,iclr2017,2017,Deep Variational Information Bottleneck.
ICLR,iclr2017,2017,The Neural Noisy Channel.
ICLR,iclr2017,2017,Automatic Rule Extraction from Long Short Term Memory Networks.
ICLR,iclr2017,2017,Dialogue Learning With Human-in-the-Loop.
ICLR,iclr2017,2017,Adversarially Learned Inference.
ICLR,iclr2017,2017,Learning through Dialogue Interactions by Asking Questions.
ICLR,iclr2017,2017,Deep Information Propagation.
ICLR,iclr2017,2017,FractalNet: Ultra-Deep Neural Networks without Residuals.
ICLR,iclr2017,2017,Revisiting Classifier Two-Sample Tests.
ICLR,iclr2017,2017,Learning to Repeat: Fine Grained Action Repetition for Deep Reinforcement Learning.
ICLR,iclr2017,2017,Loss-aware Binarization of Deep Networks.
ICLR,iclr2017,2017,Learning to Play in a Day: Faster Deep Reinforcement Learning by Optimality Tightening.
ICLR,iclr2017,2017,Energy-based Generative Adversarial Networks.
ICLR,iclr2017,2017,Central Moment Discrepancy (CMD) for Domain-Invariant Representation Learning.
ICLR,iclr2017,2017,Incremental Network Quantization: Towards Lossless CNNs with Low-precision Weights.
ICLR,iclr2017,2017,Entropy-SGD: Biasing Gradient Descent Into Wide Valleys.
ICLR,iclr2017,2017,Deep Multi-task Representation Learning: A Tensor Factorisation Approach.
ICLR,iclr2017,2017,Sample Efficient Actor-Critic with Experience Replay.
ICLR,iclr2017,2017,Temporal Ensembling for Semi-Supervised Learning.
ICLR,iclr2017,2017,On Detecting Adversarial Perturbations.
ICLR,iclr2017,2017,Training deep neural-networks using a noise adaptation layer.
ICLR,iclr2017,2017,Learning to Compose Words into Sentences with Reinforcement Learning.
ICLR,iclr2017,2017,Delving into Transferable Adversarial Examples and Black-box Attacks.
ICLR,iclr2017,2017,Identity Matters in Deep Learning.
ICLR,iclr2017,2017,Adversarial Feature Learning.
ICLR,iclr2017,2017,Towards the Limit of Network Quantization.
ICLR,iclr2017,2017,Faster CNNs with Direct Sparse Convolutions and Guided Pruning.
ICLR,iclr2017,2017,Stick-Breaking Variational Autoencoders.
ICLR,iclr2017,2017,Batch Policy Gradient Methods for Improving Neural Conversation Models.
ICLR,iclr2017,2017,Support Regularized Sparse Coding and Its Fast Encoder.
ICLR,iclr2017,2017,Tying Word Vectors and Word Classifiers: A Loss Framework for Language Modeling.
ICLR,iclr2017,2017,Towards Deep Interpretability (MUS-ROVER II): Learning Hierarchical Representations of Tonal Music.
ICLR,iclr2017,2017,Discrete Variational Autoencoders.
ICLR,iclr2017,2017,Do Deep Convolutional Nets Really Need to be Deep and Convolutional?
ICLR,iclr2017,2017,Geometry of Polysemy.
ICLR,iclr2017,2017,Learning Invariant Representations Of Planar Curves.
ICLR,iclr2017,2017,Reasoning with Memory Augmented Neural Networks for Language Comprehension.
ICLR,iclr2017,2017,Learning Recurrent Representations for Hierarchical Behavior Modeling.
ICLR,iclr2017,2017,Adversarial Machine Learning at Scale.
ICLR,iclr2017,2017,Predicting Medications from Diagnostic Codes with Recurrent Neural Networks.
ICLR,iclr2017,2017,Recurrent Mixture Density Network for Spatiotemporal Visual Attention.
ICLR,iclr2017,2017,Inductive Bias of Deep Convolutional Networks through Pooling Geometry.
ICLR,iclr2017,2017,Efficient Representation of Low-Dimensional Manifolds using Deep Networks.
ICLR,iclr2017,2017,Semi-Supervised Classification with Graph Convolutional Networks.
ICLR,iclr2017,2017,Sparsely-Connected Neural Networks: Towards Efficient VLSI Implementation of Deep Neural Networks.
ICLR,iclr2017,2017,Adversarial Training Methods for Semi-Supervised Text Classification.
ICLR,iclr2017,2017,Fine-grained Analysis of Sentence Embeddings Using Auxiliary Prediction Tasks.
ICLR,iclr2017,2017,Pointer Sentinel Mixture Models.
ICLR,iclr2017,2017,An Actor-Critic Algorithm for Sequence Prediction.
ICLR,iclr2017,2017,Understanding Trainable Sparse Coding with Matrix Factorization.
ICLR,iclr2017,2017,Tighter bounds lead to improved classifiers.
ICLR,iclr2017,2017,HolStep: A Machine Learning Dataset for Higher-order Logic Theorem Proving.
ICLR,iclr2017,2017,Why Deep Neural Networks for Function Approximation?
ICLR,iclr2017,2017,Hierarchical Multiscale Recurrent Neural Networks.
ICLR,iclr2017,2017,Neural Photo Editing with Introspective Adversarial Networks.
ICLR,iclr2017,2017,Dropout with Expectation-linear Regularization.
ICLR,iclr2017,2017,HyperNetworks.
ICLR,iclr2017,2017,A Learned Representation For Artistic Style.
ICLR,iclr2017,2017,Hadamard Product for Low-rank Bilinear Pooling.
ICLR,iclr2017w,2017,5th International Conference on Learning Representations, ICLR 2017, Toulon, France, April 24-26, 2017, Workshop Track Proceedings.
ICLR,iclr2017w,2017,A Theoretical Framework for Robustness of (Deep) Classifiers against Adversarial Samples.
ICLR,iclr2017w,2017,Semi-supervised deep learning by metric embedding.
ICLR,iclr2017w,2017,Adaptive Feature Abstraction for Translating Video to Language.
ICLR,iclr2017w,2017,Programming With a Differentiable Forth Interpreter.
ICLR,iclr2017w,2017,Extrapolation and learning equations.
ICLR,iclr2017w,2017,Towards an automatic Turing test: Learning to evaluate dialogue responses.
ICLR,iclr2017w,2017,Fast Chirplet Transform Injects Priors in Deep Learning of Animal Calls and Speech.
ICLR,iclr2017w,2017,Short and Deep: Sketching and Neural Networks.
ICLR,iclr2017w,2017,Symmetry-Breaking Convergence Analysis of Certain Two-layered Neural Networks with ReLU nonlinearity.
ICLR,iclr2017w,2017,Unsupervised Perceptual Rewards for Imitation Learning.
ICLR,iclr2017w,2017,Dataset Augmentation in Feature Space.
ICLR,iclr2017w,2017,Neural Functional Programming.
ICLR,iclr2017w,2017,Lifelong Perceptual Programming By Example.
ICLR,iclr2017w,2017,On Robust Concepts and Small Neural Nets.
ICLR,iclr2017w,2017,Exponential Machines.
ICLR,iclr2017w,2017,Bit-Pragmatic Deep Neural Network Computing.
ICLR,iclr2017w,2017,Online Structure Learning for Sum-Product Networks with Gaussian Leaves.
ICLR,iclr2017w,2017,Deep Learning with Sets and Point Clouds.
ICLR,iclr2017w,2017,Discovering objects and their relations from entangled scene representations.
ICLR,iclr2017w,2017,Multiplicative LSTM for sequence modelling.
ICLR,iclr2017w,2017,Learning to Discover Sparse Graphical Models.
ICLR,iclr2017w,2017,A Differentiable Physics Engine for Deep Learning in Robotics.
ICLR,iclr2017w,2017,Automated Generation of Multilingual Clusters for the Evaluation of Distributed Representations.
ICLR,iclr2017w,2017,Recurrent Normalization Propagation.
ICLR,iclr2017w,2017,RenderGAN: Generating Realistic Labeled Data.
ICLR,iclr2017w,2017,Tuning Recurrent Neural Networks with Reinforcement Learning.
ICLR,iclr2017w,2017,Generalizable Features From Unsupervised Learning.
ICLR,iclr2017w,2017,Perception Updating Networks: On architectural constraints for interpretable video generative models.
ICLR,iclr2017w,2017,Adversarial examples in the physical world.
ICLR,iclr2017w,2017,Development of JavaScript-based deep learning platform and application to distributed training.
ICLR,iclr2017w,2017,Song From PI: A Musically Plausible Network for Pop Music Generation.
ICLR,iclr2017w,2017,Gated Multimodal Units for Information Fusion.
ICLR,iclr2017w,2017,Charged Point Normalization: An Efficient Solution to the Saddle Point Problem.
ICLR,iclr2017w,2017,Compositional Kernel Machines.
ICLR,iclr2017w,2017,The Effectiveness of Transfer Learning in Electronic Health Records Data.
ICLR,iclr2017w,2017,Forced to Learn: Discovering Disentangled Representations Without Exhaustive Labels.
ICLR,iclr2017w,2017,Deep Nets Don't Learn via Memorization.
ICLR,iclr2017w,2017,Intelligent synapses for multi-task and transfer learning.
ICLR,iclr2017w,2017,Learning Algorithms for Active Learning.
ICLR,iclr2017w,2017,Reinterpreting Importance-Weighted Autoencoders.
ICLR,iclr2017w,2017,Unsupervised and Scalable Algorithm for Learning Node Representations.
ICLR,iclr2017w,2017,Accelerating SGD for Distributed Deep-Learning Using an Approximted Hessian Matrix.
ICLR,iclr2017w,2017,Accelerating Eulerian Fluid Simulation With Convolutional Networks.
ICLR,iclr2017w,2017,Robustness to Adversarial Examples through an Ensemble of Specialists.
ICLR,iclr2017w,2017,Neural Combinatorial Optimization with Reinforcement Learning.
ICLR,iclr2017w,2017,Neural Expectation Maximization.
ICLR,iclr2017w,2017,On Hyperparameter Optimization in Learning Systems.
ICLR,iclr2017w,2017,Adversarial Attacks on Neural Network Policies.
ICLR,iclr2017w,2017,Audio Super-Resolution using Neural Networks.
ICLR,iclr2017w,2017,Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results.
ICLR,iclr2017w,2017,Semantic embeddings for program behaviour patterns.
ICLR,iclr2017w,2017,Joint Embeddings of Scene Graphs and Images.
ICLR,iclr2017w,2017,Tactics of Adversarial Attack on Deep Reinforcement Learning Agents.
ICLR,iclr2017w,2017,Joint Training of Ratings and Reviews with Recurrent Recommender Networks.
ICLR,iclr2017w,2017,Particle Value Functions.
ICLR,iclr2017w,2017,Natural Language Generation in Dialogue using Lexicalized and Delexicalized Data.
ICLR,iclr2017w,2017,Loss is its own Reward: Self-Supervision for Reinforcement Learning.
ICLR,iclr2017w,2017,De novo drug design with deep generative models : an empirical study.
ICLR,iclr2017w,2017,Out-of-class novelty generation: an experimental foundation.
ICLR,iclr2017w,2017,Memory Matching Networks for Genomic Sequence Classification.
ICLR,iclr2017w,2017,Unseen Style Transfer Based on a Conditional Fast Style Transfer Network.
ICLR,iclr2017w,2017,Adversarial Discriminative Domain Adaptation (workshop extended abstract).
ICLR,iclr2017w,2017,Changing Model Behavior at Test-time Using Reinforcement Learning.
ICLR,iclr2017w,2017,Efficient Sparse-Winograd Convolutional Neural Networks.
ICLR,iclr2017w,2017,Char2Wav: End-to-End Speech Synthesis.
ICLR,iclr2017w,2017,Performance guarantees for transferring representations.
ICLR,iclr2017w,2017,Generative Adversarial Learning of Markov Chains.
ICLR,iclr2017w,2017,Understanding intermediate layers using linear classifier probes.
ICLR,iclr2017w,2017,DeepCloak: Masking Deep Neural Network Models for Robustness Against Adversarial Samples.
ICLR,iclr2017w,2017,Explaining the Learning Dynamics of Direct Feedback Alignment.
ICLR,iclr2017w,2017,Training a Subsampling Mechanism in Expectation.
ICLR,iclr2017w,2017,Deep Kernel Machines via the Kernel Reparametrization Trick.
ICLR,iclr2017w,2017,Encoding and Decoding Representations with Sum- and Max-Product Networks.
ICLR,iclr2017w,2017,Restricted Boltzmann Machines provide an accurate metric for retinal responses to visual stimuli.
ICLR,iclr2017w,2017,Embracing Data Abundance.
ICLR,iclr2017w,2017,Playing SNES in the Retro Learning Environment.
ICLR,iclr2017w,2017,Variational Intrinsic Control.
ICLR,iclr2017w,2017,Unsupervised Feature Learning for Audio Analysis.
ICLR,iclr2017w,2017,Fast Adaptation in Generative Models with Generative Matching Networks.
ICLR,iclr2017w,2017,Efficient variational Bayesian neural network ensembles for outlier detection.
ICLR,iclr2017w,2017,Emergence of Language with Multi-agent Games: Learning to Communicate with Sequences of Symbols.
ICLR,iclr2017w,2017,A Smooth Optimisation Perspective on Training Feedforward Neural Networks.
ICLR,iclr2017w,2017,Synthetic Gradient Methods with Virtual Forward-Backward Networks.
ICLR,iclr2017w,2017,The Preimage of Rectifier Network Activities.
ICLR,iclr2017w,2017,Joint Multimodal Learning with Deep Generative Models.
ICLR,iclr2017w,2017,Training Triplet Networks with GAN.
ICLR,iclr2017w,2017,Neu0.
ICLR,iclr2017w,2017,Dance Dance Convolution.
ICLR,iclr2017w,2017,Pl@ntNet app in the era of deep learning.
ICLR,iclr2017w,2017,Online Multi-Task Learning Using Active Sampling.
ICLR,iclr2017w,2017,On Improving the Numerical Stability of Winograd Convolutions.
ICLR,iclr2017w,2017,Fast Generation for Convolutional Autoregressive Models.
ICLR,iclr2017w,2017,Factorization tricks for LSTM networks.
ICLR,iclr2017w,2017,Shake-Shake regularization of 3-branch residual networks.
ICLR,iclr2017w,2017,Trace Norm Regularised Deep Multi-Task Learning.
ICLR,iclr2017w,2017,Neurogenesis-Inspired Dictionary Learning: Online Model Adaption in a Changing World.
ICLR,iclr2017w,2017,Delving into adversarial attacks on deep policies.
ICLR,iclr2017w,2017,The High-Dimensional Geometry of Binary Neural Networks.
ICLR,iclr2017w,2017,Revisiting Batch Normalization For Practical Domain Adaptation.
ICLR,iclr2017w,2017,Coupling Distributed and Symbolic Execution for Natural Language Queries.
ICLR,iclr2017w,2017,Transferring Knowledge to Smaller Network with Class-Distance Loss.
ICLR,iclr2017w,2017,Regularizing Neural Networks by Penalizing Confident Output Distributions.
ICLR,iclr2017w,2017,Precise Recovery of Latent Vectors from Generative Adversarial Networks.
ICLR,iclr2017w,2017,Arbitrary Style Transfer in Real-time with Adaptive Instance Normalization.
ICLR,iclr2017w,2017,Adversarial Examples for Semantic Image Segmentation.
ICLR,iclr2017w,2017,Compact Embedding of Binary-coded Inputs and Outputs using Bloom Filters.
ICLR,iclr2017w,2017,REBAR: Low-variance, unbiased gradient estimates for discrete latent variable models.
ICLR,iclr2017w,2017,Variational Reference Priors.
ICLR,iclr2017w,2017,Early Methods for Detecting Adversarial Images.
ICLR,iclr2017w,2017,Towards "AlphaChem": Chemical Synthesis Planning with Tree Search and Deep Neural Network Policies.
ICLR,iclr2017w,2017,CommAI: Evaluating the first steps towards a useful general AI.
ICLR,iclr2016,2016,4th International Conference on Learning Representations, ICLR 2016, San Juan, Puerto Rico, May 2-4, 2016, Conference Track Proceedings.
ICLR,iclr2016,2016,Neural Programmer-Interpreters.
ICLR,iclr2016,2016,Regularizing RNNs by Stabilizing Activations.
ICLR,iclr2016,2016,BlackOut: Speeding up Recurrent Neural Network Language Models With Very Large Vocabularies.
ICLR,iclr2016,2016,The Goldilocks Principle: Reading Children's Books with Explicit Memory Representations.
ICLR,iclr2016,2016,Towards Universal Paraphrastic Sentence Embeddings.
ICLR,iclr2016,2016,Convergent Learning: Do different neural networks learn the same representations?
ICLR,iclr2016,2016,Net2Net: Accelerating Learning via Knowledge Transfer.
ICLR,iclr2016,2016,Variational Gaussian Process.
ICLR,iclr2016,2016,The Variational Fair Autoencoder.
ICLR,iclr2016,2016,A note on the evaluation of generative models.
ICLR,iclr2016,2016,Deep Compression: Compressing Deep Neural Network with Pruning, Trained Quantization and Huffman Coding.
ICLR,iclr2016,2016,Neural Networks with Few Multiplications.
ICLR,iclr2016,2016,Order-Embeddings of Images and Language.
ICLR,iclr2016,2016,Generating Images from Captions with Attention.
ICLR,iclr2016,2016,Density Modeling of Images using a Generalized Normalization Transformation.
ICLR,iclr2016,2016,Multi-Scale Context Aggregation by Dilated Convolutions.
ICLR,iclr2016,2016,Learning to Diagnose with LSTM Recurrent Neural Networks.
ICLR,iclr2016,2016,Prioritized Experience Replay.
ICLR,iclr2016,2016,Importance Weighted Autoencoders.
ICLR,iclr2016,2016,Variational Auto-encoded Deep Gaussian Processes.
ICLR,iclr2016,2016,Training CNNs with Low-Rank Filters for Efficient Image Classification.
ICLR,iclr2016,2016,Reducing Overfitting in Deep Networks by Decorrelating Representations.
ICLR,iclr2016,2016,Surpassing Humans in Boundary Detection using Deep Learning.
ICLR,iclr2016,2016,Reasoning about Entailment with Neural Attention.
ICLR,iclr2016,2016,Convolutional neural networks with low-rank regularization.
ICLR,iclr2016,2016,Unifying distillation and privileged information.
ICLR,iclr2016,2016,Particular object retrieval with integral max-pooling of CNN activations.
ICLR,iclr2016,2016,All you need is a good init.
ICLR,iclr2016,2016,When crowds hold privileges: Bayesian unsupervised representation learning with oracle constraints.
ICLR,iclr2016,2016,Neural Programmer: Inducing Latent Programs with Gradient Descent.
ICLR,iclr2016,2016,SparkNet: Training Deep Networks in Spark.
ICLR,iclr2016,2016,Unsupervised and Semi-supervised Learning with Categorical Generative Adversarial Networks.
ICLR,iclr2016,2016,MuProp: Unbiased Backpropagation for Stochastic Neural Networks.
ICLR,iclr2016,2016,Data Representation and Compression Using Linear-Programming Approximations.
ICLR,iclr2016,2016,Diversity Networks.
ICLR,iclr2016,2016,Deep Reinforcement Learning in Parameterized Action Space.
ICLR,iclr2016,2016,Learning Visual Predictive Models of Physics for Playing Billiards.
ICLR,iclr2016,2016,Towards AI-Complete Question Answering: A Set of Prerequisite Toy Tasks.
ICLR,iclr2016,2016,Evaluating Prerequisite Qualities for Learning End-to-End Dialog Systems.
ICLR,iclr2016,2016,Better Computer Go Player with Neural Network and Long-term Prediction.
ICLR,iclr2016,2016,Distributional Smoothing by Virtual Adversarial Examples.
ICLR,iclr2016,2016,Multi-task Sequence to Sequence Learning.
ICLR,iclr2016,2016,A Test of Relative Similarity For Model Selection in Generative Models.
ICLR,iclr2016,2016,Compression of Deep Convolutional Neural Networks for Fast and Low Power Mobile Applications.
ICLR,iclr2016,2016,Session-based Recommendations with Recurrent Neural Networks.
ICLR,iclr2016,2016,Continuous control with deep reinforcement learning.
ICLR,iclr2016,2016,Recurrent Gaussian Processes.
ICLR,iclr2016,2016,Modeling Visual Representations: Defining Properties and Deep Approximations.
ICLR,iclr2016,2016,Auxiliary Image Regularization for Deep CNNs with Noisy Labels.
ICLR,iclr2016,2016,Policy Distillation.
ICLR,iclr2016,2016,Neural Random-Access Machines.
ICLR,iclr2016,2016,Gated Graph Sequence Neural Networks.
ICLR,iclr2016,2016,Metric Learning with Adaptive Density Discrimination.
ICLR,iclr2016,2016,Censoring Representations with an Adversary.
ICLR,iclr2016,2016,Variable Rate Image Compression with Recurrent Neural Networks.
ICLR,iclr2016,2016,Delving Deeper into Convolutional Networks for Learning Video Representations.
ICLR,iclr2016,2016,8-Bit Approximations for Parallelism in Deep Learning.
ICLR,iclr2016,2016,Data-dependent Initializations of Convolutional Neural Networks.
ICLR,iclr2016,2016,Order Matters: Sequence to sequence for sets.
ICLR,iclr2016,2016,High-Dimensional Continuous Control Using Generalized Advantage Estimation.
ICLR,iclr2016,2016,Deep multi-scale video prediction beyond mean square error.
ICLR,iclr2016,2016,Grid Long Short-Term Memory.
ICLR,iclr2016,2016,Predicting distributions with Linearizing Belief Networks.
ICLR,iclr2016,2016,Fast and Accurate Deep Network Learning by Exponential Linear Units (ELUs).
ICLR,iclr2016,2016,Actor-Mimic: Deep Multitask and Transfer Reinforcement Learning.
ICLR,iclr2016,2016,Segmental Recurrent Neural Networks.
ICLR,iclr2016,2016,Deep Linear Discriminant Analysis.
ICLR,iclr2016,2016,Large-Scale Approximate Kernel Canonical Correlation Analysis.
ICLR,iclr2016,2016,Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks.
ICLR,iclr2016,2016,Learning Representations from EEG with Deep Recurrent-Convolutional Neural Networks.
ICLR,iclr2016,2016,Digging Deep into the Layers of CNNs: In Search of How CNNs Achieve View Invariance.
ICLR,iclr2016,2016,An Exploration of Softmax Alternatives Belonging to the Spherical Loss Family.
ICLR,iclr2016,2016,Data-Dependent Path Normalization in Neural Networks.
ICLR,iclr2016,2016,Reasoning in Vector Space: An Exploratory Study of Question Answering.
ICLR,iclr2016,2016,Neural GPUs Learn Algorithms.
ICLR,iclr2016,2016,ACDC: A Structured Efficient Linear Layer.
ICLR,iclr2016,2016,Adversarial Manipulation of Deep Representations.
ICLR,iclr2016,2016,Geodesics of learned representations.
ICLR,iclr2016,2016,Sequence Level Training with Recurrent Neural Networks.
ICLR,iclr2016,2016,Super-Resolution with Deep Convolutional Sufficient Statistics.
ICLR,iclr2015,2015,3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings.
ICLR,iclr2015,2015,Word Representations via Gaussian Embedding.
ICLR,iclr2015,2015,Deep Captioning with Multimodal Recurrent Neural Networks (m-RNN).
ICLR,iclr2015,2015,Deep Structured Output Learning for Unconstrained Text Recognition.
ICLR,iclr2015,2015,Very Deep Convolutional Networks for Large-Scale Image Recognition.
ICLR,iclr2015,2015,Fast Convolutional Nets With fbfft: A GPU Performance Evaluation.
ICLR,iclr2015,2015,Reweighted Wake-Sleep.
ICLR,iclr2015,2015,The local low-dimensionality of natural images.
ICLR,iclr2015,2015,Memory Networks.
ICLR,iclr2015,2015,Object Detectors Emerge in Deep Scene CNNs.
ICLR,iclr2015,2015,Qualitatively characterizing neural network optimization problems.
ICLR,iclr2015,2015,Neural Machine Translation by Jointly Learning to Align and Translate.
ICLR,iclr2015,2015,FitNets: Hints for Thin Deep Nets.
ICLR,iclr2015,2015,Techniques for Learning Binary Stochastic Feedforward Neural Networks.
ICLR,iclr2015,2015,Semantic Image Segmentation with Deep Convolutional Nets and Fully Connected CRFs.
ICLR,iclr2015,2015,Multiple Object Recognition with Visual Attention.
ICLR,iclr2015,2015,Deep Narrow Boltzmann Machines are Universal Approximators.
ICLR,iclr2015,2015,Transformation Properties of Learned Visual Representations.
ICLR,iclr2015,2015,Joint RNN-Based Greedy Parsing and Word Composition.
ICLR,iclr2015,2015,Adam: A Method for Stochastic Optimization.
ICLR,iclr2015,2015,Scheduled denoising autoencoders.
ICLR,iclr2015,2015,Embedding Entities and Relations for Learning and Inference in Knowledge Bases.
ICLR,iclr2015,2015,Explaining and Harnessing Adversarial Examples.
ICLR,iclr2015,2015,Modeling Compositionality with Multiplicative Recurrent Neural Networks.
ICLR,iclr2015,2015,Speeding-up Convolutional Neural Networks Using Fine-tuned CP-Decomposition.
ICLR,iclr2015,2015,Zero-bias autoencoders and the benefits of co-adapting features.
ICLR,iclr2015,2015,Automatic Discovery and Optimization of Parts for Image Classification.
ICLR,iclr2015,2015,Understanding Locally Competitive Networks.
ICLR,iclr2015,2015,Leveraging Monolingual Data for Crosslingual Compositional Word Representations.
ICLR,iclr2015,2015,Move Evaluation in Go Using Deep Convolutional Neural Networks.
ICLR,iclr2015,2015,Generative Modeling of Convolutional Neural Networks.
ICLR,iclr2015,2015,A Unified Perspective on Multi-Domain and Multi-Task Learning.
ICLR,iclr2015w,2015,3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Workshop Track Proceedings.
ICLR,iclr2015w,2015,Learning Non-deterministic Representations with Energy-based Ensembles.
ICLR,iclr2015w,2015,Diverse Embedding Neural Network Language Models.
ICLR,iclr2015w,2015,Hot Swapping for Online Adaptation of Optimization Hyperparameters.
ICLR,iclr2015w,2015,Representation Learning for cold-start recommendation.
ICLR,iclr2015w,2015,Learning from Noisy Labels with Deep Neural Networks.
ICLR,iclr2015w,2015,Striving for Simplicity: The All Convolutional Net.
ICLR,iclr2015w,2015,Learning linearly separable features for speech recognition using convolutional neural networks.
ICLR,iclr2015w,2015,Training Deep Neural Networks on Noisy Labels with Bootstrapping.
ICLR,iclr2015w,2015,On the Stability of Deep Networks.
ICLR,iclr2015w,2015,Audio Source Separation with Discriminative Scattering Networks.
ICLR,iclr2015w,2015,Simple Image Description Generator via a Linear Phrase-Based Approach.
ICLR,iclr2015w,2015,(Withdrawn)
ICLR,iclr2015w,2015,On distinguishability criteria for estimating generative models.
ICLR,iclr2015w,2015,Embedding Word Similarity with Neural Machine Translation.
ICLR,iclr2015w,2015,Deep metric learning using Triplet network.
ICLR,iclr2015w,2015,Understanding Minimum Probability Flow for RBMs Under Various Kinds of Dynamics.
ICLR,iclr2015w,2015,A Group Theoretic Perspective on Unsupervised Deep Learning.
ICLR,iclr2015w,2015,Learning Longer Memory in Recurrent Neural Networks.
ICLR,iclr2015w,2015,Inducing Semantic Representation from Text by Jointly Predicting and Factorizing Relations.
ICLR,iclr2015w,2015,NICE: Non-linear Independent Components Estimation.
ICLR,iclr2015w,2015,Discovering Hidden Factors of Variation in Deep Networks.
ICLR,iclr2015w,2015,Tailoring Word Embeddings for Bilexical Predictions: An Experimental Comparison.
ICLR,iclr2015w,2015,On the Importance of a Hierarchy for Learning Continuous Vector Representations of a Label Space.
ICLR,iclr2015w,2015,In Search of the Real Inductive Bias: On the Role of Implicit Regularization in Deep Learning.
ICLR,iclr2015w,2015,Algorithmic Robustness for Semi-Supervised (ε, γ, τ)-Good Metric Learning.
ICLR,iclr2015w,2015,Real-World Font Recognition Using Deep Network and Domain Adaptation.
ICLR,iclr2015w,2015,Score Function Features for Discriminative Learning.
ICLR,iclr2015w,2015,Parallel training of Deep Neural Networks with Natural Gradient and Parameter Averaging.
ICLR,iclr2015w,2015,A Generative Model for Deep Convolutional Learning.
ICLR,iclr2015w,2015,Random Forests Can Hash.
ICLR,iclr2015w,2015,Provable Methods for Training Neural Networks with Sparse Connectivity.
ICLR,iclr2015w,2015,Visual Scene Representations: Sufficiency, Minimality, Invariance and Deep Approximations.
ICLR,iclr2015w,2015,Deep learning with Elastic Averaging SGD.
ICLR,iclr2015w,2015,Example Selection For Dictionary Learning.
ICLR,iclr2015w,2015,Permutohedral Lattice CNNs.
ICLR,iclr2015w,2015,Unsupervised Domain Adaptation with Feature Embeddings.
ICLR,iclr2015w,2015,Weakly Supervised Multi-Embeddings Learning of Acoustic Models.
ICLR,iclr2015w,2015,Learning Activation Functions to Improve Deep Neural Networks.
ICLR,iclr2015w,2015,Restricted Boltzmann Machine for Classification with Hierarchical Correlated Prior.
ICLR,iclr2015w,2015,Learning Deep Structured Models.
ICLR,iclr2015w,2015,N-gram-Based Low-Dimensional Representation for Document Classification.
ICLR,iclr2015w,2015,Low precision arithmetic for deep learning.