-
Notifications
You must be signed in to change notification settings - Fork 6
/
2020.04.07.txt
1828 lines (1499 loc) · 138 KB
/
2020.04.07.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
==========New Papers==========
1, TITLE: On Sharpness of Error Bounds for Multivariate Neural Network Approximation
http://arxiv.org/abs/2004.02203
AUTHORS: Steffen Goebbels
COMMENTS: ongoing work
HIGHLIGHT: On Sharpness of Error Bounds for Multivariate Neural Network Approximation
2, TITLE: The two-echelon routing problem with truck and drones
http://arxiv.org/abs/2004.02275
AUTHORS: Minh Hoàng Hà ; Lam Vu ; Duy Manh Vu
COMMENTS: 29 pages, 4 figures
HIGHLIGHT: In this paper, we study novel variants of the well-known two-echelon vehicle routing problem in which a truck works on the first echelon to transport parcels and a fleet of drones to intermediate depots while in the second echelon, the drones are used to deliver parcels from intermediate depots to customers.
3, TITLE: Generating Rationales in Visual Question Answering
http://arxiv.org/abs/2004.02032
AUTHORS: Hammad A. Ayyubi ; Md. Mehrab Tanjim ; Julian J. McAuley ; Garrison W. Cottrell
HIGHLIGHT: Generating Rationales in Visual Question Answering
4, TITLE: Morphological Computation and Learning to Learn In Natural Intelligent Systems And AI
http://arxiv.org/abs/2004.02304
AUTHORS: Gordana Dodig-Crnkovic
COMMENTS: 5 pages, no figures, AISB 2020 conference
HIGHLIGHT: Learning from nature is a two-way process as discussed in [2][3][4], computing is learning from neuroscience, while neuroscience is quickly adopting information processing models.
5, TITLE: Verifying Recurrent Neural Networks using Invariant Inference
http://arxiv.org/abs/2004.02462
AUTHORS: Yuval Jacoby ; Clark Barrett ; Guy Katz
HIGHLIGHT: Here, we propose a novel approach for verifying properties of a widespread variant of neural networks, called recurrent neural networks.
6, TITLE: A Dependency Syntactic Knowledge Augmented Interactive Architecture for End-to-End Aspect-based Sentiment Analysis
http://arxiv.org/abs/2004.01951
AUTHORS: Yunlong Liang ; Fandong Meng ; Jinchao Zhang ; Jinan Xu ; Yufeng Chen ; Jie Zhou
COMMENTS: Code: https://github.com/XL2248/DREGCN
HIGHLIGHT: In this paper, we thus propose a novel dependency syntactic knowledge augmented interactive architecture with multi-task learning for end-to-end ABSA.
7, TITLE: An Iterative Knowledge Transfer Network with Routing for Aspect-based Sentiment Analysis
http://arxiv.org/abs/2004.01935
AUTHORS: Yunlong Liang ; Fandong Meng ; Jinchao Zhang ; Jinan Xu ; Yufeng Chen ; Jie Zhou
COMMENTS: Code: https://github.com/XL2248/IKTN
HIGHLIGHT: To address these issues, we propose a novel Iterative Knowledge Transfer Network (IKTN) for the end-to-end ABSA.
8, TITLE: Pre-Trained and Attention-Based Neural Networks for Building Noetic Task-Oriented Dialogue Systems
http://arxiv.org/abs/2004.01940
AUTHORS: Jia-Chen Gu ; Tianda Li ; Quan Liu ; Xiaodan Zhu ; Zhen-Hua Ling ; Yu-Ping Ruan
COMMENTS: Accepted by AAAI 2020, Workshop on DSTC8
HIGHLIGHT: This paper describes our systems that are evaluated on all subtasks under this challenge.
9, TITLE: Prerequisites for Explainable Machine Reading Comprehension: A Position Paper
http://arxiv.org/abs/2004.01912
AUTHORS: Saku Sugawara ; Pontus Stenetorp ; Akiko Aizawa
HIGHLIGHT: To this end, this position paper provides a theoretical basis for the design of MRC based on psychology and psychometrics and summarizes it in terms of the requirements for explainable MRC.
10, TITLE: BAE: BERT-based Adversarial Examples for Text Classification
http://arxiv.org/abs/2004.01970
AUTHORS: Siddhant Garg ; Goutham Ramakrishnan
HIGHLIGHT: We present BAE, a powerful black box attack for generating grammatically correct and semantically coherent adversarial examples.
11, TITLE: "None of the Above":Measure Uncertainty in Dialog Response Retrieval
http://arxiv.org/abs/2004.01926
AUTHORS: Yulan Feng ; Shikib Mehri ; Maxine Eskenazi ; Tiancheng Zhao
HIGHLIGHT: This paper discusses the importance of uncovering uncertainty in end-to-end dialog tasks, and presents our experimental results on uncertainty classification on the Ubuntu Dialog Corpus.
12, TITLE: A Generalized Multi-Task Learning Approach to Stereo DSM Filtering in Urban Areas
http://arxiv.org/abs/2004.02493
AUTHORS: Lukas Liebel ; Kesnia Bittner ; Marco Körner
COMMENTS: This paper was accepted for publication in the ISPRS Journal of Photogrammetry and Remote Sensing
HIGHLIGHT: We propose a modular multi-task learning concept that consolidates existing approaches into a generalized framework.
13, TITLE: Image-based phenotyping of diverse Rice (Oryza Sativa L.) Genotypes
http://arxiv.org/abs/2004.02498
AUTHORS: Mukesh Kumar Vishal ; Dipesh Tamboli ; Abhijeet Patil ; Rohit Saluja ; Biplab Banerjee ; Amit Sethi ; Dhandapani Raju ; Sudhir Kumar ; R N Sahoo ; Viswanathan Chinnusamy ; J Adinarayana
COMMENTS: Paper presented at the ICLR 2020 Workshop on Computer Vision for Agriculture (CV4A)
HIGHLIGHT: We trained You Only Look Once (YOLO) deep learning algorithm for leaves tips detection and to estimate the number of leaves in a rice plant.
14, TITLE: Exploration of Input Patterns for Enhancing the Performance of Liquid State Machines
http://arxiv.org/abs/2004.02540
AUTHORS: Shasha Guo ; Lianhua Qu ; Lei Wang ; Xulong Tang ; Shuo Tian ; Shiming Li ; Weixia Xu
HIGHLIGHT: We explore the influence of input scale reduction on LSM instead.
15, TITLE: Vanishing Point Guided Natural Image Stitching
http://arxiv.org/abs/2004.02478
AUTHORS: Kai Chen ; Jian Yao ; Jingmin Tu ; Yahui Liu ; Yinxuan Li ; Li Li
COMMENTS: 13 pages, 16 figures
HIGHLIGHT: In this paper, we propose a novel natural image stitching method, which takes into account the guidance of vanishing points to tackle the mentioned failures.
16, TITLE: On-device Filtering of Social Media Images for Efficient Storage
http://arxiv.org/abs/2004.02489
AUTHORS: Dhruval Jain ; DP Mohanty ; Sanjeev Roy ; Naresh Purre ; Sukumar Moharana
HIGHLIGHT: To address this, we propose a novel method based on Convolutional Neural Networks (CNNs) for the on-device filtering of social media images by classifying these synthetic images and allowing the user to delete them in one go.
17, TITLE: Cascaded Deep Video Deblurring Using Temporal Sharpness Prior
http://arxiv.org/abs/2004.02501
AUTHORS: Jinshan Pan ; Haoran Bai ; Jinhui Tang
COMMENTS: CVPR 2020. The code is available at https://github.com/csbhr/CDVD-TSP
HIGHLIGHT: We present a simple and effective deep convolutional neural network (CNN) model for video deblurring.
18, TITLE: GANSpace: Discovering Interpretable GAN Controls
http://arxiv.org/abs/2004.02546
AUTHORS: Erik Härkönen ; Aaron Hertzmann ; Jaakko Lehtinen ; Sylvain Paris
HIGHLIGHT: This paper describes a simple technique to analyze Generative Adversarial Networks (GANs) and create interpretable controls for image synthesis, such as change of viewpoint, aging, lighting, and time of day.
19, TITLE: ReADS: A Rectified Attentional Double Supervised Network for Scene Text Recognition
http://arxiv.org/abs/2004.02070
AUTHORS: Qi Song ; Qianyi Jiang ; Nan Li ; Rui Zhang ; Xiaolin Wei
COMMENTS: 8 pages
HIGHLIGHT: In this paper, we elaborately design a Rectified Attentional Double Supervised Network (ReADS) for general scene text recognition.
20, TITLE: Any-Shot Sequential Anomaly Detection in Surveillance Videos
http://arxiv.org/abs/2004.02072
AUTHORS: Keval Doshi ; Yasin Yilmaz
COMMENTS: Accepted to CVPR 2020: Workshop on Continual Learning in Computer Vision
HIGHLIGHT: Motivated by these research gaps, we propose an online anomaly detection method for surveillance videos using transfer learning and any-shot learning, which in turn significantly reduces the training complexity and provides a mechanism that can detect anomalies using only a few labeled nominal examples.
21, TITLE: gDLS*: Generalized Pose-and-Scale Estimation Given Scale and Gravity Priors
http://arxiv.org/abs/2004.02052
AUTHORS: Victor Fragoso ; Joseph DeGol ; Gang Hua
HIGHLIGHT: We present gDLS*, a generalized-camera-model pose-and-scale estimator that utilizes rotation and scale priors.
22, TITLE: TensorFI: A Flexible Fault Injection Framework for TensorFlow Applications
http://arxiv.org/abs/2004.01743
AUTHORS: Zitao Chen ; Niranjhana Narayanan ; Bo Fang ; Guanpeng Li ; Karthik Pattabiraman ; Nathan DeBardeleben
COMMENTS: A preliminary version of this work was published in a workshop
HIGHLIGHT: In this work, we present TensorFI, a high-level fault injection (FI) framework for TensorFlow-based applications.
23, TITLE: Theoretical Insights into the Use of Structural Similarity Index In Generative Models and Inferential Autoencoders
http://arxiv.org/abs/2004.01864
AUTHORS: Benyamin Ghojogh ; Fakhri Karray ; Mark Crowley
COMMENTS: Accepted (to appear) in International Conference on Image Analysis and Recognition (ICIAR) 2020, Springer
HIGHLIGHT: Generative models and inferential autoencoders mostly make use of $\ell_2$ norm in their optimization objectives.
24, TITLE: Unsupervised Domain Adaptation with Progressive Domain Augmentation
http://arxiv.org/abs/2004.01735
AUTHORS: Kevin Hua ; Yuhong Guo
HIGHLIGHT: In the paper, we propose a novel unsupervised domain adaptation method based on progressive domain augmentation.
25, TITLE: On the Convergence Analysis of Asynchronous SGD for Solving Consistent Linear Systems
http://arxiv.org/abs/2004.02163
AUTHORS: Atal Narayan Sahu ; Aritra Dutta ; Aashutosh Tiwari ; Peter Richtárik
HIGHLIGHT: In this paper, we propose and analyze a {\it distributed, asynchronous parallel} SGD in light of solving an arbitrary consistent linear system by reformulating the system into a stochastic optimization problem as studied by Richt\'{a}rik and Tak\'{a}\~{c} in [35].
26, TITLE: PONE: A Novel Automatic Evaluation Metric for Open-Domain Generative Dialogue Systems
http://arxiv.org/abs/2004.02399
AUTHORS: Tian Lan ; Xian-Ling Mao ; Wei Wei ; Xiaoyan Gao ; Heyan Huang
HIGHLIGHT: In this paper, we will first measure systematically all kinds of automatic evaluation metrics over the same experimental setting to check which kind is best.
27, TITLE: An analysis of the utility of explicit negative examples to improve the syntactic abilities of neural language models
http://arxiv.org/abs/2004.02451
AUTHORS: Hiroshi Noji ; Hiroya Takamura
COMMENTS: To appear at ACL 2020 (long paper)
HIGHLIGHT: We explore the utilities of explicit negative examples in training neural language models.
28, TITLE: Distinguish Confusing Law Articles for Legal Judgment Prediction
http://arxiv.org/abs/2004.02557
AUTHORS: Nuo Xu ; Pinghui Wang ; Long Chen ; Li Pan ; Xiaoyan Wang ; Junzhou Zhao
COMMENTS: This work has been accepted by the 58th Annual Meeting of the Association for Computational Linguistics (ACL 2020)
HIGHLIGHT: In this paper, we present an end-to-end model, LADAN, to solve the task of LJP.
29, TITLE: SelfORE: Self-supervised Relational Feature Learning for Open Relation Extraction
http://arxiv.org/abs/2004.02438
AUTHORS: Xuming Hu ; Lijie Wen ; Yusong Xu ; Chenwei Zhang ; Philip S. Yu
HIGHLIGHT: In this work, we proposed a self-supervised framework named SelfORE, which exploits weak, self-supervised signals by leveraging large pretrained language model for adaptive clustering on contextualized relational features, and bootstraps the self-supervised signals by improving contextualized features in relation classification.
30, TITLE: Dictionary-based Data Augmentation for Cross-Domain Neural Machine Translation
http://arxiv.org/abs/2004.02577
AUTHORS: Wei Peng ; Chongxuan Huang ; Tianhao Li ; Yun Chen ; Qun Liu
HIGHLIGHT: This paper proposes a dictionary-based data augmentation (DDA) method for cross-domain NMT.
31, TITLE: Grayscale Data Construction and Multi-Level Ranking Objective for Dialogue Response Selection
http://arxiv.org/abs/2004.02421
AUTHORS: Zibo Lin ; Deng Cai ; Yan Wang ; Xiaojiang Liu ; Hai-Tao Zheng ; Shuming Shi
HIGHLIGHT: We propose to automatically build training data with grayscale labels.
32, TITLE: Building a Norwegian Lexical Resource for Medical Entity Recognition
http://arxiv.org/abs/2004.02509
AUTHORS: Ildikó Pilán ; Pål H. Brekke ; Lilja Øvrelid
HIGHLIGHT: We present a large Norwegian lexical resource of categorized medical terms.
33, TITLE: On the Tandem Duplication Distance
http://arxiv.org/abs/2004.02338
AUTHORS: Ferdinando Cicalese ; Nicolò Pilati
HIGHLIGHT: In this paper, we significantly improve this result and show that the tandem duplication "distance problem" is NP-hard already for the case of strings over an alphabet of size $\leq 5.
34, TITLE: Evaluating Multimodal Representations on Visual Semantic Textual Similarity
http://arxiv.org/abs/2004.01894
AUTHORS: Oier Lopez de Lacalle ; Ander Salaberria ; Aitor Soroa ; Gorka Azkune ; Eneko Agirre
COMMENTS: Accepted in ECAI-2020, 8 pages, 6 tables, 6 figures
HIGHLIGHT: The long term goal of our research is to devise multimodal representation techniques that improve current inference capabilities.
35, TITLE: Knowledge Guided Metric Learning for Few-Shot Text Classification
http://arxiv.org/abs/2004.01907
AUTHORS: Dianbo Sui ; Yubo Chen ; Binjie Mao ; Delai Qiu ; Kang Liu ; Jun Zhao
HIGHLIGHT: Inspired by human intelligence, we propose to introduce external knowledge into few-shot learning to imitate human knowledge.
36, TITLE: CG-BERT: Conditional Text Generation with BERT for Generalized Few-shot Intent Detection
http://arxiv.org/abs/2004.01881
AUTHORS: Congying Xia ; Chenwei Zhang ; Hoang Nguyen ; Jiawei Zhang ; Philip Yu
COMMENTS: 11 pages, 4 figures
HIGHLIGHT: In this paper, we formulate a more realistic and difficult problem setup for the intent detection task in natural language understanding, namely Generalized Few-Shot Intent Detection (GFSID).
37, TITLE: STEP: Sequence-to-Sequence Transformer Pre-training for Document Summarization
http://arxiv.org/abs/2004.01853
AUTHORS: Yanyan Zou ; Xingxing Zhang ; Wei Lu ; Furu Wei ; Ming Zhou
HIGHLIGHT: We, therefore, propose STEP (as shorthand for Sequence-to-Sequence Transformer Pre-training), which can be trained on large scale unlabeled documents.
38, TITLE: Conversational Question Reformulation via Sequence-to-Sequence Architectures and Pretrained Language Models
http://arxiv.org/abs/2004.01909
AUTHORS: Sheng-Chieh Lin ; Jheng-Hong Yang ; Rodrigo Nogueira ; Ming-Feng Tsai ; Chuan-Ju Wang ; Jimmy Lin
HIGHLIGHT: This paper presents an empirical study of conversational question reformulation (CQR) with sequence-to-sequence architectures and pretrained language models (PLMs).
39, TITLE: News-Driven Stock Prediction With Attention-Based Noisy Recurrent State Transition
http://arxiv.org/abs/2004.01878
AUTHORS: Xiao Liu ; Heyan Huang ; Yue Zhang ; Changsen Yuan
COMMENTS: 12 pages
HIGHLIGHT: We consider direct modeling of underlying stock value movement sequences over time in the news-driven stock movement prediction.
40, TITLE: AutoToon: Automatic Geometric Warping for Face Cartoon Generation
http://arxiv.org/abs/2004.02377
AUTHORS: Julia Gong ; Yannick Hold-Geoffroy ; Jingwan Lu
COMMENTS: Accepted and presented at WACV 2020; to appear in proceedings of 2020 IEEE Winter Conference on Applications of Computer Vision (WACV). Completed during Julia Gong's internship at Adobe Research
HIGHLIGHT: In this work, we propose AutoToon, the first supervised deep learning method that yields high-quality warps for the warping component of caricatures.
41, TITLE: Detecting the Saliency of Remote Sensing Images Based on Sparse Representation of Contrast-weighted Atoms
http://arxiv.org/abs/2004.02428
AUTHORS: Zhou Huang ; Huai-Xin Chen ; Yun-Zhi Yang ; Chang-Yin Wang ; Bi-Yuan Liu
HIGHLIGHT: In this paper, a novel saliency detection method is proposed by exploring the sparse representation (SR) of, based on learning, contrast-weighted atoms (LCWA).
42, TITLE: Deep Space-Time Video Upsampling Networks
http://arxiv.org/abs/2004.02432
AUTHORS: Jaeyeon Kang ; Younghyun Jo ; Seoung Wug Oh ; Peter Vajda ; Seon Joo Kim
HIGHLIGHT: In this paper, we investigate the problem of jointly upsampling videos both in space and time, which is becoming more important with advances in display systems.
43, TITLE: Robust 3D Self-portraits in Seconds
http://arxiv.org/abs/2004.02460
AUTHORS: Zhe Li ; Tao Yu ; Chuanyu Pan ; Zerong Zheng ; Yebin Liu
COMMENTS: CVPR 2020, oral
HIGHLIGHT: In this paper, we propose an efficient method for robust 3D self-portraits using a single RGBD camera.
44, TITLE: Class Anchor Clustering: a Distance-based Loss for Training Open Set Classifiers
http://arxiv.org/abs/2004.02434
AUTHORS: Dimity Miller ; Niko Sünderhauf ; Michael Milford ; Feras Dayoub
HIGHLIGHT: To overcome this limitation, we introduce Class Anchor Clustering (CAC) loss.
45, TITLE: Neural Architecture Search for Lightweight Non-Local Networks
http://arxiv.org/abs/2004.01961
AUTHORS: Yingwei Li ; Xiaojie Jin ; Jieru Mei ; Xiaochen Lian ; Linjie Yang ; Cihang Xie ; Qihang Yu ; Yuyin Zhou ; Song Bai ; Alan Yuille
COMMENTS: CVPR 2020. Project page: https://github.com/LiYingwei/AutoNL
HIGHLIGHT: We propose AutoNL to overcome the above two obstacles.
46, TITLE: Optical Flow in Dense Foggy Scenes using Semi-Supervised Learning
http://arxiv.org/abs/2004.01905
AUTHORS: Wending Yan ; Aashish Sharma ; Robby T. Tan
HIGHLIGHT: To address the problem, we introduce a semi-supervised deep learning technique that employs real fog images without optical flow ground-truths in the training process.
47, TITLE: Cross-domain Face Presentation Attack Detection via Multi-domain Disentangled Representation Learning
http://arxiv.org/abs/2004.01959
AUTHORS: Guoqing Wang ; Hu Han ; Shiguang Shan ; Xilin Chen
COMMENTS: Accepted by CVPR2020
HIGHLIGHT: In light of this, we propose an efficient disentangled representation learning for cross-domain face PAD.
48, TITLE: Weakly-Supervised Mesh-Convolutional Hand Reconstruction in the Wild
http://arxiv.org/abs/2004.01946
AUTHORS: Dominik Kulon ; Riza Alp Güler ; Iasonas Kokkinos ; Michael Bronstein ; Stefanos Zafeiriou
COMMENTS: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR 2020). Additional resources: https://arielai.com/mesh_hands
HIGHLIGHT: We introduce a simple and effective network architecture for monocular 3D hand pose estimation consisting of an image encoder followed by a mesh convolutional decoder that is trained through a direct 3D hand mesh reconstruction loss.
49, TITLE: Understanding (Non-)Robust Feature Disentanglement and the Relationship Between Low- and High-Dimensional Adversarial Attacks
http://arxiv.org/abs/2004.01903
AUTHORS: Zuowen Wang ; Leo Horne
HIGHLIGHT: Recent work has put forth the hypothesis that adversarial vulnerabilities in neural networks are due to them overusing "non-robust features" inherent in the training data.
50, TITLE: Variable Shift SDD: A More Succinct Sentential Decision Diagram
http://arxiv.org/abs/2004.02502
AUTHORS: Kengo Nakamura ; Shuhei Denzumi ; Masaaki Nishino
COMMENTS: 21 pages; Accepted for SEA2020
HIGHLIGHT: In this paper, we propose a more succinct variant of SDD named Variable Shift SDD (VS-SDD).
51, TITLE: Applying Cyclical Learning Rate to Neural Machine Translation
http://arxiv.org/abs/2004.02401
AUTHORS: Choon Meng Lee ; Jianfeng Liu ; Wei Peng
HIGHLIGHT: Drawing inspiration from the successful application of cyclical learning rate policy for computer vision related convolutional networks and datasets, we explore how cyclical learning rate can be applied to train transformer-based neural networks for neural machine translation.
52, TITLE: Weighted Fisher Discriminant Analysis in the Input and Feature Spaces
http://arxiv.org/abs/2004.01857
AUTHORS: Benyamin Ghojogh ; Milad Sikaroudi ; H. R. Tizhoosh ; Fakhri Karray ; Mark Crowley
COMMENTS: Accepted (to appear) in International Conference on Image Analysis and Recognition (ICIAR) 2020, Springer
HIGHLIGHT: In this paper, we propose a cosine-weighted FDA as well as an automatically weighted FDA in which weights are found automatically.
53, TITLE: Attention-Guided Version of 2D UNet for Automatic Brain Tumor Segmentation
http://arxiv.org/abs/2004.02009
AUTHORS: Mehrdad Noori ; Ali Bahri ; Karim Mohammadi
COMMENTS: 7 pages, 5 figures, 4 tables, Accepted by ICCKE 2019
HIGHLIGHT: In order to address the mentioned issues, we design a low-parameter network based on 2D UNet in which we employ two techniques.
54, TITLE: Segmentation for Classification of Screening Pancreatic Neuroendocrine Tumors
http://arxiv.org/abs/2004.02021
AUTHORS: Zhuotun Zhu ; Yongyi Lu ; Wei Shen ; Elliot K. Fishman ; Alan L. Yuille
HIGHLIGHT: This work presents comprehensive results to detect in the early stage the pancreatic neuroendocrine tumors (PNETs), a group of endocrine tumors arising in the pancreas, which are the second common type of pancreatic cancer, by checking the abdominal CT scans. To quantitatively analyze our method, we collect and voxelwisely label a new abdominal CT dataset containing $376$ cases with both arterial and venous phases available for each case, in which $228$ cases were diagnosed with PNETs while the remaining $148$ cases are normal, which is currently the largest dataset for PNETs to the best of our knowledge.
55, TITLE: Empirical Evaluation of PRNU Fingerprint Variation for Mismatched Imaging Pipelines
http://arxiv.org/abs/2004.01929
AUTHORS: Sharad Joshi ; Pawel Korus ; Nitin Khanna ; Nasir Memon
HIGHLIGHT: We show that camera fingerprints exhibit non-negligible variations in this setup, which may lead to unexpected degradation of detection statistics in real-world use-cases.
56, TITLE: Volumetric Attention for 3D Medical Image Segmentation and Detection
http://arxiv.org/abs/2004.01997
AUTHORS: Xudong Wang ; Shizhong Han ; Yunqiang Chen ; Dashan Gao ; Nuno Vasconcelos
COMMENTS: Accepted by MICCAI 2019
HIGHLIGHT: Volumetric Attention for 3D Medical Image Segmentation and Detection
57, TITLE: Ontologies in CLARIAH: Towards Interoperability in History, Language and Media
http://arxiv.org/abs/2004.02845
AUTHORS: Albert Meroño-Peñuela ; Victor de Boer ; Marieke van Erp ; Willem Melder ; Rick Mourits ; Auke Rijpma ; Ruben Schalk ; Richard Zijdeman
COMMENTS: 26 pages
HIGHLIGHT: In this chapter, we describe the ontologies and tools developed and integrated in the Dutch national project CLARIAH to address these issues across datasets from three fundamental domains or "pillars" of the humanities (linguistics, social and economic history, and media studies) that have paradigmatic data representations (textual corpora, structured data, and multimedia).
58, TITLE: A new approach for generation of generalized basic probability assignment in the evidence theory
http://arxiv.org/abs/2004.02746
AUTHORS: Dongdong Wu ; Zijing Liu ; Yongchuan Tang
HIGHLIGHT: In this paper, a new method is proposed to generate generalized basic probability assignment (GBPA) based on the triangular fuzzy number model under the open world assumption.
59, TITLE: Answering Complex Queries in Knowledge Graphs with Bidirectional Sequence Encoders
http://arxiv.org/abs/2004.02596
AUTHORS: Bhushan Kotnis ; Carolin Lawrence ; Mathias Niepert
COMMENTS: 7 pages, 2 figures
HIGHLIGHT: In this work we address the more ambitious challenge of predicting the answers of conjunctive queries with multiple missing entities. We introduce a new dataset for predicting the answer of conjunctive query and conduct experiments that show \textsc{BiQE} significantly outperforming state of the art baselines.
60, TITLE: On Evaluating the Quality of Rule-Based Classification Systems
http://arxiv.org/abs/2004.02671
AUTHORS: Nassim Dehouche
COMMENTS: ICIC Express Letters Volume 11, Number 10, October 2017
HIGHLIGHT: In this work, we claim that these two indicators may be insufficient, and additional measures of quality may need to be developed.
61, TITLE: Trust-based Multiagent Consensus or Weightings Aggregation
http://arxiv.org/abs/2004.02490
AUTHORS: Bruno Yun ; Madalina Croitoru
HIGHLIGHT: We introduce a framework for reaching a consensus amongst several agents communicating via a trust network on conflicting information about their environment.
62, TITLE: Natural language processing for word sense disambiguation and information extraction
http://arxiv.org/abs/2004.02256
AUTHORS: K. R. Chowdhary
COMMENTS: 150 pages, PhD Thesis
HIGHLIGHT: The thesis presents a new approach for Word Sense Disambiguation using thesaurus.
63, TITLE: Speaker Recognition using SincNet and X-Vector Fusion
http://arxiv.org/abs/2004.02219
AUTHORS: Mayank Tripathi ; Divyanshu Singh ; Seba Susan
COMMENTS: The 19th International Conference on Artificial Intelligence and Soft Computing
HIGHLIGHT: In this paper, we propose an innovative approach to perform speaker recognition by fusing two recently introduced deep neural networks (DNNs) namely - SincNet and X-Vector.
64, TITLE: Semantics of the Unwritten
http://arxiv.org/abs/2004.02251
AUTHORS: He Bai ; Peng Shi ; Jimmy Lin ; Luchen Tan ; Kun Xiong ; Wen Gao ; Jie Liu ; Ming Li
HIGHLIGHT: In this article, we will study how those implicit "not read" information such as end-of-paragraph (EOP) and end-of-sequence (EOS) affect the quality of text generation.
65, TITLE: Syntax-driven Iterative Expansion Language Models for Controllable Text Generation
http://arxiv.org/abs/2004.02211
AUTHORS: Noe Casas ; José A. R. Fonollosa ; Marta R. Costa-jussà
HIGHLIGHT: We propose a new paradigm for introducing a syntactic inductive bias into neural language modeling and text generation, where the dependency parse tree is used to drive the Transformer model to generate sentences iteratively, starting from a root placeholder and generating the tokens of the different dependency tree branches in parallel, using either word or subword vocabularies.
66, TITLE: Stylistic Dialogue Generation via Information-Guided Reinforcement Learning Strategy
http://arxiv.org/abs/2004.02202
AUTHORS: Yixuan Su ; Deng Cai ; Yan Wang ; Simon Baker ; Anna Korhonen ; Nigel Collier ; Xiaojiang Liu
HIGHLIGHT: To enable better balance between the content quality and the style, we introduce a new training strategy, know as Information-Guided Reinforcement Learning (IG-RL).
67, TITLE: Prototype-to-Style: Dialogue Generation with Style-Aware Editing on Retrieval Memory
http://arxiv.org/abs/2004.02214
AUTHORS: Yixuan Su ; Yan Wang ; Simon Baker ; Deng Cai ; Xiaojiang Liu ; Anna Korhonen ; Nigel Collier
HIGHLIGHT: To effectively train the proposed model, we propose a new style-aware learning objective as well as a de-noising learning strategy.
68, TITLE: Improved Pretraining for Domain-specific Contextual Embedding Models
http://arxiv.org/abs/2004.02288
AUTHORS: Subendhu Rongali ; Abhyuday Jagannatha ; Bhanu Pratap Singh Rawat ; Hong Yu
HIGHLIGHT: We investigate methods to mitigate catastrophic forgetting during domain-specific pretraining of contextual embedding models such as BERT, DistilBERT, and RoBERTa.
69, TITLE: Hierarchical Entity Typing via Multi-level Learning to Rank
http://arxiv.org/abs/2004.02286
AUTHORS: Tongfei Chen ; Yunmo Chen ; Benjamin Van Durme
COMMENTS: Accepted at ACL 2020
HIGHLIGHT: We propose a novel method for hierarchical entity classification that embraces ontological structure at both training and during prediction.
70, TITLE: DualSDF: Semantic Shape Manipulation using a Two-Level Representation
http://arxiv.org/abs/2004.02869
AUTHORS: Zekun Hao ; Hadar Averbuch-Elor ; Noah Snavely ; Serge Belongie
COMMENTS: Published in CVPR 2020
HIGHLIGHT: We propose DualSDF, a representation expressing shapes at two levels of granularity, one capturing fine details and the other representing an abstracted proxy shape using simple and semantically consistent shape primitives.
71, TITLE: Game on Random Environement, Mean-field Langevin System and Neural Networks
http://arxiv.org/abs/2004.02457
AUTHORS: Giovanni Conforti ; Anna Kazeykina ; Zhenjie Ren
HIGHLIGHT: In this paper we study a type of games regularized by the relative entropy, where the players' strategies are coupled through a random environment variable.
72, TITLE: Light Field Spatial Super-resolution via Deep Combinatorial Geometry Embedding and Structural Consistency Regularization
http://arxiv.org/abs/2004.02215
AUTHORS: Jing Jin ; Junhui Hou ; Jie Chen ; Sam Kwong
COMMENTS: This paper was accepted by CVPR 2020
HIGHLIGHT: In this paper, we propose a novel learning-based LF spatial SR framework, in which each view of an LF image is first individually super-resolved by exploring the complementary information among views with combinatorial geometry embedding.
73, TITLE: Lightweight Multi-View 3D Pose Estimation through Camera-Disentangled Representation
http://arxiv.org/abs/2004.02186
AUTHORS: Edoardo Remelli ; Shangchen Han ; Sina Honari ; Pascal Fua ; Robert Wang
COMMENTS: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition 2020
HIGHLIGHT: We present a lightweight solution to recover 3D pose from multi-view images captured with spatially calibrated cameras.
74, TITLE: Iterative Context-Aware Graph Inference for Visual Dialog
http://arxiv.org/abs/2004.02194
AUTHORS: Dan Guo ; Hui Wang ; Hanwang Zhang ; Zheng-Jun Zha ; Meng Wang
HIGHLIGHT: To this end, we propose a novel Context-Aware Graph (CAG) neural network.
75, TITLE: Deep Multimodal Feature Encoding for Video Ordering
http://arxiv.org/abs/2004.02205
AUTHORS: Vivek Sharma ; Makarand Tapaswi ; Rainer Stiefelhagen
COMMENTS: IEEE International Conference on Computer Vision (ICCV) Workshop on Large Scale Holistic Video Understanding. The datasets and code are available at https://github.com/vivoutlaw/tcbp
HIGHLIGHT: We present a way to learn a compact multimodal feature representation that encodes all these modalities. To this end, we create a new multimodal dataset for temporal ordering that consists of approximately 30K scenes (2-6 clips per scene) based on the "Large Scale Movie Description Challenge".
76, TITLE: Clustering based Contrastive Learning for Improving Face Representations
http://arxiv.org/abs/2004.02195
AUTHORS: Vivek Sharma ; Makarand Tapaswi ; M. Saquib Sarfraz ; Rainer Stiefelhagen
COMMENTS: To appear at IEEE International Conference on Automatic Face and Gesture Recognition (FG), 2020
HIGHLIGHT: In this work, we present Clustering-based Contrastive Learning (CCL), a new clustering-based representation learning approach that uses labels obtained from clustering along with video constraints to learn discriminative face features.
77, TITLE: Confident Coreset for Active Learning in Medical Image Analysis
http://arxiv.org/abs/2004.02200
AUTHORS: Seong Tae Kim ; Farrukh Mushtaq ; Nassir Navab
COMMENTS: 10 pages, 4 figures
HIGHLIGHT: In this paper, we propose a novel active learning method, confident coreset, which considers both uncertainty and distribution for effectively selecting informative samples.
78, TITLE: Google Landmarks Dataset v2 -- A Large-Scale Benchmark for Instance-Level Recognition and Retrieval
http://arxiv.org/abs/2004.01804
AUTHORS: Tobias Weyand ; Andre Araujo ; Bingyi Cao ; Jack Sim
COMMENTS: CVPR20 camera-ready (oral)
HIGHLIGHT: We introduce the Google Landmarks Dataset v2 (GLDv2), a new benchmark for large-scale, fine-grained instance recognition and image retrieval in the domain of human-made and natural landmarks.
79, TITLE: Self-Supervised Viewpoint Learning From Image Collections
http://arxiv.org/abs/2004.01793
AUTHORS: Siva Karthik Mustikovela ; Varun Jampani ; Shalini De Mello ; Sifei Liu ; Umar Iqbal ; Carsten Rother ; Jan Kautz
COMMENTS: Accepted at CVPR 20
HIGHLIGHT: We propose a novel learning framework which incorporates an analysis-by-synthesis paradigm to reconstruct images in a viewpoint aware manner with a generative network, along with symmetry and adversarial constraints to successfully supervise our viewpoint estimation network.
80, TITLE: SqueezeSegV3: Spatially-Adaptive Convolution for Efficient Point-Cloud Segmentation
http://arxiv.org/abs/2004.01803
AUTHORS: Chenfeng Xu ; Bichen Wu ; Zining Wang ; Wei Zhan ; Peter Vajda ; Kurt Keutzer ; Masayoshi Tomizuka
COMMENTS: Code and data are available at: https://github.com/chenfengxu714/SqueezeSegV3.git
HIGHLIGHT: To fix this, we propose Spatially-Adaptive Convolution (SAC) to adopt different filters for different locations according to the input image.
81, TITLE: Temporally Distributed Networks for Fast Video Segmentation
http://arxiv.org/abs/2004.01800
AUTHORS: Ping Hu ; Fabian Caba Heilbron ; Oliver Wang ; Zhe Lin ; Stan Sclaroff ; Federico Perazzi
COMMENTS: [CVPR2020] Project: https://github.com/feinanshan/TDNet
HIGHLIGHT: We present TDNet, a temporally distributed network designed for fast and accurate video semantic segmentation.
82, TITLE: TimeGate: Conditional Gating of Segments in Long-range Activities
http://arxiv.org/abs/2004.01808
AUTHORS: Noureldien Hussein ; Mihir Jain ; Babak Ehteshami Bejnordi
HIGHLIGHT: We propose TimeGate, along with a novel conditional gating module, for sampling the most representative segments from the long-range activity.
83, TITLE: Privacy-Preserving Eye Videos using Rubber Sheet Model
http://arxiv.org/abs/2004.01792
AUTHORS: Aayush K Chaudhary ; Jeff B. Pelz
COMMENTS: Will be published in ETRA 20 Short Papers, June 2-5, 2020, Stuttgart, Germany Copyright 2020 Association for Computing Machinery
HIGHLIGHT: We present a new approach to handle privacy issues in eye videos by replacing the current identifiable iris texture with a different iris template in the video capture pipeline based on the Rubber Sheet Model.
84, TITLE: The Collection Virtual Machine: An Abstraction for Multi-Frontend Multi-Backend Data Analysis
http://arxiv.org/abs/2004.01908
AUTHORS: Sabir Akhadov ; Renato Marroquín ; Ingo Müller
COMMENTS: This paper was originally submitted to CIDR'19
HIGHLIGHT: In this paper, we propose the "Collection Virtual Machine" (or CVM) -- an abstraction that can capture the essence of a large span of types of analyses and backend implementations.
85, TITLE: A Generic Graph-based Neural Architecture Encoding Scheme for Predictor-based NAS
http://arxiv.org/abs/2004.01899
AUTHORS: Xuefei Ning ; Yin Zheng ; Tianchen Zhao ; Yu Wang ; Huazhong Yang
COMMENTS: 15 pages main text; 9 pages appendix
HIGHLIGHT: This work proposes a novel Graph-based neural ArchiTecture Encoding Scheme, a.k.a. GATES, to improve the predictor-based neural architecture search.
86, TITLE: Complex-Valued Convolutional Neural Networks for MRI Reconstruction
http://arxiv.org/abs/2004.01738
AUTHORS: Elizabeth K. Cole ; Joseph Y. Cheng ; John M. Pauly ; Shreyas S. Vasanawala
COMMENTS: 10 pages; 11 figures; Submitted to IEEE TMI
HIGHLIGHT: In this work, we investigate end-to-end complex-valued convolutional neural networks - specifically, for image reconstruction in lieu of two-channel real-valued networks.
87, TITLE: A limitation on the KPT interpolation
http://arxiv.org/abs/2004.02448
AUTHORS: Jan Krajicek
COMMENTS: 6 pages, preprint March 2020
HIGHLIGHT: We prove a limitation on a variant of the KPT theorem proposed for propositional proof systems by Pich and Santhanam 2020, for all proof systems that prove the disjointness of two NP sets that are hard to distinguish.
88, TITLE: Data Manipulation: Towards Effective Instance Learning for Neural Dialogue Generation via Learning to Augment and Reweight
http://arxiv.org/abs/2004.02594
AUTHORS: Hengyi Cai ; Hongshen Chen ; Yonghao Song ; Cheng Zhang ; Xiaofang Zhao ; Dawei Yin
COMMENTS: Accepted as a long paper to ACL 2020
HIGHLIGHT: In this paper, we propose a data manipulation framework to proactively reshape the data distribution towards reliable samples by augmenting and highlighting effective learning samples as well as reducing the effect of inefficient samples simultaneously.
89, TITLE: Sparse Text Generation
http://arxiv.org/abs/2004.02644
AUTHORS: Pedro Henrique Martins ; Zita Marinho ; André F. T. Martins
HIGHLIGHT: In this paper, we use the recently introduced entmax transformation to train and sample from a natively sparse language model, avoiding this mismatch.
90, TITLE: At Which Level Should We Extract? An Empirical Study on Extractive Document Summarization
http://arxiv.org/abs/2004.02664
AUTHORS: Qingyu Zhou ; Furu Wei ; Ming Zhou
HIGHLIGHT: In this work, we show that unnecessity and redundancy issues exist when extracting full sentences, and extracting sub-sentential units is a promising alternative.
91, TITLE: Bootstrapping a Crosslingual Semantic Parser
http://arxiv.org/abs/2004.02585
AUTHORS: Tom Sherborne ; Yumo Xu ; Mirella Lapata
HIGHLIGHT: In this work, we propose to adapt a semantic parser trained on a single language, such as English, to new languages and multiple domains with minimal annotation.
92, TITLE: Learning to Summarize Passages: Mining Passage-Summary Pairs from Wikipedia Revision Histories
http://arxiv.org/abs/2004.02592
AUTHORS: Qingyu Zhou ; Furu Wei ; Ming Zhou
HIGHLIGHT: In this paper, we propose a method for automatically constructing a passage-to-summary dataset by mining the Wikipedia page revision histories.
93, TITLE: Graph Sequential Network for Reasoning over Sequences
http://arxiv.org/abs/2004.02001
AUTHORS: Ming Tu ; Jing Huang ; Xiaodong He ; Bowen Zhou
COMMENTS: Part of this paper was presented at NeurIPS 2019 Workshop on Graph Representation Learning
HIGHLIGHT: In this paper, we consider a novel case where reasoning is needed over graphs built from sequences, i.e. graph nodes with sequence data.
94, TITLE: Hooks in the Headline: Learning to Generate Headlines with Controlled Styles
http://arxiv.org/abs/2004.01980
AUTHORS: Di Jin ; Zhijing Jin ; Joey Tianyi Zhou ; Lisa Orii ; Peter Szolovits
COMMENTS: To appear at ACL 2020
HIGHLIGHT: We propose a new task, Stylistic Headline Generation (SHG), to enrich the headlines with three style options (humor, romance and clickbait), in order to attract more readers.
95, TITLE: Generating Hierarchical Explanations on Text Classification via Feature Interaction Detection
http://arxiv.org/abs/2004.02015
AUTHORS: Hanjie Chen ; Guangtao Zheng ; Yangfeng Ji
COMMENTS: Accepted to ACL 2020
HIGHLIGHT: In this work, we build hierarchical explanations by detecting feature interactions.
96, TITLE: Learning a Simple and Effective Model for Multi-turn Response Generation with Auxiliary Tasks
http://arxiv.org/abs/2004.01972
AUTHORS: Yufan Zhao ; Can Xu ; Wei Wu
HIGHLIGHT: In this work, we pursue a model that has a simple structure yet can effectively leverage conversation contexts for response generation.
97, TITLE: Open Domain Dialogue Generation with Latent Images
http://arxiv.org/abs/2004.01981
AUTHORS: Ze Yang ; Wei Wu ; Huang Hu ; Can Xu ; Zhoujun Li
HIGHLIGHT: Thus, we propose learning a response generation model with both image-grounded dialogues and textual dialogues by assuming that there is a latent variable in a textual dialogue that represents the image, and trying to recover the latent image through text-to-image generation techniques.
98, TITLE: End-to-End Abstractive Summarization for Meetings
http://arxiv.org/abs/2004.02016
AUTHORS: Chenguang Zhu ; Ruochen Xu ; Michael Zeng ; Xuedong Huang
COMMENTS: 12 pages, 2 figures
HIGHLIGHT: In this paper, we propose a novel end-to-end abstractive summary network that adapts to the meeting scenario.
99, TITLE: Incorporating Bilingual Dictionaries for Low Resource Semi-Supervised Neural Machine Translation
http://arxiv.org/abs/2004.02071
AUTHORS: Sreyashi Nag ; Mihir Kale ; Varun Lakshminarasimhan ; Swapnil Singhavi
HIGHLIGHT: We propose a simple data augmentation technique to address both this shortcoming.
100, TITLE: Talk to Papers: Bringing Neural Question Answering to Academic Search
http://arxiv.org/abs/2004.02002
AUTHORS: Tianchang Zhao ; Kyusong Lee
COMMENTS: accepted at ACL 2020, demo paper
HIGHLIGHT: We introduce Talk to Papers, which exploits the recent open-domain question answering (QA) techniques to improve the current experience of academic search.
101, TITLE: Geometrically Principled Connections in Graph Neural Networks
http://arxiv.org/abs/2004.02658
AUTHORS: Shunwang Gong ; Mehdi Bahri ; Michael M. Bronstein ; Stefanos Zafeiriou
COMMENTS: Presented at Computer Vision and Pattern Recognition (CVPR), 2020
HIGHLIGHT: In this paper, we argue geometry should remain the primary driving force behind innovation in the emerging field of geometric deep learning.
102, TITLE: Appearance Shock Grammar for Fast Medial Axis Extraction from Real Images
http://arxiv.org/abs/2004.02677
AUTHORS: Charles-Olivier Dufresne Camaro ; Morteza Rezanejad ; Stavros Tsogkas ; Kaleem Siddiqi ; Sven Dickinson
COMMENTS: Accepted to CVPR 2020
HIGHLIGHT: We combine ideas from shock graph theory with more recent appearance-based methods for medial axis extraction from complex natural scenes, improving upon the present best unsupervised method, in terms of efficiency and performance.
103, TITLE: Finding Your (3D) Center: 3D Object Detection Using a Learned Loss
http://arxiv.org/abs/2004.02693
AUTHORS: David Griffiths ; Jan Boehm ; Tobias Ritschel
COMMENTS: 19 pages, 9 figures
HIGHLIGHT: Addressing this disparity, we introduce a new optimization procedure, which allows training for 3D detection with raw 3D scans while using as little as 5% of the object labels and still achieve comparable performance.
104, TITLE: Light3DPose: Real-time Multi-Person 3D PoseEstimation from Multiple Views
http://arxiv.org/abs/2004.02688
AUTHORS: Alessio Elmi ; Davide Mazzini ; Pietro Tortella
HIGHLIGHT: We present an approach to perform 3D pose estimation of multiple people from a few calibrated camera views.
105, TITLE: SHOP-VRB: A Visual Reasoning Benchmark for Object Perception
http://arxiv.org/abs/2004.02673
AUTHORS: Michal Nazarczuk ; Krystian Mikolajczyk
COMMENTS: International Conference on Robotics and Automation (ICRA) 2020
HIGHLIGHT: In this paper we present an approach and a benchmark for visual reasoning in robotics applications, in particular small object grasping and manipulation.
106, TITLE: A Local-to-Global Approach to Multi-modal Movie Scene Segmentation
http://arxiv.org/abs/2004.02678
AUTHORS: Anyi Rao ; Linning Xu ; Yu Xiong ; Guodong Xu ; Qingqiu Huang ; Bolei Zhou ; Dahua Lin
COMMENTS: Accepted to CVPR2020
HIGHLIGHT: A Local-to-Global Approach to Multi-modal Movie Scene Segmentation
107, TITLE: Attribute Mix: Semantic Data Augmentation for Fine Grained Recognition
http://arxiv.org/abs/2004.02684
AUTHORS: Hao Li ; Xiaopeng Zhang ; Hongkai Xiong ; Qi Tian
HIGHLIGHT: In this paper, we propose Attribute Mix, a data augmentation strategy at attribute level to expand the fine-grained samples.
108, TITLE: Fair Latency-Aware Metric for real-time video segmentation networks
http://arxiv.org/abs/2004.02574
AUTHORS: Evann Courdier ; Francois Fleuret
HIGHLIGHT: In this paper, we argue that this metric is not relevant enough for real-time video as it does not take into account the processing time (latency) of the network.
109, TITLE: Anisotropic Convolutional Networks for 3D Semantic Scene Completion
http://arxiv.org/abs/2004.02122
AUTHORS: Jie Li ; Kai Han ; Peng Wang ; Yu Liu ; Xia Yuan
HIGHLIGHT: To handle such variations, we propose a novel module called anisotropic convolution, which properties with flexibility and power impossible for the competing methods such as standard 3D convolution and some of its variations.
110, TITLE: Neuron Linear Transformation: Modeling the Domain Shift for Crowd Counting
http://arxiv.org/abs/2004.02133
AUTHORS: Qi Wang ; Tao Han ; Junyu Gao ; Yuan Yuan
COMMENTS: 12 paegs, 8 figures
HIGHLIGHT: To describe the domain gap directly at the parameter-level, we propose a Neuron Linear Transformation (NLT) method, where NLT is exploited to learn the shift at neuron-level and then transfer the source model to the target model.
111, TITLE: Learning and Recognizing Archeological Features from LiDAR Data
http://arxiv.org/abs/2004.02099
AUTHORS: Conrad M Albrecht ; Chris Fisher ; Marcus Freitag ; Hendrik F Hamann ; Sharathchandra Pankanti ; Florencia Pezzutti ; Francesca Rossi
HIGHLIGHT: We present a remote sensing pipeline that processes LiDAR (Light Detection And Ranging) data through machine & deep learning for the application of archeological feature detection on big geo-spatial data platforms such as e.g. IBM PAIRS Geoscope.
112, TITLE: Deep Homography Estimation for Dynamic Scenes
http://arxiv.org/abs/2004.02132
AUTHORS: Hoang Le ; Feng Liu ; Shu Zhang ; Aseem Agarwala
COMMENTS: CVPR 2020, https://github.com/lcmhoang/hmg-dynamics
HIGHLIGHT: This paper investigates and discusses how to design and train a deep neural network that handles dynamic scenes. We first collect a large video dataset with dynamic content.
113, TITLE: Attentive One-Dimensional Heatmap Regression for Facial Landmark Detection and Tracking
http://arxiv.org/abs/2004.02108
AUTHORS: Shi Yin ; Shangfei Wang ; Xiaoping Chen ; Enhong Chen
HIGHLIGHT: To address this, we propose a novel attentive one-dimensional heatmap regression method for facial landmark localization.
114, TITLE: Deeply Aligned Adaptation for Cross-domain Object Detection
http://arxiv.org/abs/2004.02093
AUTHORS: Minghao Fu ; Zhenshan Xie ; Wen Li ; Lixin Duan
HIGHLIGHT: In this work, we propose an end-to-end solution based on Faster R-CNN, where ground-truth annotations are available for source images (e.g., cartoon) but not for target ones (e.g., watercolor) during training.
115, TITLE: TAPAS: Weakly Supervised Table Parsing via Pre-training
http://arxiv.org/abs/2004.02349
AUTHORS: Jonathan Herzig ; Paweł Krzysztof Nowak ; Thomas Müller ; Francesco Piccinno ; Julian Martin Eisenschlos
COMMENTS: Accepted to ACL 2020
HIGHLIGHT: In this paper, we present TAPAS, an approach to question answering over tables without generating logical forms.
116, TITLE: Measuring Social Biases of Crowd Workers using Counterfactual Queries
http://arxiv.org/abs/2004.02028
AUTHORS: Bhavya Ghai ; Q. Vera Liao ; Yunfeng Zhang ; Klaus Mueller
COMMENTS: Accepted at the Workshop on Fair and Responsible AI at ACM CHI 2020
HIGHLIGHT: In this work, we propose a new method based on counterfactual fairness to quantify the degree of inherent social bias in each crowd worker.
117, TITLE: BlackBox Toolkit: Intelligent Assistance to UI Design
http://arxiv.org/abs/2004.01949
AUTHORS: Vinoth Pandian Sermuga Pandian ; Sarah Suleri
COMMENTS: Workshop position paper for CHI'20, Workshop on Artificial Intelligence for HCI: A Modern Approach; 4 pages, 3 figures
HIGHLIGHT: In this research, we propose to modify the UI design process by assisting it with artificial intelligence (AI).
118, TITLE: XtracTree for Regulator Validation of Bagging Methods Used in Retail Banking
http://arxiv.org/abs/2004.02326
AUTHORS: Jeremy Charlier ; Vladimir Makarenkov
HIGHLIGHT: In this context, we propose XtracTree, an algorithm that is capable of effectively converting an ML bagging classifier, such as a decision tree or a random forest, into simple "if-then" rules satisfying the requirements of model validation.
119, TITLE: Personalization in Human-AI Teams: Improving the Compatibility-Accuracy Tradeoff
http://arxiv.org/abs/2004.02289
AUTHORS: Jonathan Martinez ; Kobi Gal ; Ece Kamar ; Levi H. S. Lelis
COMMENTS: 8 pages, 7 figures
HIGHLIGHT: In this paper, we show that in some cases it is possible to improve this compatibility-accuracy trade-off relative to a specific user by employing new error functions for the AI updates that personalize the weight updates to be compatible with the user's history of interaction with the system and present experimental results indicating that this approach provides major improvements to certain users.
120, TITLE: Dynamic Decision Boundary for One-class Classifiers applied to non-uniformly Sampled Data
http://arxiv.org/abs/2004.02273
AUTHORS: Riccardo La Grassa ; Ignazio Gallo ; Nicola Landro
COMMENTS: 7 pages
HIGHLIGHT: In this paper, we propose a one-class classifier based on the minimum spanning tree with a dynamic decision boundary (OCdmst) to make good prediction also in the case we have non-uniformly sampled data.
121, TITLE: An Eigenspace Divide-and-Conquer Approach for Large-Scale Optimization
http://arxiv.org/abs/2004.02115
AUTHORS: Zhigang Ren ; Yongsheng Liang ; Muyi Wang ; Yang Yang ; An Chen
HIGHLIGHT: This study attempts to address the above issue from a different perspective and proposes an eigenspace divide-and-conquer (EDC) approach.
122, TITLE: Responsive Parallelism with Futures and State
http://arxiv.org/abs/2004.02870
AUTHORS: Stefan K. Muller ; Kyle Singer ; Noah Goldstein ; Umut A. Acar ; Kunal Agrawal ; I-Ting Angelina Lee
HIGHLIGHT: In this paper, we lift the restriction concerning the use of state.
123, TITLE: Bringing GNU Emacs to Native Code
http://arxiv.org/abs/2004.02504
AUTHORS: Andrea Corallo ; Luca Nassi ; Nicola Manca
COMMENTS: 8 pages, 1 figure
HIGHLIGHT: In this work we discuss the implementation of an optimizing compiler approach for Elisp targeting native code.
124, TITLE: Rational neural networks
http://arxiv.org/abs/2004.01902
AUTHORS: Nicolas Boullé ; Yuji Nakatsukasa ; Alex Townsend
COMMENTS: 20 pages, 6 figures
HIGHLIGHT: We consider neural networks with rational activation functions.
125, TITLE: Vocoder-Based Speech Synthesis from Silent Videos
http://arxiv.org/abs/2004.02541
AUTHORS: Daniel Michelsanti ; Olga Slizovskaia ; Gloria Haro ; Emilia Gómez ; Zheng-Hua Tan ; Jesper Jensen
HIGHLIGHT: In this paper, we present a way to synthesise speech from the silent video of a talker using deep learning.
126, TITLE: Evaluating NLP Models via Contrast Sets
http://arxiv.org/abs/2004.02709
AUTHORS: Matt Gardner ; Yoav Artzi ; Victoria Basmova ; Jonathan Berant ; Ben Bogin ; Sihao Chen ; Pradeep Dasigi ; Dheeru Dua ; Yanai Elazar ; Ananth Gottumukkala ; Nitish Gupta ; Hanna Hajishirzi ; Gabriel Ilharco ; Daniel Khashabi ; Kevin Lin ; Jiangming Liu ; Nelson F. Liu ; Phoebe Mulcaire ; Qiang Ning ; Sameer Singh ; Noah A. Smith ; Sanjay Subramanian ; Reut Tsarfaty ; Eric Wallace ; Ally Zhang ; Ben Zhou
HIGHLIGHT: We propose a new annotation paradigm for NLP that helps to close systematic gaps in the test data.
127, TITLE: Leveraging the Inherent Hierarchy of Vacancy Titles for Automated Job Ontology Expansion
http://arxiv.org/abs/2004.02814
AUTHORS: Jeroen Van Hautte ; Vincent Schelstraete ; Mikaël Wornoo
COMMENTS: Accepted to the Proceedings of the 6th International Workshop on Computational Terminology (COMPUTERM 2020)
HIGHLIGHT: We introduce a novel, purely data-driven approach towards the detection of new job titles.
128, TITLE: COVID-19: Strategies for Allocation of Test Kits
http://arxiv.org/abs/2004.01740
AUTHORS: Arpita Biswas ; Shruthi Bannur ; Prateek Jain ; Srujana Merugu
HIGHLIGHT: In this report, we consider the problem of allocating test-kits and discuss some solution approaches.
129, TITLE: Generative Forensics: Procedural Generation and Information Games
http://arxiv.org/abs/2004.01768
AUTHORS: Michael Cook
HIGHLIGHT: In this paper we introduce the notion of generative forensics games, a subgenre of information games that challenge the player to understand the output of a generative system.
130, TITLE: Meta-Learning for Few-Shot NMT Adaptation
http://arxiv.org/abs/2004.02745
AUTHORS: Amr Sharaf ; Hany Hassan ; Hal Daumé III
HIGHLIGHT: We present META-MT, a meta-learning approach to adapt Neural Machine Translation (NMT) systems in a few-shot setting.
131, TITLE: Quantum Inspired Word Representation and Computation
http://arxiv.org/abs/2004.02705
AUTHORS: Shen Li ; Renfen Hu ; Jinshan Wu
HIGHLIGHT: Inspired by quantum probability, we represent words as density matrices, which are inherently capable of representing mixed states.
132, TITLE: GIANT: Scalable Creation of a Web-scale Ontology
http://arxiv.org/abs/2004.02118
AUTHORS: Bang Liu ; Weidong Guo ; Di Niu ; Jinwen Luo ; Chaoyue Wang ; Zhen Wen ; Yu Xu
COMMENTS: Accepted as full paper by SIGMOD 2020
HIGHLIGHT: In this paper, we present GIANT, a mechanism to construct a user-centered, web-scale, structured ontology, containing a large number of natural language phrases conforming to user attentions at various granularities, mined from a vast volume of web documents and search click graphs.
133, TITLE: Reference Language based Unsupervised Neural Machine Translation
http://arxiv.org/abs/2004.02127
AUTHORS: Zuchao Li ; Hai Zhao ; Rui Wang ; Masao Utiyama ; Eiichiro Sumita
HIGHLIGHT: Experimental results show that our methods improve the quality of UNMT over that of a strong baseline in terms of only one auxiliary language, demonstrating the usefulness of the proposed reference language based UNMT with a good start.
134, TITLE: Unsupervised Domain Clusters in Pretrained Language Models
http://arxiv.org/abs/2004.02105
AUTHORS: Roee Aharoni ; Yoav Goldberg
COMMENTS: Accepted as a long paper in ACL 2020
HIGHLIGHT: We harness this property and propose domain data selection methods based on such models, which require only a small set of in-domain monolingual data.
135, TITLE: Machine Translation Pre-training for Data-to-Text Generation -- A Case Study in Czech
http://arxiv.org/abs/2004.02077
AUTHORS: Mihir Kale ; Scott Roy
HIGHLIGHT: In this paper, we study the effectiveness of machine translation based pre-training for data-to-text generation in non-English languages.
136, TITLE: A Resource for Studying Chatino Verbal Morphology
http://arxiv.org/abs/2004.02083
AUTHORS: Hilaria Cruz ; Gregory Stump ; Antonios Anastasopoulos
COMMENTS: accepted at LREC 2020
HIGHLIGHT: We present the first resource focusing on the verbal inflectional morphology of San Juan Quiahije Chatino, a tonal mesoamerican language spoken in Mexico.
137, TITLE: COVID-CAPS: A Capsule Network-based Framework for Identification of COVID-19 cases from X-ray Images
http://arxiv.org/abs/2004.02696
AUTHORS: Parnian Afshar ; Shahin Heidarian ; Farnoosh Naderkhani ; Anastasia Oikonomou ; Konstantinos N. Plataniotis ; Arash Mohammadi
HIGHLIGHT: This paper presents an alternative modeling framework based on Capsule Networks, referred to as the COVID-CAPS, being capable of handling small datasets, which is of significant importance due to sudden and rapid emergence of COVID-19.
138, TITLE: Network Adjustment: Channel Search Guided by FLOPs Utilization Ratio
http://arxiv.org/abs/2004.02767
AUTHORS: Zhengsu Chen ; Jianwei Niu ; Lingxi Xie ; Xuefeng Liu ; Longhui Wei ; Qi Tian
HIGHLIGHT: This paper presents a new framework named network adjustment, which considers network accuracy as a function of FLOPs, so that under each network configuration, one can estimate the FLOPs utilization ratio (FUR) for each layer and use it to determine whether to increase or decrease the number of channels on the layer.
139, TITLE: SSN: Shape Signature Networks for Multi-class Object Detection from Point Clouds
http://arxiv.org/abs/2004.02774
AUTHORS: Xinge Zhu ; Yuexin Ma ; Tai Wang ; Yan Xu ; Jianping Shi ; Dahua Lin
COMMENTS: Code is available at https://github.com/xinge008/SSN
HIGHLIGHT: In this paper, we propose a novel 3D shape signature to explore the shape information from point clouds.
140, TITLE: A Morphable Face Albedo Model
http://arxiv.org/abs/2004.02711
AUTHORS: William A. P. Smith ; Alassane Seck ; Hannah Dee ; Bernard Tiddeman ; Joshua Tenenbaum ; Bernhard Egger
COMMENTS: CVPR 2020
HIGHLIGHT: In this paper, we bring together two divergent strands of research: photometric face capture and statistical 3D face appearance modelling.
141, TITLE: Sub-Instruction Aware Vision-and-Language Navigation
http://arxiv.org/abs/2004.02707
AUTHORS: Yicong Hong ; Cristian Rodriguez-Opazo ; Qi Wu ; Stephen Gould
HIGHLIGHT: In this work, we focus on the granularity of the visual and language sequences as well as the trackability of agents through the completion of instruction.
142, TITLE: Reconfigurable Voxels: A New Representation for LiDAR-Based Point Clouds
http://arxiv.org/abs/2004.02724
AUTHORS: Tai Wang ; Xinge Zhu ; Dahua Lin
HIGHLIGHT: To tackle this difficulty, we propose Reconfigurable Voxels, a new approach to constructing representations from 3D point clouds.
143, TITLE: Guiding Monocular Depth Estimation Using Depth-Attention Volume
http://arxiv.org/abs/2004.02760
AUTHORS: Lam Huynh ; Phong Nguyen-Ha ; Jiri Matas ; Esa Rahtu ; Janne Heikkila
HIGHLIGHT: In this paper, we propose guiding depth estimation to favor planar structures that are ubiquitous especially in indoor environments.
144, TITLE: BiSeNet V2: Bilateral Network with Guided Aggregation for Real-time Semantic Segmentation
http://arxiv.org/abs/2004.02147
AUTHORS: Changqian Yu ; Changxin Gao ; Jingbo Wang ; Gang Yu ; Chunhua Shen ; Nong Sang
COMMENTS: 16 pages, 10 figures, 9 tables. Code is available at https://git.io/BiSeNet
HIGHLIGHT: We propose to treat these spatial details and categorical semantics separately to achieve high accuracy and high efficiency for realtime semantic segmentation.
145, TITLE: Comparative Analysis of Multiple Deep CNN Models for Waste Classification
http://arxiv.org/abs/2004.02168
AUTHORS: Dipesh Gyawali ; Alok Regmi ; Aatish Shakya ; Ashish Gautam ; Surendra Shrestha
COMMENTS: 6 pages, 13 figures
HIGHLIGHT: Without the human exercise in segregating those waste products, the study would save the precious time and would introduce the automation in the area of waste management.
146, TITLE: A Discriminator Improves Unconditional Text Generation without Updating the Generato
http://arxiv.org/abs/2004.02135
AUTHORS: Xingyuan Chen ; Ping Cai ; Peng Jin ; Hongjun Wang ; Xingyu Dai ; Jiajun Chen
HIGHLIGHT: We propose a novel mechanism to improve a text generator with a discriminator, which is trained to estimate the probability that a sample comes from real or generated data.
147, TITLE: Flow2Stereo: Effective Self-Supervised Learning of Optical Flow and Stereo Matching
http://arxiv.org/abs/2004.02138
AUTHORS: Pengpeng Liu ; Irwin King ; Michael Lyu ; Jia Xu
COMMENTS: Published at the Conference on Computer Vision and Pattern Recognition (CVPR 2020)
HIGHLIGHT: In this paper, we propose a unified method to jointly learn optical flow and stereo matching.
148, TITLE: Adversarial-Prediction Guided Multi-task Adaptation for Semantic Segmentation of Electron Microscopy Images
http://arxiv.org/abs/2004.02134
AUTHORS: Jiajin Yi ; Zhimin Yuan ; Jialin Peng
HIGHLIGHT: In this study, we introduce an adversarial-prediction guided multi-task network to learn the adaptation of a well-trained model for use on a novel unlabeled target domain.
149, TITLE: DSA: More Efficient Budgeted Pruning via Differentiable Sparsity Allocation
http://arxiv.org/abs/2004.02164
AUTHORS: Xuefei Ning ; Tianchen Zhao ; Wenshuo Li ; Peng Lei ; Yu Wang ; Huazhong Yang
HIGHLIGHT: In this paper, we propose Differentiable Sparsity Allocation (DSA), an efficient end-to-end budgeted pruning flow.
150, TITLE: #P-completeness of counting update digraphs, cacti, and a series-parallel decomposition method
http://arxiv.org/abs/2004.02129
AUTHORS: Camille Noûs ; Kévin Perrot ; Sylvain Sené ; Lucas Venturini
HIGHLIGHT: We prove that counting the number of equivalence classes, that is a tight upper bound on the synchronism sensitivity of a given network, is #P-complete.
151, TITLE: Using Generative Adversarial Nets on Atari Games for Feature Extraction in Deep Reinforcement Learning
http://arxiv.org/abs/2004.02762
AUTHORS: Ayberk Aydın ; Elif Surer
COMMENTS: in Turkish
HIGHLIGHT: In this study, Proximal Policy Optimization (PPO) algorithm is augmented with Generative Adversarial Networks (GANs) to increase the sample efficiency by enforcing the network to learn efficient representations without depending on sparse and delayed rewards as supervision.
152, TITLE: Adaptive Partial Scanning Transmission Electron Microscopy with Reinforcement Learning
http://arxiv.org/abs/2004.02786
AUTHORS: Jeffrey M. Ede
COMMENTS: 12 pages, 4 figures. Appendix: 8 pages
HIGHLIGHT: We have extended recurrent deterministic policy gradients to train deep LSTMs and differentiable neural computers to adaptively sample scan path segments.
153, TITLE: A Norm Emergence Framework for Normative MAS -- Position Paper
http://arxiv.org/abs/2004.02575
AUTHORS: Andreasa Morris-Martin ; Marina De Vos ; Julian Padget
COMMENTS: 16 pages, 2 figures, pre-print for International Workshop on Coordination, Organizations, Institutions, Norms and Ethics for Governance of Multi-Agent Systems (COINE), co-located with AAMAS 2020
HIGHLIGHT: In this paper, we make the case that, similarly, a norm has emerged in a normative MAS when a percentage of agents adopt the norm.
154, TITLE: Networked Multi-Agent Reinforcement Learning with Emergent Communication
http://arxiv.org/abs/2004.02780
AUTHORS: Shubham Gupta ; Rishi Hazra ; Ambedkar Dukkipati
COMMENTS: An abridged version of this paper has been accepted as a short paper at AAMAS 2020
HIGHLIGHT: In this paper, we formulate and study a MARL problem where cooperative agents are connected to each other via a fixed underlying network.
155, TITLE: Emotional Video to Audio Transformation Using Deep Recurrent Neural Networks and a Neuro-Fuzzy System
http://arxiv.org/abs/2004.02113
AUTHORS: Gwenaelle Cunha Sergio ; Minho Lee
COMMENTS: Published (https://www.hindawi.com/journals/mpe/2020/8478527/)
HIGHLIGHT: In this study, we propose a novel hybrid deep neural network that uses an Adaptive Neuro-Fuzzy Inference System to predict a video's emotion from its visual features and a deep Long Short-Term Memory Recurrent Neural Network to generate its corresponding audio signals with similar emotional inkling.
156, TITLE: Adaptive Explainable Neural Networks (AxNNs)
http://arxiv.org/abs/2004.02353
AUTHORS: Jie Chen ; Joel Vaughan ; Vijayan N. Nair ; Agus Sudjianto
HIGHLIGHT: We develop a new framework called Adaptive Explainable Neural Networks (AxNN) for achieving the dual goals of good predictive performance and model interpretability.
157, TITLE: Review of Artificial Intelligence Techniques in Imaging Data Acquisition, Segmentation and Diagnosis for COVID-19
http://arxiv.org/abs/2004.02731
AUTHORS: Feng Shi ; Jun Wang ; Jun Shi ; Ziyan Wu ; Qian Wang ; Zhenyu Tang ; Kelei He ; Yinghuan Shi ; Dinggang Shen
HIGHLIGHT: In this review paper, we thus cover the entire pipeline of medical imaging and analysis techniques involved with COVID-19, including image acquisition, segmentation, diagnosis, and follow-up.
158, TITLE: Coronavirus Detection and Analysis on Chest CT with Deep Learning
http://arxiv.org/abs/2004.02640
AUTHORS: Ophir Gozes ; Maayan Frid-Adar ; Nimrod Sagie ; Huangqi Zhang ; Wenbin Ji ; Hayit Greenspan
HIGHLIGHT: We present our results on a dataset comprised of 110 confirmed COVID-19 patients from Zhejiang province, China.
159, TITLE: Automatic Right Ventricle Segmentation using Multi-Label Fusion in Cardiac MRI
http://arxiv.org/abs/2004.02317
AUTHORS: Maria A. Zuluaga ; M. Jorge Cardoso ; Sébastien Ourselin
HIGHLIGHT: This paper presents a fully automatic method for the segmentation of the RV in cardiac magnetic resonance images (MRI).
160, TITLE: Lossless Image Compression through Super-Resolution
http://arxiv.org/abs/2004.02872
AUTHORS: Sheng Cao ; Chao-Yuan Wu ; Philipp Krähenbühl
COMMENTS: Tech report
HIGHLIGHT: We introduce a simple and efficient lossless image compression algorithm.
161, TITLE: Domain-based Latent Personal Analysis and its use for impersonation detection in social media
http://arxiv.org/abs/2004.02346
AUTHORS: Osnat Mokryn ; Hagit Ben-Shoshan
COMMENTS: Submitted to Journal
HIGHLIGHT: We devise a method, termed Latent Personal Analysis (LPA), for finding such domain-based personal signatures.
162, TITLE: BERT in Negotiations: Early Prediction of Buyer-Seller Negotiation Outcomes
http://arxiv.org/abs/2004.02363
AUTHORS: Kushal Chawla ; Gale Lucas ; Jonathan Gratch ; Jonathan May
HIGHLIGHT: Towards this end, we aim to understand the role of natural language in negotiations from a data-driven perspective by attempting to predict a negotiation's outcome, well before the negotiation is complete.
163, TITLE: Learning to Recover Reasoning Chains for Multi-Hop Question Answering via Cooperative Games
http://arxiv.org/abs/2004.02393
AUTHORS: Yufei Feng ; Mo Yu ; Wenhan Xiong ; Xiaoxiao Guo ; Junjie Huang ; Shiyu Chang ; Murray Campbell ; Michael Greenspan ; Xiaodan Zhu
HIGHLIGHT: We propose a cooperative game approach to deal with this problem, in which how the evidence passages are selected and how the selected passages are connected are handled by two models that cooperate to select the most confident chains from a large set of candidates (from distant supervision). We propose the new problem of learning to recover reasoning chains from weakly supervised signals, i.e., the question-answer pairs. For evaluation, we created benchmarks based on two multi-hop QA datasets, HotpotQA and MedHop; and hand-labeled reasoning chains for the latter.
164, TITLE: Neural Machine Translation with Imbalanced Classes
http://arxiv.org/abs/2004.02334
AUTHORS: Thamme Gowda ; Jonathan May
HIGHLIGHT: We cast neural machine translation (NMT) as a classification task in an autoregressive setting and analyze the limitations of both classification and autoregression components.
165, TITLE: Feature Super-Resolution Based Facial Expression Recognition for Multi-scale Low-Resolution Faces
http://arxiv.org/abs/2004.02234
AUTHORS: Wei Jing ; Feng Tian ; Jizhong Zhang ; Kuo-Ming Chao ; Zhenxin Hong ; Xu Liu
COMMENTS: 13 pages, 5 figures
HIGHLIGHT: In this work, inspired by feature super-resolution methods for object detection, we proposed a novel generative adversary network-based feature level super-resolution method for robust facial expression recognition(FSR-FER).
166, TITLE: EfficientPS: Efficient Panoptic Segmentation
http://arxiv.org/abs/2004.02307
AUTHORS: Rohit Mohan ; Abhinav Valada
COMMENTS: A live demo is available at http://panoptic.cs.uni-freiburg.de and the code as well as the models are available at https://github.com/DeepSceneSeg/EfficientPS
HIGHLIGHT: In this paper, we introduce the Efficient Panoptic Segmentation (EfficientPS) architecture that consists of a shared backbone which efficiently encodes and fuses semantically rich multi-scale features. Additionally, we introduce the KITTI panoptic segmentation dataset that contains panoptic annotations for the popularly challenging KITTI benchmark.
167, TITLE: Steering Self-Supervised Feature Learning Beyond Local Pixel Statistics
http://arxiv.org/abs/2004.02331
AUTHORS: Simon Jenni ; Hailin Jin ; Paolo Favaro
COMMENTS: CVPR 2020 (oral)
HIGHLIGHT: We introduce a novel principle for self-supervised feature learning based on the discrimination of specific transformations of an image.
168, TITLE: Hyper-spectral NIR and MIR data and optimal wavebands for detecting of apple trees diseases
http://arxiv.org/abs/2004.02325
AUTHORS: Dmitrii Shadrin ; Mariia Pukalchik ; Anastasia Uryasheva ; Nikita Rodichenko ; Dzmitry Tsetserukou
COMMENTS: Paper presented at the ICLR 2020 Workshop on Computer Vision for Agriculture (CV4A)
HIGHLIGHT: This research proposes a modern approach for analysing spectral data in Near-Infrared and Mid-Infrared ranges of the apple trees diseases on different stages.
169, TITLE: Structural-analogy from a Single Image Pair
http://arxiv.org/abs/2004.02222
AUTHORS: Sagie Benaim ; Ron Mokady ; Amit Bermano ; Daniel Cohen-Or ; Lior Wolf
HIGHLIGHT: In this paper, we explore the capabilities of neural networks to understand image structure given only a single pair of images, A and B.
170, TITLE: Group Based Deep Shared Feature Learning for Fine-grained Image Classification
http://arxiv.org/abs/2004.01817
AUTHORS: Xuelu Li ; Vishal Monga
HIGHLIGHT: Given that images from distinct classes in fine-grained classification share significant features of interest, we present a new deep network architecture that explicitly models shared features and removes their effect to achieve enhanced classification results.
171, TITLE: Deblurring by Realistic Blurring
http://arxiv.org/abs/2004.01860
AUTHORS: Kaihao Zhang ; Wenhan Luo ; Yiran Zhong ; Lin Ma ; Bjorn Stenger ; Wei Liu ; Hongdong Li
HIGHLIGHT: To address this problem, we propose a new method which combines two GAN models, i.e., a learning-to-Blur GAN (BGAN) and learning-to-DeBlur GAN (DBGAN), in order to learn a better model for image deblurring by primarily learning how to blur images. As an additional contribution, this paper also introduces a Real-World Blurred Image (RWBI) dataset including diverse blurry images.
172, TITLE: Pixel Consensus Voting for Panoptic Segmentation
http://arxiv.org/abs/2004.01849
AUTHORS: Haochen Wang ; Ruotian Luo ; Michael Maire ; Greg Shakhnarovich
COMMENTS: CVPR 2020
HIGHLIGHT: We implement vote aggregation and backprojection using native operators of a convolutional neural network.
173, TITLE: A Simple Baseline for Multi-Object Tracking
http://arxiv.org/abs/2004.01888
AUTHORS: Yifu Zhan ; Chunyu Wang ; Xinggang Wang ; Wenjun Zeng ; Wenyu Liu
HIGHLIGHT: In this work, we study the essential reasons behind the failure, and accordingly present a simple baseline to addresses the problems.
174, TITLE: Multi-Variate Temporal GAN for Large Scale Video Generation
http://arxiv.org/abs/2004.01823
AUTHORS: Andres Muñoz ; Mohammadreza Zolfaghari ; Max Argus ; Thomas Brox
COMMENTS: 13 pages, 13 figures
HIGHLIGHT: In this paper, we present a network architecture for video generation that models spatio-temporal consistency without resorting to costly 3D architectures.
175, TITLE: Feature Quantization Improves GAN Training
http://arxiv.org/abs/2004.02088
AUTHORS: Yang Zhao ; Chunyuan Li ; Ping Yu ; Jianfeng Gao ; Changyou Chen
COMMENTS: The first two authors contributed equally to this manuscript. Code: https://github.com/YangNaruto/FQ-GAN
HIGHLIGHT: In this work, we propose Feature Quantization (FQ) for the discriminator, to embed both true and fake data samples into a shared discrete space.
176, TITLE: Discriminator Contrastive Divergence: Semi-Amortized Generative Modeling by Exploring Energy of the Discriminator
http://arxiv.org/abs/2004.01704
AUTHORS: Yuxuan Song ; Qiwei Ye ; Minkai Xu ; Tie-Yan Liu
COMMENTS: 17 pages, 9 figures, pre-submmited to cvpr2019
HIGHLIGHT: In this paper, we introduce the Discriminator Contrastive Divergence, which is well motivated by the property of WGAN's discriminator and the relationship between WGAN and energy-based model.
177, TITLE: Locality Sensitive Hashing-based Sequence Alignment Using Deep Bidirectional LSTM Models
http://arxiv.org/abs/2004.02094
AUTHORS: Neda Tavakoli
HIGHLIGHT: This paper proposes to use deep bidirectional LSTM for sequence modeling as an approach to perform locality-sensitive hashing (LSH)-based sequence alignment.
178, TITLE: On Tractable Representations of Binary Neural Networks
http://arxiv.org/abs/2004.02082
AUTHORS: Weijia Shi ; Andy Shih ; Adnan Darwiche ; Arthur Choi
HIGHLIGHT: We consider the compilation of a binary neural network's decision function into tractable representations such as Ordered Binary Decision Diagrams (OBDDs) and Sentential Decision Diagrams (SDDs).
179, TITLE: Improved Code Summarization via a Graph Neural Network
http://arxiv.org/abs/2004.02843
AUTHORS: Alexander LeClair ; Sakib Haque ; Linfgei Wu ; Collin McMillan
COMMENTS: 10 pages
HIGHLIGHT: Therefore, in this paper, we present an approach that uses a graph-based neural architecture that better matches the default structure of the AST to generate these summaries.
180, TITLE: Aggressive, Repetitive, Intentional, Visible, and Imbalanced: Refining Representations for Cyberbullying Classification
http://arxiv.org/abs/2004.01820
AUTHORS: Caleb Ziems ; Ymir Vigfusson ; Fred Morstatter
COMMENTS: 12 pages, 5 figures, 22 tables, Accepted to the 14th International AAAI Conference on Web and Social Media, ICWSM'20
HIGHLIGHT: In this study, we address the need for reliable data using an original annotation framework.
181, TITLE: Privacy Shadow: Measuring Node Predictability and Privacy Over Time
http://arxiv.org/abs/2004.02047
AUTHORS: Ivan Brugere ; Tanya y. Berger-Wolf
HIGHLIGHT: We propose the privacy shadow for measuring how long a user remains predictive from an arbitrary time within the network.