-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrefs.bib
More file actions
4098 lines (3081 loc) · 116 KB
/
Copy pathrefs.bib
File metadata and controls
4098 lines (3081 loc) · 116 KB
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
@String { aaaip = {AAAI Press} }
@String { aaaipa = {Menlo Park, CA, USA} }
@String { accv = {ACCV} }
@String { acl = {{ACL}} }
@String { acmmm = {ACM Multimedia} }
@String { acmp = {{ACM Press}} }
@String { acmpa = {{New-York, NY, USA}} }
@String { ai = {Artificial Intelligence} }
@String { ais = {AISTATS} }
@String { aism = {The Annals of the Institute of Statistical Mathematics} }
@String { ams = {The Annals of Mathematical Statistics} }
@String { approx = {Proceedings of International Workshop Approximation Algorithms for Combinatorial Optimization} }
@String { as = {The Annals of Statistics} }
@String { asci = {Proceedings of the Annual Conference of the Advanced School for Computing and Imaging} }
@String { bc = {Biological Cybernetics} }
@String { bmva = {British Machine Vision Association} }
@String { bmvaa = {Norwich, UK} }
@String { bmvc = {BMVC} }
@String { bnl = {Proceedings of the Annual Belgian-Dutch Conference on Machine Learning} }
@String { cacm = {Communications of the ACM} }
@String { chp = {{Chapman and Hall, Ltd.}} }
@String { chpa = {{London, UK}} }
@String { civr = {{CIVR}} }
@String { colt = {Proceedings of the Annual Conference on Computational Learning Theory} }
@String { cup = {{Cambridge University Press}} }
@String { cupa = {{Cambridge, UK}} }
@String { cviu = {CVIU} }
@String { cvpr = {CVPR} }
@String { dmkd = {Data Mining and Knowledge Discovery} }
@String { dside = {D-side} }
@String { dsidea = {Evere, Belgium} }
@String { eccv = {ECCV} }
@String { eccv.lfw = {Workshop on Faces Real-Life Images at ECCV} }
@String { ecml = {ECML} }
@String { emnlp = {Empirical Methods in Natural Language Processing} }
@String { esann = {Proceedings of the European Symposium on Artificial Neural Networks} }
@String { esanne = {M. Verleysen} }
@String { icann = {ICANN} }
@String { icassp = {Proceedings of ICASSP}}
@String { iccv = {ICCV} }
@String { icip = {ICIP} }
@String { iclr = {ICLR} }
@String { icml = {ICML} }
@String { icml20e = {T. Fawcett and N. Mishra} }
@String { icmr = {ICMR} }
@String { icpr = {ICPR} }
@String { ieeecsp = {{IEEE Computer Society Press}} }
@String { ieeecspa = {{Los Alamitos, CA, USA}} }
@String { ijcai = {{IJCAI}} }
@String { ijcv = {IJCV} }
@String { ivc = {Image and Vision Computing} }
@String { jasa = {Journal of the American Statistical Association} }
@String { jmlr = {JMLR} }
@String { jrssb = {Journal of the Royal Statistical Society. Series B (Methodological)} }
@String { jrssc = {Journal of the Royal Statistical Society. Series C (Applied Statistics)} }
@String { kluw = {{Kluwer}} }
@String { kluwa = {{Boston, MA, USA}} }
@String { mir = {{ACM MIR}} }
@String { mitp = {{MIT Press}} }
@String { mitpa = {{Cambridge, MA, USA}} }
@String { mkp = {{Morgan Kaufmann}} }
@String { mkpa = {{San Mateo, CA, USA}} }
@String { ml = {Machine Learning} }
@String { neco = {Neural Computation} }
@String { neuro = {Neurocomputing} }
@String { nips = {NIPS} }
@String { nips10e = {{M. I. Jordan and M. J. Kearns and S. A. Solla}} }
@String { nips11e = {{M. J. Kearns S. A. Solla and D. A. Cohn}} }
@String { nips12e = {{S. A. Solla and T. K. Leen and K.-R. M\"{u}ller}} }
@String { nips13e = {{T. K. Leen and T. G. Dietterich and V. Tresp}} }
@String { nips14e = {{T. G. Dietterich and S. Becker and Z. Ghahramani}} }
@String { nips15e = {{S. Becker and S. Thrun and K. Obermayer}} }
@String { nips16e = {{S. Thrun and L. Saul and B. {Sch\"{o}lkopf}}} }
@String { nips17e = {{L. K. Saul and Y. Weiss and L. Bottou}} }
@String { nips3e = {{R. P. Lippmann and J. E. Moody and D. S. Touretzky}} }
@String { nips6e = {{J. D. Cowan and G. Tesauro and J. Alspector}} }
@String { nips7e = {{G. Tesauro and D. S. Touretzky and T. K. Leen}} }
@String { nn = {Neural Networks} }
@String { ontol = {Proceedings of Workshop on Ontology Learning and Population} }
@String { oup = {{Oxford University Press}} }
@String { oupa = {{New-York, NY, USA}} }
@String { pami = {PAMI} }
@String { pnas = {Proceedings of the National Academy of Sciences of the USA} }
@String { pr = {Pattern Recognition} }
@String { prl = {Pattern Recognition Letters} }
@String { psy = {Psychometrika} }
@String { sigchi = {ACM SIGCHI} }
@String { sigir = {ACM SIGIR} }
@String { sigkdd = {ACM SIGKDD} }
@String { sp = {Signal Processing} }
@String { spring = {{Spinger-Verlag}} }
@String { springa = {{New-York, NY, USA}} }
@String { tacl = {TACL} }
@String { tip = {IEEE Transactions on Image Processing} }
@String { tmm = {IEEE Transactions on Multimedia} }
@String { tnn = {IEEE Transactions on Neural Networks} }
@String { trec = {{Proceedings of the Text Retrieval Conference}} }
@String { trinf = {IEEE Trans.\ Information Theory} }
@String { uai = {Proceedings of the Annual Conference on Uncertainty in Artificial Intelligence} }
@String { visapp = {Proceedings of the International Conference on Computer Vision Theory and Applications} }
@String { wacv = {WACV} }
@String { wiley = {{Wiley}} }
@String { wileya = {{New-York, NY, USA}} }
@article{Anderson_2016,
author = {Peter Anderson and Basura Fernando and Mark Johnson and Stephen Gould},
file = {pdfs/1612.00576.pdf},
journal = {arxiv:1612.00576},
link = {http://arxiv.org/abs/1612.00576v2},
title = {Guided Open Vocabulary Image Captioning with Constrained Beam Search},
year = {2016}
}
@article{Anderson_2017,
author = {Peter Anderson and Xiaodong He and Chris Buehler and Damien Teney and Mark Johnson and Stephen Gould and Lei Zhang},
file = {pdfs/1707.07998.pdf},
journal = {arxiv:1707.07998},
link = {http://arxiv.org/abs/1707.07998v2},
title = {Bottom-Up and Top-Down Attention for Image Captioning and Visual
Question Answering},
year = {2017}
}
@article{Aneja_2017,
author = {Jyoti Aneja and Aditya Deshpande and Alexander Schwing},
file = {pdfs/1711.09151.pdf},
journal = {arxiv:1711.09151},
link = {http://arxiv.org/abs/1711.09151v1},
title = {Convolutional Image Captioning},
year = {2017}
}
@article{Arora_2017,
author = {Sanjeev Arora and Yi Zhang},
file = {pdfs/1706.08224.pdf},
journal = {arxiv:1706.08224},
link = {http://arxiv.org/abs/1706.08224v2},
title = {Do GANs actually learn the distribution? An empirical study},
year = {2017}
}
@article{Bahdanau_2016,
author = {Dzmitry Bahdanau and Philemon Brakel and Kelvin Xu and Anirudh Goyal and Ryan Lowe and Joelle Pineau and Aaron Courville and Yoshua Bengio},
file = {pdfs/1607.07086.pdf},
journal = {arxiv:1607.07086},
link = {http://arxiv.org/abs/1607.07086v3},
title = {An Actor-Critic Algorithm for Sequence Prediction},
year = {2016}
}
@article{Bahdanau_2017,
author = {Dzmitry Bahdanau and Tom Bosc and Stanisław Jastrzębski and Edward Grefenstette and Pascal Vincent and Yoshua Bengio},
file = {pdfs/1706.00286.pdf},
journal = {arxiv:1706.00286},
link = {http://arxiv.org/abs/1706.00286v2},
title = {Learning to Compute Word Embeddings On the Fly},
year = {2017}
}
@article{Bahuleyan_2017,
author = {Hareesh Bahuleyan and Lili Mou and Olga Vechtomova and Pascal Poupart},
file = {pdfs/1712.08207.pdf},
journal = {arxiv:1712.08207},
link = {http://arxiv.org/abs/1712.08207v1},
title = {Variational Attention for Sequence-to-Sequence Models},
year = {2017}
}
@article{Bernardi_2016,
author = {Raffaella Bernardi and Ruket Cakici and Desmond Elliott and Aykut Erdem and Erkut Erdem and Nazli Ikizler-Cinbis and Frank Keller and Adrian Muscat and Barbara Plank},
file = {pdfs/1601.03896.pdf},
journal = {arxiv:1601.03896},
link = {http://arxiv.org/abs/1601.03896v2},
title = {Automatic Description Generation from Images: A Survey of Models, Datasets, and Evaluation Measures},
year = {2016}
}
@article{Bojanowski_2017,
author = {Piotr Bojanowski and Armand Joulin and David Lopez-Paz and Arthur Szlam},
file = {pdfs/1707.05776.pdf},
journal = {arxiv:1707.05776},
link = {http://arxiv.org/abs/1707.05776v1},
title = {Optimizing the Latent Space of Generative Networks},
year = {2017}
}
@article{Boom_2018,
author = {Cedric De Boom and Thomas Demeester and Bart Dhoedt},
doi = {10.1007/s00521-017-3322-z},
file = {pdfs/1801.00632.pdf},
journal = {Neural Computing and Applications},
link = {https://doi.org/10.1007%2Fs00521-017-3322-z},
month = {jan},
publisher = {Springer Nature},
title = {Character-level recurrent neural networks in practice: comparing training and sampling schemes},
year = {2018}
}
@article{Bradbury_2016,
author = {James Bradbury and Stephen Merity and Caiming Xiong and Richard Socher},
file = {pdfs/1611.01576.pdf},
journal = {arxiv:1611.01576},
link = {http://arxiv.org/abs/1611.01576v2},
title = {Quasi-Recurrent Neural Networks},
year = {2016}
}
@article{Brarda_2017,
author = {Sebastian Brarda and Philip Yeres and Samuel R. Bowman},
file = {pdfs/1705.02269.pdf},
journal = {arxiv:1705.02269},
link = {http://arxiv.org/abs/1705.02269v2},
title = {Sequential Attention: A Context-Aware Alignment Function for Machine
Reading},
year = {2017}
}
@article{Britz_2017,
author = {Denny Britz and Anna Goldie and Minh-Thang Luong and Quoc Le},
file = {pdfs/1703.03906.pdf},
journal = {arxiv:1703.03906},
link = {http://arxiv.org/abs/1703.03906v2},
title = {Massive Exploration of Neural Machine Translation Architectures},
year = {2017}
}
@article{Caglayan_2017,
author = {Ozan Caglayan and Walid Aransa and Adrien Bardet and Mercedes García-Martínez and Fethi Bougares and Loïc Barrault and Marc Masana and Luis Herranz and Joost van de Weijer},
file = {pdfs/1707.04481.pdf},
journal = {arxiv:1707.04481},
link = {http://arxiv.org/abs/1707.04481v1},
title = {LIUM-CVC Submissions for WMT17 Multimodal Translation Task},
year = {2017}
}
@article{Carbonneau_2018,
author = {Marc-Andr{\'{e}} Carbonneau and Veronika Cheplygina and Eric Granger and Ghyslain Gagnon},
doi = {10.1016/j.patcog.2017.10.009},
file = {pdfs/1612.03365.pdf},
journal = {Pattern Recognition},
link = {https://doi.org/10.1016%2Fj.patcog.2017.10.009},
month = {may},
pages = {329--353},
publisher = {Elsevier {BV}},
title = {Multiple instance learning: A survey of problem characteristics and applications},
volume = {77},
year = {2018}
}
@article{Castrejon_2017,
author = {Lluis Castrejon and Kaustav Kundu and Raquel Urtasun and Sanja Fidler},
file = {pdfs/1704.05548.pdf},
journal = {arxiv:1704.05548},
link = {http://arxiv.org/abs/1704.05548v1},
title = {Annotating Object Instances with a Polygon-RNN},
year = {2017}
}
@article{Chaplot_2017,
author = {Devendra Singh Chaplot and Kanthashree Mysore Sathyendra and Rama Kumar Pasumarthi and Dheeraj Rajagopal and Ruslan Salakhutdinov},
file = {pdfs/1706.07230.pdf},
journal = {arxiv:1706.07230},
link = {http://arxiv.org/abs/1706.07230v2},
title = {Gated-Attention Architectures for Task-Oriented Language Grounding},
year = {2017}
}
@article{Che_2017,
author = {Tong Che and Yanran Li and Ruixiang Zhang and R Devon Hjelm and Wenjie Li and Yangqiu Song and Yoshua Bengio},
file = {pdfs/1702.07983.pdf},
journal = {arxiv:1702.07983},
link = {http://arxiv.org/abs/1702.07983v1},
title = {Maximum-Likelihood Augmented Discrete Generative Adversarial Networks},
year = {2017}
}
@article{Chen_2016,
author = {Wenhu Chen and Aurelien Lucchi and Thomas Hofmann},
file = {pdfs/1611.05321.pdf},
journal = {arxiv:1611.05321},
link = {http://arxiv.org/abs/1611.05321v3},
title = {A Semi-supervised Framework for Image Captioning},
year = {2016}
}
@article{Chen_2016a,
author = {Long Chen and Hanwang Zhang and Jun Xiao and Liqiang Nie and Jian Shao and Wei Liu and Tat-Seng Chua},
file = {pdfs/1611.05594.pdf},
journal = {arxiv:1611.05594},
link = {http://arxiv.org/abs/1611.05594v2},
title = {SCA-CNN: Spatial and Channel-wise Attention in Convolutional Networks
for Image Captioning},
year = {2016}
}
@article{Chen_2017,
author = {Hongge Chen and Huan Zhang and Pin-Yu Chen and Jinfeng Yi and Cho-Jui Hsieh},
file = {pdfs/1712.02051.pdf},
journal = {arxiv:1712.02051},
link = {http://arxiv.org/abs/1712.02051v1},
title = {Show-and-Fool: Crafting Adversarial Examples for Neural Image Captioning},
year = {2017}
}
@article{Chen_2017a,
author = {Jianbo Chen and Yelong Shen and Jianfeng Gao and Jingjing Liu and Xiaodong Liu},
file = {pdfs/1711.06288.pdf},
journal = {arxiv:1711.06288},
link = {http://arxiv.org/abs/1711.06288v1},
title = {Language-Based Image Editing with Recurrent Attentive Models},
year = {2017}
}
@article{Chen_2017b,
author = {Wenhu Chen and Guanlin Li and Shuo Ren and Shujie Liu and Zhirui Zhang and Mu Li and Ming Zhou},
file = {pdfs/1706.09152.pdf},
journal = {arxiv:1706.09152},
link = {http://arxiv.org/abs/1706.09152v4},
title = {Generative Bridging Network in Neural Sequence Prediction},
year = {2017}
}
@article{Chen_2017c,
author = {Tseng-Hung Chen and Yuan-Hong Liao and Ching-Yao Chuang and Wan-Ting Hsu and Jianlong Fu and Min Sun},
file = {pdfs/1705.00930.pdf},
journal = {arxiv:1705.00930},
link = {http://arxiv.org/abs/1705.00930v2},
title = {Show, Adapt and Tell: Adversarial Training of Cross-domain Image
Captioner},
year = {2017}
}
@article{Chiu_2017,
author = {Chung-Cheng Chiu and Colin Raffel},
file = {pdfs/1712.05382.pdf},
journal = {arxiv:1712.05382},
link = {http://arxiv.org/abs/1712.05382v2},
title = {Monotonic Chunkwise Attention},
year = {2017}
}
@article{Chung_2017,
author = {Joon Son Chung and Amir Jamaludin and Andrew Zisserman},
file = {pdfs/1705.02966.pdf},
journal = {arxiv:1705.02966},
link = {http://arxiv.org/abs/1705.02966v2},
title = {You said that?},
year = {2017}
}
@article{Collins_2016,
author = {Jasmine Collins and Jascha Sohl-Dickstein and David Sussillo},
file = {pdfs/1611.09913.pdf},
journal = {arxiv:1611.09913},
link = {http://arxiv.org/abs/1611.09913v3},
title = {Capacity and Trainability in Recurrent Neural Networks},
year = {2016}
}
@article{Conneau_2017,
author = {Alexis Conneau and Guillaume Lample and Marc'Aurelio Ranzato and Ludovic Denoyer and Hervé Jégou},
file = {pdfs/1710.04087.pdf},
journal = {arxiv:1710.04087},
link = {http://arxiv.org/abs/1710.04087v3},
title = {Word Translation Without Parallel Data},
year = {2017}
}
@article{Conneau_2017a,
author = {Alexis Conneau and Douwe Kiela and Holger Schwenk and Loic Barrault and Antoine Bordes},
file = {pdfs/1705.02364.pdf},
journal = {arxiv:1705.02364},
link = {http://arxiv.org/abs/1705.02364v4},
title = {Supervised Learning of Universal Sentence Representations from Natural
Language Inference Data},
year = {2017}
}
@article{Cornia_2017,
author = {Marcella Cornia and Lorenzo Baraldi and Giuseppe Serra and Rita Cucchiara},
file = {pdfs/1706.08474.pdf},
journal = {arxiv:1706.08474},
link = {http://arxiv.org/abs/1706.08474v3},
title = {Paying More Attention to Saliency: Image Captioning with Saliency and
Context Attention},
year = {2017}
}
@article{Das_2016,
author = {Abhishek Das and Satwik Kottur and Khushi Gupta and Avi Singh and Deshraj Yadav and José M. F. Moura and Devi Parikh and Dhruv Batra},
file = {pdfs/1611.08669.pdf},
journal = {arxiv:1611.08669},
link = {http://arxiv.org/abs/1611.08669v5},
title = {Visual Dialog},
year = {2016}
}
@article{Dauphin_2016,
author = {Yann N. Dauphin and Angela Fan and Michael Auli and David Grangier},
file = {pdfs/1612.08083.pdf},
journal = {arxiv:1612.08083},
link = {http://arxiv.org/abs/1612.08083v3},
title = {Language Modeling with Gated Convolutional Networks},
year = {2016}
}
@article{Delbrouck_2017,
author = {Jean-Benoit Delbrouck and Stéphane Dupont and Omar Seddati},
file = {pdfs/1707.01009.pdf},
journal = {arxiv:1707.01009},
link = {http://arxiv.org/abs/1707.01009v5},
title = {Visually Grounded Word Embeddings and Richer Visual Features for
Improving Multimodal Neural Machine Translation},
year = {2017}
}
@article{Deng_2017,
author = {Lei Deng and Peng Jiao and Jing Pei and Zhenzhi Wu and Guoqi Li},
file = {pdfs/1705.09283.pdf},
journal = {arxiv:1705.09283},
link = {http://arxiv.org/abs/1705.09283v3},
title = {Gated XNOR Networks: Deep Neural Networks with Ternary Weights and
Activations under a Unified Discretization Framework},
year = {2017}
}
@article{Dhingra_2017,
author = {Bhuwan Dhingra and Hanxiao Liu and Ruslan Salakhutdinov and William W. Cohen},
file = {pdfs/1703.00993.pdf},
journal = {arxiv:1703.00993},
link = {http://arxiv.org/abs/1703.00993v1},
title = {A Comparative Study of Word Embeddings for Reading Comprehension},
year = {2017}
}
@article{Ding_2016,
author = {Nan Ding and Sebastian Goodman and Fei Sha and Radu Soricut},
file = {pdfs/1612.07833.pdf},
journal = {arxiv:1612.07833},
link = {http://arxiv.org/abs/1612.07833v1},
title = {Understanding Image and Text Simultaneously: a Dual Vision-Language
Machine Comprehension Task},
year = {2016}
}
@article{Donahue_2016,
author = {Jeff Donahue and Philipp Krähenbühl and Trevor Darrell},
file = {pdfs/1605.09782.pdf},
journal = {arxiv:1605.09782},
link = {http://arxiv.org/abs/1605.09782v7},
title = {Adversarial Feature Learning},
year = {2016}
}
@article{Dong_2017,
author = {Jianfeng Dong and Xirong Li and Cees G. M. Snoek},
file = {pdfs/1709.01362.pdf},
journal = {arxiv:1709.01362},
link = {http://arxiv.org/abs/1709.01362v2},
title = {Predicting Visual Features from Text for Image and Video Caption
Retrieval},
year = {2017}
}
@article{Dong_2017a,
author = {Hao Dong and Jingqing Zhang and Douglas McIlwraith and Yike Guo},
file = {pdfs/1703.06676.pdf},
journal = {arxiv:1703.06676},
link = {http://arxiv.org/abs/1703.06676v3},
title = {I2T2I: Learning Text to Image Synthesis with Textual Data Augmentation},
year = {2017}
}
@article{Dupont_2017,
author = {Yoann Dupont and Marco Dinarelli and Isabelle Tellier},
file = {pdfs/1706.01740.pdf},
journal = {arxiv:1706.01740},
link = {http://arxiv.org/abs/1706.01740v1},
title = {Label-Dependencies Aware Recurrent Neural Networks},
year = {2017}
}
@article{Dutil_2017,
author = {Francis Dutil and Caglar Gulcehre and Adam Trischler and Yoshua Bengio},
file = {pdfs/1711.10462.pdf},
journal = {arxiv:1711.10462},
link = {http://arxiv.org/abs/1711.10462v1},
title = {Plan, Attend, Generate: Planning for Sequence-to-Sequence Models},
year = {2017}
}
@article{Dvornik_2017,
author = {Nikita Dvornik and Konstantin Shmelkov and Julien Mairal and Cordelia Schmid},
file = {pdfs/1708.02813.pdf},
journal = {arxiv:1708.02813},
link = {http://arxiv.org/abs/1708.02813v1},
title = {BlitzNet: A Real-Time Deep Network for Scene Understanding},
year = {2017}
}
@article{Elliott_2017,
author = {Desmond Elliott and Stella Frank and Loïc Barrault and Fethi Bougares and Lucia Specia},
file = {pdfs/1710.07177.pdf},
journal = {arxiv:1710.07177},
link = {http://arxiv.org/abs/1710.07177v1},
title = {Findings of the Second Shared Task on Multimodal Machine Translation and
Multilingual Image Description},
year = {2017}
}
@article{Elliott_2017a,
author = {Desmond Elliott and Ákos Kádár},
file = {pdfs/1705.04350.pdf},
journal = {arxiv:1705.04350},
link = {http://arxiv.org/abs/1705.04350v2},
title = {Imagination improves Multimodal Translation},
year = {2017}
}
@article{Faghri_2017,
author = {Fartash Faghri and David J. Fleet and Jamie Ryan Kiros and Sanja Fidler},
file = {pdfs/1707.05612.pdf},
journal = {arxiv:1707.05612},
link = {http://arxiv.org/abs/1707.05612v2},
title = {VSE++: Improving Visual-Semantic Embeddings with Hard Negatives},
year = {2017}
}
@article{Finn_2017,
author = {Chelsea Finn and Pieter Abbeel and Sergey Levine},
file = {pdfs/1703.03400.pdf},
journal = {arxiv:1703.03400},
link = {http://arxiv.org/abs/1703.03400v3},
title = {Model-Agnostic Meta-Learning for Fast Adaptation of Deep Networks},
year = {2017}
}
@inproceedings{Fong_2017,
author = {Ruth C. Fong and Andrea Vedaldi},
booktitle = iccv,
doi = {10.1109/iccv.2017.371},
file = {pdfs/1704.03296.pdf},
link = {https://doi.org/10.1109%2Ficcv.2017.371},
month = {oct},
publisher = {IEEE},
title = {Interpretable Explanations of Black Boxes by Meaningful Perturbation},
year = {2017}
}
@article{Fortunato_2017,
author = {Meire Fortunato and Charles Blundell and Oriol Vinyals},
file = {pdfs/1704.02798.pdf},
journal = {arxiv:1704.02798},
link = {http://arxiv.org/abs/1704.02798v2},
title = {Bayesian Recurrent Neural Networks},
year = {2017}
}
@article{Gan_2016,
author = {Zhe Gan and Chuang Gan and Xiaodong He and Yunchen Pu and Kenneth Tran and Jianfeng Gao and Lawrence Carin and Li Deng},
file = {pdfs/1611.08002.pdf},
journal = {arxiv:1611.08002},
link = {http://arxiv.org/abs/1611.08002v2},
title = {Semantic Compositional Networks for Visual Captioning},
year = {2016}
}
@article{Gehring_2016,
author = {Jonas Gehring and Michael Auli and David Grangier and Yann N. Dauphin},
file = {pdfs/1611.02344.pdf},
journal = {arxiv:1611.02344},
link = {http://arxiv.org/abs/1611.02344v3},
title = {A Convolutional Encoder Model for Neural Machine Translation},
year = {2016}
}
@article{Gehring_2017,
author = {Jonas Gehring and Michael Auli and David Grangier and Denis Yarats and Yann N. Dauphin},
file = {pdfs/1705.03122.pdf},
journal = {arxiv:1705.03122},
link = {http://arxiv.org/abs/1705.03122v3},
title = {Convolutional Sequence to Sequence Learning},
year = {2017}
}
@article{Genevay_2017,
author = {Aude Genevay and Gabriel Peyré and Marco Cuturi},
file = {pdfs/1706.00292.pdf},
journal = {arxiv:1706.00292},
link = {http://arxiv.org/abs/1706.00292v3},
title = {Learning Generative Models with Sinkhorn Divergences},
year = {2017}
}
@article{Godin_2017,
author = {Fréderic Godin and Joni Dambre and Wesley De Neve},
file = {pdfs/1707.06130.pdf},
journal = {arxiv:1707.06130},
link = {http://arxiv.org/abs/1707.06130v1},
title = {Improving Language Modeling using Densely Connected Recurrent Neural
Networks},
year = {2017}
}
@article{Gu_2016,
author = {Jiuxiang Gu and Gang Wang and Jianfei Cai and Tsuhan Chen},
file = {pdfs/1612.07086.pdf},
journal = {arxiv:1612.07086},
link = {http://arxiv.org/abs/1612.07086v3},
title = {An Empirical Study of Language CNN for Image Captioning},
year = {2016}
}
@article{Gu_2017,
author = {Jiuxiang Gu and Jianfei Cai and Gang Wang and Tsuhan Chen},
file = {pdfs/1709.03376.pdf},
journal = {arxiv:1709.03376},
link = {http://arxiv.org/abs/1709.03376v2},
title = {Stack-Captioning: Coarse-to-Fine Learning for Image Captioning},
year = {2017}
}
@article{Guimaraes_2017,
author = {Gabriel Lima Guimaraes and Benjamin Sanchez-Lengeling and Carlos Outeiral and Pedro Luis Cunha Farias and Alán Aspuru-Guzik},
file = {pdfs/1705.10843.pdf},
journal = {arxiv:1705.10843},
link = {http://arxiv.org/abs/1705.10843v3},
title = {Objective-Reinforced Generative Adversarial Networks (ORGAN) for
Sequence Generation Models},
year = {2017}
}
@article{Guo_2017,
author = {Jiaxian Guo and Sidi Lu and Han Cai and Weinan Zhang and Yong Yu and Jun Wang},
file = {pdfs/1709.08624.pdf},
journal = {arxiv:1709.08624},
link = {http://arxiv.org/abs/1709.08624v2},
title = {Long Text Generation via Adversarial Training with Leaked Information},
year = {2017}
}
@article{Gupta_2017,
author = {Ankush Gupta and Arvind Agarwal and Prawaan Singh and Piyush Rai},
file = {pdfs/1709.05074.pdf},
journal = {arxiv:1709.05074},
link = {http://arxiv.org/abs/1709.05074v1},
title = {A Deep Generative Framework for Paraphrase Generation},
year = {2017}
}
@article{Gupta_2017a,
author = {Akshay Kumar Gupta},
file = {pdfs/1705.03865.pdf},
journal = {arxiv:1705.03865},
link = {http://arxiv.org/abs/1705.03865v2},
title = {Survey of Visual Question Answering: Datasets and Techniques},
year = {2017}
}
@article{Hashimoto_2016,
author = {Kazuma Hashimoto and Caiming Xiong and Yoshimasa Tsuruoka and Richard Socher},
file = {pdfs/1611.01587.pdf},
journal = {arxiv:1611.01587},
link = {http://arxiv.org/abs/1611.01587v5},
title = {A Joint Many-Task Model: Growing a Neural Network for Multiple NLP Tasks},
year = {2016}
}
@article{Helcl_2017,
author = {Jindřich Helcl and Jindřich Libovický},
file = {pdfs/1707.04550.pdf},
journal = {arxiv:1707.04550},
link = {http://arxiv.org/abs/1707.04550v1},
title = {CUNI System for the WMT17 Multimodal Translation Task},
year = {2017}
}
@article{Hieber_2017,
author = {Felix Hieber and Tobias Domhan and Michael Denkowski and David Vilar and Artem Sokolov and Ann Clifton and Matt Post},
file = {pdfs/1712.05690.pdf},
journal = {arxiv:1712.05690},
link = {http://arxiv.org/abs/1712.05690v1},
title = {Sockeye: A Toolkit for Neural Machine Translation},
year = {2017}
}
@article{Higgins_2017,
author = {Irina Higgins and Nicolas Sonnerat and Loic Matthey and Arka Pal and Christopher P Burgess and Matthew Botvinick and Demis Hassabis and Alexander Lerchner},
file = {pdfs/1707.03389.pdf},
journal = {arxiv:1707.03389},
link = {http://arxiv.org/abs/1707.03389v2},
title = {SCAN: Learning Abstract Hierarchical Compositional Visual Concepts},
year = {2017}
}
@article{Hjelm_2015,
author = {R Devon Hjelm and Kyunghyun Cho and Junyoung Chung and Russ Salakhutdinov and Vince Calhoun and Nebojsa Jojic},
file = {pdfs/1511.06382.pdf},
journal = {arxiv:1511.06382},
link = {http://arxiv.org/abs/1511.06382v6},
title = {Iterative Refinement of the Approximate Posterior for Directed Belief
Networks},
year = {2015}
}
@article{Hu_2017,
author = {Zhiting Hu and Zichao Yang and Xiaodan Liang and Ruslan Salakhutdinov and Eric P. Xing},
file = {pdfs/1703.00955.pdf},
journal = {arxiv:1703.00955},
link = {http://arxiv.org/abs/1703.00955v3},
title = {Toward Controlled Generation of Text},
year = {2017}
}
@article{Hu_2017a,
author = {Zhiting Hu and Zichao Yang and Ruslan Salakhutdinov and Eric P. Xing},
file = {pdfs/1706.00550.pdf},
journal = {arxiv:1706.00550},
link = {http://arxiv.org/abs/1706.00550v3},
title = {On Unifying Deep Generative Models},
year = {2017}
}
@article{Huang_2016,
author = {Gao Huang and Zhuang Liu and Laurens van der Maaten and Kilian Q. Weinberger},
file = {pdfs/1608.06993.pdf},
journal = {arxiv:1608.06993},
link = {http://arxiv.org/abs/1608.06993v5},
title = {Densely Connected Convolutional Networks},
year = {2016}
}
@article{Huang_2017,
author = {Po-Sen Huang and Chong Wang and Sitao Huang and Dengyong Zhou and Li Deng},
file = {pdfs/1706.05565.pdf},
journal = {arxiv:1706.05565},
link = {http://arxiv.org/abs/1706.05565v5},
title = {Towards Neural Phrase-based Machine Translation},
year = {2017}
}
@article{Jain_2017,
author = {Parag Jain and Priyanka Agrawal and Abhijit Mishra and Mohak Sukhwani and Anirban Laha and Karthik Sankaranarayanan},
file = {pdfs/1707.05501.pdf},
journal = {arxiv:1707.05501},
link = {http://arxiv.org/abs/1707.05501v2},
title = {Story Generation from Sequence of Independent Short Descriptions},
year = {2017}
}
@article{Jain_2017a,
author = {Unnat Jain and Ziyu Zhang and Alexander Schwing},
file = {pdfs/1704.03493.pdf},
journal = {arxiv:1704.03493},
link = {http://arxiv.org/abs/1704.03493v1},
title = {Creativity: Generating Diverse Questions using Variational Autoencoders},
year = {2017}
}
@article{Janner_2017,
author = {Michael Janner and Karthik Narasimhan and Regina Barzilay},
file = {pdfs/1707.03938.pdf},
journal = {arxiv:1707.03938},
link = {http://arxiv.org/abs/1707.03938v2},
title = {Representation Learning for Grounded Spatial Reasoning},
year = {2017}
}
@article{Janocha_2017,
author = {Katarzyna Janocha and Wojciech Marian Czarnecki},
file = {pdfs/1702.05659.pdf},
journal = {arxiv:1702.05659},
link = {http://arxiv.org/abs/1702.05659v1},
title = {On Loss Functions for Deep Neural Networks in Classification},
year = {2017}
}
@article{Jaques_2016,
author = {Natasha Jaques and Shixiang Gu and Dzmitry Bahdanau and José Miguel Hernández-Lobato and Richard E. Turner and Douglas Eck},
file = {pdfs/1611.02796.pdf},
journal = {arxiv:1611.02796},
link = {http://arxiv.org/abs/1611.02796v9},
title = {Sequence Tutor: Conservative Fine-Tuning of Sequence Generation Models
with KL-control},
year = {2016}
}
@article{Johnson_2017,
author = {Justin Johnson and Bharath Hariharan and Laurens van der Maaten and Judy Hoffman and Li Fei-Fei and C. Lawrence Zitnick and Ross Girshick},
file = {pdfs/1705.03633.pdf},
journal = {arxiv:1705.03633},
link = {http://arxiv.org/abs/1705.03633v1},
title = {Inferring and Executing Programs for Visual Reasoning},
year = {2017}
}
@article{Kaiser_2017,
author = {Lukasz Kaiser and Aidan N. Gomez and Noam Shazeer and Ashish Vaswani and Niki Parmar and Llion Jones and Jakob Uszkoreit},
file = {pdfs/1706.05137.pdf},
journal = {arxiv:1706.05137},
link = {http://arxiv.org/abs/1706.05137v1},
title = {One Model To Learn Them All},
year = {2017}
}
@article{Kaiser_2017a,
author = {Lukasz Kaiser and Aidan N. Gomez and Francois Chollet},
file = {pdfs/1706.03059.pdf},
journal = {arxiv:1706.03059},
link = {http://arxiv.org/abs/1706.03059v2},
title = {Depthwise Separable Convolutions for Neural Machine Translation},
year = {2017}
}
@article{Kiela_2017,
author = {Douwe Kiela and Alexis Conneau and Allan Jabri and Maximilian Nickel},
file = {pdfs/1707.06320.pdf},
journal = {arxiv:1707.06320},
link = {http://arxiv.org/abs/1707.06320v1},
title = {Learning Visually Grounded Sentence Representations},
year = {2017}
}
@article{Klambauer_2017,
author = {Günter Klambauer and Thomas Unterthiner and Andreas Mayr and Sepp Hochreiter},
file = {pdfs/1706.02515.pdf},
journal = {arxiv:1706.02515},
link = {http://arxiv.org/abs/1706.02515v5},
title = {Self-Normalizing Neural Networks},
year = {2017}
}
@article{Kottur_2017,
author = {Satwik Kottur and José M. F. Moura and Stefan Lee and Dhruv Batra},
file = {pdfs/1706.08502.pdf},
journal = {arxiv:1706.08502},
link = {http://arxiv.org/abs/1706.08502v3},
title = {Natural Language Does Not Emerge 'Naturally' in Multi-Agent Dialog},
year = {2017}
}
@article{Koyamada_2017,
author = {Sotetsu Koyamada and Yuta Kikuchi and Atsunori Kanemura and Shin-ichi Maeda and Shin Ishii},
file = {pdfs/1706.10031.pdf},
journal = {arxiv:1706.10031},
link = {http://arxiv.org/abs/1706.10031v1},
title = {Neural Sequence Model Training via $α$-divergence Minimization},
year = {2017}
}
@article{Krause_2016,
author = {Jonathan Krause and Justin Johnson and Ranjay Krishna and Li Fei-Fei},
file = {pdfs/1611.06607.pdf},
journal = {arxiv:1611.06607},
link = {http://arxiv.org/abs/1611.06607v2},
title = {A Hierarchical Approach for Generating Descriptive Image Paragraphs},
year = {2016}
}
@article{Kurach_2017,
author = {Karol Kurach and Sylvain Gelly and Michal Jastrzebski and Philip Haeusser and Olivier Teytaud and Damien Vincent and Olivier Bousquet},
file = {pdfs/1705.08386.pdf},
journal = {arxiv:1705.08386},
link = {http://arxiv.org/abs/1705.08386v2},
title = {Better Text Understanding Through Image-To-Text Transfer},
year = {2017}
}
@article{Lample_2017,
author = {Guillaume Lample and Ludovic Denoyer and Marc'Aurelio Ranzato},
file = {pdfs/1711.00043.pdf},
journal = {arxiv:1711.00043},
link = {http://arxiv.org/abs/1711.00043v1},
title = {Unsupervised Machine Translation Using Monolingual Corpora Only},
year = {2017}
}
@article{Lapin_2016,
author = {Maksim Lapin and Matthias Hein and Bernt Schiele},
file = {pdfs/1612.03663.pdf},
journal = {arxiv:1612.03663},
link = {http://arxiv.org/abs/1612.03663v1},
title = {Analysis and Optimization of Loss Functions for Multiclass, Top-k, and
Multilabel Classification},
year = {2016}
}
@article{Lawson_2017,
author = {Dieterich Lawson and Chung-Cheng Chiu and George Tucker and Colin Raffel and Kevin Swersky and Navdeep Jaitly},
file = {pdfs/1705.05524.pdf},
journal = {arxiv:1705.05524},
link = {http://arxiv.org/abs/1705.05524v2},
title = {Learning Hard Alignments with Variational Inference},
year = {2017}
}
@article{Le_2017,
author = {Hoa T. Le and Christophe Cerisara and Alexandre Denis},
file = {pdfs/1707.04108.pdf},
journal = {arxiv:1707.04108},
link = {http://arxiv.org/abs/1707.04108v1},
title = {Do Convolutional Networks need to be Deep for Text Classification ?},
year = {2017}
}
@article{Lee_2018,
author = {Jason Lee and Elman Mansimov and Kyunghyun Cho},
file = {pdfs/1802.06901.pdf},
journal = {arxiv:1802.06901},
link = {http://arxiv.org/abs/1802.06901v1},
title = {Deterministic Non-Autoregressive Neural Sequence Modeling by Iterative
Refinement},
year = {2018}
}
@article{Lei_2017,
author = {Tao Lei and Yu Zhang and Yoav Artzi},
file = {pdfs/1709.02755.pdf},
journal = {arxiv:1709.02755},
link = {http://arxiv.org/abs/1709.02755v4},
title = {Training RNNs as Fast as CNNs},
year = {2017}
}
@article{Li_2017,
author = {Hao Li and Zheng Xu and Gavin Taylor and Tom Goldstein},
file = {pdfs/1712.09913.pdf},
journal = {arxiv:1712.09913},
link = {http://arxiv.org/abs/1712.09913v1},
title = {Visualizing the Loss Landscape of Neural Nets},
year = {2017}
}
@article{Li_2017a,
author = {Zhongliang Li and Raymond Kulhanek and Shaojun Wang and Yunxin Zhao and Shuang Wu},
file = {pdfs/1711.09873.pdf},
journal = {arxiv:1711.09873},
link = {http://arxiv.org/abs/1711.09873v2},
title = {Slim Embedding Layers for Recurrent Neural Language Models},
year = {2017}
}
@article{Li_2017b,
author = {Aodong Li and Shiyue Zhang and Dong Wang and Thomas Fang Zheng},
file = {pdfs/1710.01789.pdf},
journal = {arxiv:1710.01789},
link = {http://arxiv.org/abs/1710.01789v1},
title = {Enhanced Neural Machine Translation by Learning from Draft},
year = {2017}
}
@article{Liang_2017,
author = {Xiaodan Liang and Zhiting Hu and Hao Zhang and Chuang Gan and Eric P. Xing},
file = {pdfs/1703.07022.pdf},
journal = {arxiv:1703.07022},
link = {http://arxiv.org/abs/1703.07022v2},
title = {Recurrent Topic-Transition GAN for Visual Paragraph Generation},
year = {2017}
}
@article{Lin_2017,
author = {Kevin Lin and Dianqi Li and Xiaodong He and Zhengyou Zhang and Ming-Ting Sun},
file = {pdfs/1705.11001.pdf},
journal = {arxiv:1705.11001},
link = {http://arxiv.org/abs/1705.11001v2},
title = {Adversarial Ranking for Language Generation},
year = {2017}
}
@article{Lin_2017a,
author = {Zhouhan Lin and Minwei Feng and Cicero Nogueira dos Santos and Mo Yu and Bing Xiang and Bowen Zhou and Yoshua Bengio},
file = {pdfs/1703.03130.pdf},
journal = {arxiv:1703.03130},
link = {http://arxiv.org/abs/1703.03130v1},
title = {A Structured Self-attentive Sentence Embedding},
year = {2017}
}
@article{Ling_2017,
author = {Huan Ling and Sanja Fidler},
file = {pdfs/1706.00130.pdf},
journal = {arxiv:1706.00130},
link = {http://arxiv.org/abs/1706.00130v2},
title = {Teaching Machines to Describe Images via Natural Language Feedback},
year = {2017}
}
@article{Liu_2016,
author = {Siqi Liu and Zhenhai Zhu and Ning Ye and Sergio Guadarrama and Kevin Murphy},
file = {pdfs/1612.00370.pdf},
journal = {arxiv:1612.00370},
link = {http://arxiv.org/abs/1612.00370v3},
title = {Improved Image Captioning via Policy Gradient optimization of SPIDEr},
year = {2016}
}
@incollection{Liu_2016a,
author = {Wei Liu and Dragomir Anguelov and Dumitru Erhan and Christian Szegedy and Scott Reed and Cheng-Yang Fu and Alexander C. Berg},
booktitle = eccv,