-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path2020.04.17.txt
1749 lines (899 loc) · 56.5 KB
/
2020.04.17.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: Neuromorphic Event-Based Slip Detection and suppression in Robotic Grasping and Manipulation
http://arxiv.org/abs/2004.07386
AUTHORS: Rajkumar Muthusamy ; Xiaoqian Huang ; Yahya Zweiri ; Lakmal Seneviratne ; Dongming Gan
COMMENTS: 18 pages, 14 figures
HIGHLIGHT: In this paper, a novel dynamic vision-based finger system for slip detection and suppression is proposed.
2, TITLE: Exploiting Categorical Structure Using Tree-Based Methods
http://arxiv.org/abs/2004.07383
AUTHORS: Brian Lucena
COMMENTS: To appear in AISTATS 2020 Proceedings
HIGHLIGHT: We develop a mathematical framework for representing the
structure of categorical variables and show how to generalize decision
trees to make use of this structure.
3, TITLE: Neuromorphic Eye-in-Hand Visual Servoing
http://arxiv.org/abs/2004.07398
AUTHORS: Rajkumar Muthusamy ; Abdulla Ayyad ; Mohamad Halwani ; Yahya Zweiri ; Dongming Gan ; Lakmal Seneviratne
COMMENTS: 8 pages, 10 figures
HIGHLIGHT: In this paper, we present a visual servoing method using
an event camera and a switching control strategy to explore, reach and
grasp to achieve a manipulation task.
4, TITLE: Representation Learning of Histopathology Images using Graph Neural Networks
http://arxiv.org/abs/2004.07399
AUTHORS: Mohammed Adnan ; Shivam Kalra ; Hamid R. Tizhoosh
COMMENTS: Published in CVMI at CVPR Workshops, 2020
HIGHLIGHT: We propose a two-stage framework for WSI representation learning.
5, TITLE: Joint Supervised and Self-Supervised Learning for 3D Real-World Challenges
http://arxiv.org/abs/2004.07392
AUTHORS: Antonio Alliegro ; Davide Boscaini ; Tatiana Tommasi
HIGHLIGHT: We propose to enrich standard feature representations by
leveraging self-supervision through a multi-task model that can solve a
3D puzzle while learning the main task of shape classification or part
segmentation.
6, TITLE: Trakhtenbrot's Theorem in Coq, A Constructive Approach to Finite Model Theory
http://arxiv.org/abs/2004.07390
AUTHORS: Dominik Kirst ; Dominique Larchey-Wendling
HIGHLIGHT: We study finite first-order satisfiability (FSAT) in the constructive setting of dependent type theory.
7, TITLE: Generalized Shortest Path-based Superpixels for Accurate Segmentation of Spherical Images
http://arxiv.org/abs/2004.07394
AUTHORS: Rémi Giraud ; Rodrigo Borba Pinheiro ; Yannick Berthoumieu
HIGHLIGHT: In this paper, we introduce a new superpixel method for
spherical images called SphSPS (for Spherical Shortest Path-based
Superpixels).
8, TITLE: Where can I drive? Deep Ego-Corridor Estimation for Robust Automated Driving
http://arxiv.org/abs/2004.07639
AUTHORS: Thomas Michalke ; Colin Wüst ; Di Feng ; Claudius Gläser ; Maxim Dolgov ; Fabian Timm
COMMENTS: 6 pages, preprint
HIGHLIGHT: These deep learning approaches typically propose a
classification of the free-space using for example semantic
segmentation.
9, TITLE: Towards Instance-Level Parser Selection for Cross-Lingual Transfer of Dependency Parsers
http://arxiv.org/abs/2004.07642
AUTHORS: Robert Litschko ; Ivan Vulić ; Željko Agić ; Goran Glavaš
HIGHLIGHT: In this work, we propose and argue for a novel
cross-lingual transfer paradigm: instance-level parser selection (ILPS),
and present a proof-of-concept study focused on instance-level
selection in the framework of delexicalized parser transfer.
10, TITLE: Top-Down Networks: A coarse-to-fine reimagination of CNNs
http://arxiv.org/abs/2004.07629
AUTHORS: Ioannis Lelekas ; Nergis Tomen ; Silvia L. Pintea ; Jan C. van Gemert
COMMENTS: CVPR Workshop Deep Vision 2020
HIGHLIGHT: In this paper we reverse the feature extraction part of
standard bottom-up architectures and turn them upside-down: We propose
top-down networks.
11, TITLE: A Methodology for Creating Question Answering Corpora Using Inverse Data Annotation
http://arxiv.org/abs/2004.07633
AUTHORS: Jan Deriu ; Katsiaryna Mlynchyk ; Philippe Schläpfer ;
Alvaro Rodrigo ; Dirk von Grünigen ; Nicolas Kaiser ; Kurt Stockinger ;
Eneko Agirre ; Mark Cieliebak
HIGHLIGHT: In this paper, we introduce a novel methodology to
efficiently construct a corpus for question answering over structured
data.
12, TITLE: Neural Data-to-Text Generation with Dynamic Content Planning
http://arxiv.org/abs/2004.07426
AUTHORS: Kai Chen ; Fayuan Li ; Baotian Hu ; Weihua Peng ; Qingcai Chen ; Yajuan Lv ; Yong Zhu ; Hong Yu
COMMENTS: 25 pages, 1 figure and 6 tables
HIGHLIGHT: To alleviate these problems, we propose a Neural
data-to-text generation model with Dynamic content Planning, named NDP
for abbreviation.
13, TITLE: Null It Out: Guarding Protected Attributes by Iterative Nullspace Projection
http://arxiv.org/abs/2004.07667
AUTHORS: Shauli Ravfogel ; Yanai Elazar ; Hila Gonen ; Michael Twiton ; Yoav Goldberg
COMMENTS: Accepted as a long paper in ACL 2020
HIGHLIGHT: We present Iterative Null-space Projection (INLP), a
novel method for removing information from neural representations.
14, TITLE: Radiologist-Level COVID-19 Detection Using CT Scans with Detail-Oriented Capsule Networks
http://arxiv.org/abs/2004.07407
AUTHORS: Aryan Mobiny ; Pietro Antonio Cicalese ; Samira Zare ;
Pengyu Yuan ; Mohammadsajad Abavisani ; Carol C. Wu ; Jitesh Ahuja ;
Patricia M. de Groot ; Hien Van Nguyen
HIGHLIGHT: Motivated by this challenge, our paper proposes a novel
learning architecture, called Detail-Oriented Capsule Networks (DECAPS),
for the automatic diagnosis of COVID-19 from Computed Tomography (CT)
scans.
15, TITLE: Old is $\mathbf{\mathcal{G}^{old}}$: Redefining the Adversarially Learned One-Class Classifier Training Paradigm
http://arxiv.org/abs/2004.07657
AUTHORS: Muhammad Zaigham Zaheer ; Jin-ha Lee ; Marcella Astrid ; Seung-Ik Lee
COMMENTS: Accepted at CVPR2020
HIGHLIGHT: In this \bluetwo{study}, we propose a framework that
effectively generates stable results across a wide range of training
steps and allows us to use both \blue{the} generator and the
discriminator of an adversarial model for efficient and robust anomaly
detection.
16, TITLE: Combinatorial 3D Shape Generation via Sequential Assembly
http://arxiv.org/abs/2004.07414
AUTHORS: Jungtaek Kim ; Hyunsoo Chung ; Minsu Cho ; Jaesik Park
COMMENTS: 22 pages, 22 figures, 1 table. All images were resized to satisfy a size limit
HIGHLIGHT: In this work, we propose a new 3D shape generation
algorithm that aims to create such a combinatorial configuration from a
set of volumetric primitives. We also introduce a new dataset for
combinatorial 3D shape generation.
17, TITLE: Joint Semantic Segmentation and Boundary Detection using Iterative Pyramid Contexts
http://arxiv.org/abs/2004.07684
AUTHORS: Mingmin Zhen ; Jinglu Wang ; Lei Zhou ; Shiwei Li ; Tianwei Shen ; Jiaxiang Shang ; Tian Fang ; Quan Long
HIGHLIGHT: In this paper, we present a joint multi-task learning
framework for semantic segmentation and boundary detection.
18, TITLE: Contextual Two-Stage U-Nets for Robust Pulmonary Lobe Segmentation in CT Scans of COVID-19 and COPD Patients
http://arxiv.org/abs/2004.07443
AUTHORS: Weiyi Xie ; Colin Jacobs ; Jean-Paul Charbonnier ; Bram van Ginneken
HIGHLIGHT: In this paper, we propose a contextual two-stage U-net
(CTSU-Net) that leverages global context by introducing a first stage in
which the receptive field encompasses the entire scan and by using a
novel non-local neural network module.
19, TITLE: Resolving the Optimal Metric Distortion Conjecture
http://arxiv.org/abs/2004.07447
AUTHORS: Vasilis Gkatzelis ; Daniel Halpern ; Nisarg Shah
HIGHLIGHT: We propose algorithms that choose a point in C using
only these rankings as input and we provide bounds on their distortion
(worst-case approximation ratio).
20, TITLE: On the use of Benford's law to detect GAN-generated images
http://arxiv.org/abs/2004.07682
AUTHORS: Nicolò Bonettini ; Paolo Bestagini ; Simone Milani ; Stefano Tubaro
HIGHLIGHT: In this paper, we study the possibility of using
Benford's law to discriminate GAN-generated images from natural
photographs.
21, TITLE: Do sequence-to-sequence VAEs learn global features of sentences?
http://arxiv.org/abs/2004.07683
AUTHORS: Tom Bosc ; Pascal Vincent
HIGHLIGHT: To alleviate this, we propose variants based on bag-of-words assumptions and language model pretraining.
22, TITLE: Video Face Manipulation Detection Through Ensemble of CNNs
http://arxiv.org/abs/2004.07676
AUTHORS: Nicolò Bonettini ; Edoardo Daniele Cannas ; Sara Mandelli ; Luca Bondi ; Paolo Bestagini ; Stefano Tubaro
HIGHLIGHT: In this paper, we tackle the problem of face
manipulation detection in video sequences targeting modern facial
manipulation techniques.
23, TITLE: Non-Autoregressive Machine Translation with Latent Alignments
http://arxiv.org/abs/2004.07437
AUTHORS: Chitwan Saharia ; William Chan ; Saurabh Saxena ; Mohammad Norouzi
HIGHLIGHT: This paper investigates two latent alignment models for
non-autoregressive machine translation, namely CTC and Imputer.
24, TITLE: Measuring Human and Economic Activity from Satellite
Imagery to Support City-Scale Decision-Making during COVID-19 Pandemic
http://arxiv.org/abs/2004.07438
AUTHORS: Rodrigo Minetto ; Mauricio Pamplona Segundo ; Gilbert Rotich ; Sudeep Sarkar
COMMENTS: 12 pages, 9 figures, 2 tables
HIGHLIGHT: In this work, we use a deep learning approach that
combines strategic location sampling and an ensemble of lightweight
convolutional neural networks (CNNs) to recognize specific elements in
satellite images and compute economic indicators based on it,
automatically.
25, TITLE: Generate, Delete and Rewrite: A Three-Stage Framework for Improving Persona Consistency of Dialogue Generation
http://arxiv.org/abs/2004.07672
AUTHORS: Haoyu Song ; Yan Wang ; Wei-Nan Zhang ; Xiaojiang Liu ; Ting Liu
COMMENTS: Accepted by ACL2020 main conference. The Camera-ready version will be updated soon
HIGHLIGHT: In this work, we introduce a three-stage framework that
employs a generate-delete-rewrite mechanism to delete inconsistent words
from a generated response prototype and further rewrite it to a
personality-consistent one.
26, TITLE: PICK: Processing Key Information Extraction from Documents using Improved Graph Learning-Convolutional Networks
http://arxiv.org/abs/2004.07464
AUTHORS: Wenwen Yu ; Ning Lu ; Xianbiao Qi ; Ping Gong ; Rong Xiao
COMMENTS: The first two authors contributed equally to this work. 8 pages, 3 figures, 4 tables
HIGHLIGHT: In this paper, we introduce PICK, a framework that is
effective and robust in handling complex documents layout for KIE by
combining graph learning with graph convolution operation, yielding a
richer semantic representation containing the textual and visual
features and global layout without ambiguity.
27, TITLE: Paraphrase Augmented Task-Oriented Dialog Generation
http://arxiv.org/abs/2004.07462
AUTHORS: Silin Gao ; Yichi Zhang ; Zhijian Ou ; Zhou Yu
COMMENTS: Accepted to ACL 2020, 10 pages, 2 figures
HIGHLIGHT: We propose a paraphrase augmented response generation
(PARG) framework that jointly trains a paraphrase model and a response
generation model to improve the dialog generation performance.
28, TITLE: Single upper limb pose estimation method based on improved stacked hourglass network
http://arxiv.org/abs/2004.07456
AUTHORS: Gang Peng ; Yuezhi Zheng ; Jianfeng Li ; Jin Yang ; Zhonghua Deng
HIGHLIGHT: For use in human-machine cooperative operations, this
paper proposes a single-person upper limb pose estimation method based
on an end-to-end approach for accurate and real-time limb pose
estimation.
29, TITLE: The Right Tool for the Job: Matching Model and Instance Complexities
http://arxiv.org/abs/2004.07453
AUTHORS: Roy Schwartz ; Gabi Stanovsky ; Swabha Swayamdipta ; Jesse Dodge ; Noah A. Smith
COMMENTS: ACL 2020; 12 pages; code available in https://github.com/allenai/sledgehammer
HIGHLIGHT: To better respect a given inference budget, we propose a
modification to contextual representation fine-tuning which, during
inference, allows for an early (and fast) "exit" from neural network
calculations for simple instances, and late (and accurate) exit for hard
instances.
30, TITLE: In Search of Life: Learning from Synthetic Data to Detect Vital Signs in Videos
http://arxiv.org/abs/2004.07691
AUTHORS: Florin Condrea ; Victor-Andrei Ivan ; Marius Leordeanu
HIGHLIGHT: In this paper we address this limitation through a novel
deep learning approach, in which a recurrent deep neural network is
trained to detect vital signs in the infrared thermal domain from purely
synthetic data.
31, TITLE: A Game Theoretic Framework for Model Based Reinforcement Learning
http://arxiv.org/abs/2004.07804
AUTHORS: Aravind Rajeswaran ; Igor Mordatch ; Vikash Kumar
COMMENTS: Project webpage: https://sites.google.com/view/mbrl-game
HIGHLIGHT: To help expose the practical challenges in MBRL and
simplify algorithm design from the lens of abstraction, we develop a new
framework that casts MBRL as a game between: (1) a policy player, which
attempts to maximize rewards under the learned model; (2) a model
player, which attempts to fit the real-world data collected by the
policy player.
32, TITLE: Geometry-Aware Gradient Algorithms for Neural Architecture Search
http://arxiv.org/abs/2004.07802
AUTHORS: Liam Li ; Mikhail Khodak ; Maria-Florina Balcan ; Ameet Talwalkar
COMMENTS: 31 pages, 5 figures
HIGHLIGHT: Invoking the theory of mirror descent, we present a
unifying framework for designing and analyzing gradient-based NAS
methods that exploit the underlying problem structure to quickly find
high-performance architectures.
33, TITLE: Suicidal Ideation and Mental Disorder Detection with Attentive Relation Networks
http://arxiv.org/abs/2004.07601
AUTHORS: Shaoxiong Ji ; Xue Li ; Zi Huang ; Erik Cambria
HIGHLIGHT: In this paper, we enhance text representation with
lexicon-based sentiment scores and latent topics, and propose to use
relation networks for detecting suicidal ideation and mental disorders
with related risk indicators.
34, TITLE: Unsupervised Deformable Medical Image Registration via Pyramidal Residual Deformation Fields Estimation
http://arxiv.org/abs/2004.07624
AUTHORS: Yujia Zhou ; Shumao Pang ; Jun Cheng ; Yuhang Sun ; Yi
Wu ; Lei Zhao ; Yaqin Liu ; Zhentai Lu ; Wei Yang ; Qianjin Feng
HIGHLIGHT: In this study, we constructed pyramidal feature sets on
moving and fixed images and used the warped moving and fixed features to
estimate their "residual" deformation field at each scale, called the
Pyramidal Residual Deformation Field Estimation module (PRDFE-Module).
35, TITLE: Distributed Evolution of Deep Autoencoders
http://arxiv.org/abs/2004.07607
AUTHORS: Jeff Hajewski ; Suely Oliveira ; Xiaoyu Xing
HIGHLIGHT: In this work we present a distributed system that uses
an efficient evolutionary algorithm to design a modular autoencoder.
36, TITLE: A Local Descriptor with Physiological Characteristic for Finger Vein Recognition
http://arxiv.org/abs/2004.07489
AUTHORS: Liping Zhang ; Weijun Li ; Xin Ning
HIGHLIGHT: In this work, we propose a finger vein-specific local
feature descriptors based physiological characteristic of finger vein
patterns, i.e., histogram of oriented physiological Gabor responses
(HOPGR), for finger vein recognition.
37, TITLE: Hercules: An Autonomous Logistic Vehicle for Contact-less Goods Transportation During the COVID-19 Outbreak
http://arxiv.org/abs/2004.07480
AUTHORS: Tianyu Liu ; Qinghai Liao ; Lu Gan ; Fulong Ma ; Jie
Cheng ; Xupeng Xie ; Zhe Wang ; Yingbing Chen ; Yilong Zhu ; Shuyang
Zhang ; Zhengyong Chen ; Yang Liu ; Yang Yu ; Zitong Guo ; Guang Li ;
Peidong Yuan ; Dong Han ; Yuying Chen ; Haoyang Ye ; Jianhao Jiao ; Peng
Yun ; Zhenhua Xu ; Hengli Wang ; Huaiyang Huang ; Sukai Wang ; Peide
Cai ; Yuxiang Sun ; Yandong Liu ; Lujia Wang ; Ming Liu
HIGHLIGHT: This article presents Hercules, an autonomous logistic
vehicle used for contact-less goods transportation during the outbreak
of COVID-19.
38, TITLE: Asynchronous Interaction Aggregation for Action Detection
http://arxiv.org/abs/2004.07485
AUTHORS: Jiajun Tang ; Jin Xia ; Xinzhi Mu ; Bo Pang ; Cewu Lu
HIGHLIGHT: We propose the Asynchronous Interaction Aggregation
network (AIA) that leverages different interactions to boost action
detection.
39, TITLE: ArTIST: Autoregressive Trajectory Inpainting and Scoring for Tracking
http://arxiv.org/abs/2004.07482
AUTHORS: Fatemeh Saleh ; Sadegh Aliakbarian ; Mathieu Salzmann ; Stephen Gould
HIGHLIGHT: In this paper, we introduce a probabilistic
autoregressive generative model to score tracklet proposals by directly
measuring the likelihood that a tracklet represents natural motion.
40, TITLE: Multi-Objective Evolutionary approach for the
Performance Improvement of Learners using Ensembling Feature selection
and Discretization Technique on Medical data
http://arxiv.org/abs/2004.07478
AUTHORS: Deepak Singh ; Dilip Singh Sisodia ; Pradeep Singh
HIGHLIGHT: This paper proposes a novel multi-objective based
dimensionality reduction framework, which incorporates both
discretization and feature reduction as an ensemble model for performing
feature selection and discretization.
41, TITLE: Destination Prediction Based on Partial Trajectory Data
http://arxiv.org/abs/2004.07473
AUTHORS: Patrick Ebel ; Ibrahim Emre Göl ; Christoph Lingenfelder ; Andreas Vogelsang
COMMENTS: 2020 IEEE Intelligent Vehicles Symposium
HIGHLIGHT: To evaluate the method, we compare multiple neural
architectures and present the experimental results of the destination
prediction.
42, TITLE: SQE: a Self Quality Evaluation Metric for Parameters Optimization in Multi-Object Tracking
http://arxiv.org/abs/2004.07472
AUTHORS: Yanru Huang ; Feiyu Zhu ; Zheni Zeng ; Xi Qiu ; Yuan Shen ; Jianan Wu
HIGHLIGHT: We present a novel self quality evaluation metric SQE
for parameters optimization in the challenging yet critical multi-object
tracking task.
43, TITLE: Learning Furniture Compatibility with Graph Neural Networks
http://arxiv.org/abs/2004.07268
AUTHORS: Luisa F. Polania ; Mauricio Flores ; Yiran Li ; Matthew Nokleby
COMMENTS: Accepted for publication at CVPR Workshops
HIGHLIGHT: We propose a graph neural network (GNN) approach to the
problem of predicting the stylistic compatibility of a set of furniture
items from images. We further introduce a new dataset, called the Target
Furniture Collections dataset, which contains over 6000 furniture items
that have been hand-curated by stylists to make up 1632 compatible
sets.
44, TITLE: Learning Structured Embeddings of Knowledge Graphs with Adversarial Learning Framework
http://arxiv.org/abs/2004.07265
AUTHORS: Jiehang Zeng ; Lu Liu ; Xiaoqing Zheng
COMMENTS: 7 pages, 1 figures
HIGHLIGHT: We present a learning method using generative
adversarial architecture designed to embed the entities and relations of
the knowledge graphs into a continuous vector space.
45, TITLE: LEAN-LIFE: A Label-Efficient Annotation Framework Towards Learning from Explanation
http://arxiv.org/abs/2004.07499
AUTHORS: Dong-Ho Lee ; Rahul Khanna ; Bill Yuchen Lin ; Jamin
Chen ; Seyeon Lee ; Qinyuan Ye ; Elizabeth Boschee ; Leonardo Neves ;
Xiang Ren
COMMENTS: Accepted to the ACL 2020 (demo). The first two authors contributed equally. Project page: http://inklab.usc.edu/leanlife/
HIGHLIGHT: On three popular NLP tasks (named entity recognition,
relation extraction, sentiment analysis), we find that using this
enhanced supervision allows our models to surpass competitive baseline
F1 scores by more than 5-10 percentage points, while using 2X times
fewer labeled instances.
46, TITLE: Steiner Trees for Hereditary Graph Classes: a Treewidth Perspective
http://arxiv.org/abs/2004.07492
AUTHORS: Hans Bodlaender ; Nick Brettell ; Matthew Johnson ; Giacomo Paesani ; Daniel Paulusma ; Erik Jan van Leeuwen
HIGHLIGHT: We consider the classical problems (Edge) Steiner Tree
and Vertex Steiner Tree after restricting the input to some class of
graphs characterized by a small set of forbidden induced subgraphs.
47, TITLE: TriggerNER: Learning with Entity Triggers as Explanations for Named Entity Recognition
http://arxiv.org/abs/2004.07493
AUTHORS: Bill Yuchen Lin ; Dong-Ho Lee ; Ming Shen ; Ryan Moreno ; Xiao Huang ; Prashant Shiralkar ; Xiang Ren
COMMENTS: Accepted to the ACL 2020. The first two answers contributed equally. Code and data: https://github.com/INK-USC/TriggerNER
HIGHLIGHT: In this paper, we introduce "entity triggers", an
effective proxy of human explanations for facilitating label-efficient
learning of NER models.
48, TITLE: Automatic Generation of Algorithms for Black-Box Robust Optimisation Problems
http://arxiv.org/abs/2004.07294
AUTHORS: Martin Hughes ; Marc Goerigk ; Trivikram Dokka
HIGHLIGHT: We develop algorithms capable of tackling robust
black-box optimisation problems, where the number of model runs is
limited.
49, TITLE: Deep Generation of Coq Lemma Names Using Elaborated Terms
http://arxiv.org/abs/2004.07761
AUTHORS: Pengyu Nie ; Karl Palmskog ; Junyi Jessy Li ; Milos Gligoric
COMMENTS: Accepted in IJCAR 2020
HIGHLIGHT: We present novel generation models for learning and suggesting lemma names for Coq projects.
50, TITLE: Continual Learning with Extended Kronecker-factored Approximate Curvature
http://arxiv.org/abs/2004.07507
AUTHORS: Janghyeon Lee ; Hyeong Gwon Hong ; Donggyu Joo ; Junmo Kim
COMMENTS: CVPR 2020
HIGHLIGHT: We propose a quadratic penalty method for continual
learning of neural networks that contain batch normalization (BN)
layers.
51, TITLE: Removing Algebraic Data Types from Constrained Horn Clauses Using Difference Predicates
http://arxiv.org/abs/2004.07749
AUTHORS: Emanuele De Angelis ; Fabio Fioravanti ; Alberto Pettorossi ; Maurizio Proietti
COMMENTS: 10th International Joint Conference on Automated Reasoning (IJCAR 2020). Springer, 2020
HIGHLIGHT: We propose a new technique for transforming CHCs with
ADTs into CHCs where predicates are defined over basic types, such as
integers and booleans, only.
52, TITLE: On Reductions of Hintikka Sets for Higher-Order Logic
http://arxiv.org/abs/2004.07506
AUTHORS: Alexander Steen ; Christoph Benzmüller
COMMENTS: 9 pages
HIGHLIGHT: On Reductions of Hintikka Sets for Higher-Order Logic
53, TITLE: Explainable Image Classification with Evidence Counterfactual
http://arxiv.org/abs/2004.07511
AUTHORS: Tom Vermeire ; David Martens
COMMENTS: 23 pages, 13 figures
HIGHLIGHT: In this paper, SEDC is introduced as a model-agnostic
instance-level explanation method for image classification to obtain
visual counterfactual explanations.
54, TITLE: Local-Global Video-Text Interactions for Temporal Grounding
http://arxiv.org/abs/2004.07514
AUTHORS: Jonghwan Mun ; Minsu Cho ; Bohyung Han
COMMENTS: CVPR 2020; code available in https://github.com/JonghwanMun/LGI4temporalgrounding
HIGHLIGHT: We tackle this problem using a novel regression-based
model that learns to extract a collection of mid-level features for
semantic phrases in a text query, which corresponds to important
semantic entities described in the query (e.g., actors, objects, and
actions), and reflect bi-modal interactions between the linguistic
features of the query and the visual features of the video in multiple
levels.
55, TITLE: Fast Template Matching and Update for Video Object Tracking and Segmentation
http://arxiv.org/abs/2004.07538
AUTHORS: Mingjie Sun ; Jimin Xiao ; Eng Gee Lim ; Bingfeng Zhang ; Yao Zhao
HIGHLIGHT: In this paper, the main task we aim to tackle is the
multi-instance semi-supervised video object segmentation across a
sequence of frames where only the first-frame box-level ground-truth is
provided.
56, TITLE: ESResNet: Environmental Sound Classification Based on Visual Domain Models
http://arxiv.org/abs/2004.07301
AUTHORS: Andrey Guzhov ; Federico Raue ; Jörn Hees ; Andreas Dengel
COMMENTS: 8 pages, 4 figures; submitted to ICPR 2020
HIGHLIGHT: The contribution of this paper is twofold.
57, TITLE: Multi-Object Tracking with Siamese Track-RCNN
http://arxiv.org/abs/2004.07786
AUTHORS: Bing Shuai ; Andrew G. Berneshawi ; Davide Modolo ; Joseph Tighe
HIGHLIGHT: Towards this, we propose Siamese Track-RCNN, a two stage
detect-and-track framework which consists of three functional branches:
(1) the detection branch localizes object instances; (2) the
Siamese-based track branch estimates the object motion and (3) the
object re-identification branch re-activates the previously terminated
tracks when they re-emerge.
58, TITLE: Multimodal and multiview distillation for real-time player detection on a football field
http://arxiv.org/abs/2004.07544
AUTHORS: Anthony Cioppa ; Adrien Deliège ; Noor Ul Huda ; Rikke Gade ; Marc Van Droogenbroeck ; Thomas B. Moeslund
COMMENTS: Accepted for the CVSports workshop of CVPR 2020 ; 8 pages + references
HIGHLIGHT: In this work, we train a network in a knowledge
distillation approach in which the student and the teacher have
different modalities and a different view of the same scene.
59, TITLE: RGBD-Dog: Predicting Canine Pose from RGBD Sensors
http://arxiv.org/abs/2004.07788
AUTHORS: Sinead Kearney ; Wenbin Li ; Martin Parsons ; Kwang In Kim ; Darren Cosker
COMMENTS: 18 pages, 16 figures, to be published in CVPR 2020
HIGHLIGHT: In our work, we focus on the problem of 3D canine pose
estimation from RGBD images, recording a diverse range of dog breeds
with several Microsoft Kinect v2s, simultaneously obtaining the 3D
ground truth skeleton via a motion capture system. We generate a dataset
of synthetic RGBD images from this data.
60, TITLE: Shortcut Learning in Deep Neural Networks
http://arxiv.org/abs/2004.07780
AUTHORS: Robert Geirhos ; Jörn-Henrik Jacobsen ; Claudio
Michaelis ; Richard Zemel ; Wieland Brendel ; Matthias Bethge ; Felix A.
Wichmann
COMMENTS: perspective article
HIGHLIGHT: In this perspective we seek to distil how many of deep
learning's problem can be seen as different symptoms of the same
underlying problem: shortcut learning. Based on these observations, we
develop a set of recommendations for model interpretation and
benchmarking, highlighting recent advances in machine learning to
improve robustness and transferability from the lab to real-world
applications.
61, TITLE: SCOUT: Self-aware Discriminant Counterfactual Explanations
http://arxiv.org/abs/2004.07769
AUTHORS: Pei Wang ; Nuno Vasconcelos
COMMENTS: Accepted to CVPR2020
HIGHLIGHT: SCOUT: Self-aware Discriminant Counterfactual Explanations
62, TITLE: DeepFakes Evolution: Analysis of Facial Regions and Fake Detection Performance
http://arxiv.org/abs/2004.07532
AUTHORS: Ruben Tolosana ; Sergio Romero-Tapiador ; Julian Fierrez ; Ruben Vera-Rodriguez
HIGHLIGHT: This study provides an exhaustive analysis of both 1st
and 2nd DeepFake generations in terms of facial regions and fake
detection performance.
63, TITLE: Continual Reinforcement Learning with Multi-Timescale Replay
http://arxiv.org/abs/2004.07530
AUTHORS: Christos Kaplanis ; Claudia Clopath ; Murray Shanahan
HIGHLIGHT: In this paper, we propose a multi-timescale replay (MTR)
buffer for improving continual learning in RL agents faced with
environments that are changing continuously over time at timescales that
are unknown to the agent.
64, TITLE: Kvistur 2.0: a BiLSTM Compound Splitter for Icelandic
http://arxiv.org/abs/2004.07776
AUTHORS: Jón Friðrik Daðason ; David Erik Mollberg ; Hrafn Loftsson ; Kristín Bjarnadóttir
COMMENTS: Accepted at LREC 2020
HIGHLIGHT: In this paper, we present a character-based BiLSTM model
for splitting Icelandic compound words, and show how varying amounts of
training data affects the performance of the model.
65, TITLE: Gaze-Net: Appearance-Based Gaze Estimation using Capsule Networks
http://arxiv.org/abs/2004.07777
AUTHORS: Bhanuka Mahanama ; Yasith Jayawardana ; Sampath Jayarathna
HIGHLIGHT: In this paper, we propose Gaze-Net: A capsule network
capable of decoding, representing, and estimating gaze information from
ocular region images.
66, TITLE: The Impact of Heterogeneity and Geometry on the Proof Complexity of Random Satisfiability
http://arxiv.org/abs/2004.07319
AUTHORS: Thomas Bläsius ; Tobias Friedrich ; Andreas Göbel ; Jordi Levy ; Ralf Rothenberger
COMMENTS: 50 pages, 2 figures
HIGHLIGHT: To understand the impact of these two properties on SAT,
we study the proof complexity of random k-SAT models that allow to
control heterogeneity and locality.
67, TITLE: Building a Multi-domain Neural Machine Translation Model using Knowledge Distillation
http://arxiv.org/abs/2004.07324
AUTHORS: Idriss Mghabbar ; Pirashanth Ratnamogan
HIGHLIGHT: In this paper, we propose a new training pipeline where
knowledge distillation and multiple specialized teachers allow us to
efficiently finetune a model without adding new costs at inference time.
68, TITLE: Learning to Detect Important People in Unlabelled Images for Semi-supervised Important People Detection
http://arxiv.org/abs/2004.07568
AUTHORS: Fa-Ting Hong ; Wei-Hong Li ; Wei-Shi Zheng
HIGHLIGHT: To overcome this problem, we propose learning important
people detection on partially annotated images. We have collected two
large-scale datasets for evaluation.
69, TITLE: AMPSO: Artificial Multi-Swarm Particle Swarm Optimization
http://arxiv.org/abs/2004.07561
AUTHORS: Haohao Zhou ; Xiangzhi Wei
HIGHLIGHT: In this paper we propose a novel artificial multi-swarm
PSO which consists of an exploration swarm, an artificial exploitation
swarm and an artificial convergence swarm.
70, TITLE: RescueNet: Joint Building Segmentation and Damage Assessment from Satellite Imagery
http://arxiv.org/abs/2004.07312
AUTHORS: Rohit Gupta ; Mubarak Shah
COMMENTS: 7 pages, 3 figures, submitted to ICPR
HIGHLIGHT: We propose RescueNet, a unified model that can
simultaneously segment buildings and assess the damage levels to
individual buildings and can be trained end-toend.
71, TITLE: Evaluation of Generalizability of Neural Program Analyzers under Semantic-Preserving Transformations
http://arxiv.org/abs/2004.07313
AUTHORS: Md. Rafiqul Islam Rabin ; Mohammad Amin Alipour
COMMENTS: work in-progress
HIGHLIGHT: In this paper, we perform a large-scale evaluation of
the generalizability of two popular neural program analyzers using seven
semantically-equivalent transformations of programs.
72, TITLE: Framework for $\exists \mathbb{R}$-Completeness of Two-Dimensional Packing Problems
http://arxiv.org/abs/2004.07558
AUTHORS: Mikkel Abrahamsen ; Tillmann Miltzow ; Nadja Seiferth
COMMENTS: 98 pages, 60 figures
HIGHLIGHT: We consider packing problems where only translations are
allowed as the motions, and problems where arbitrary rigid motions are
allowed, i.e., both translations and rotations.
73, TITLE: An Evaluation of DNN Architectures for Page Segmentation of Historical Newspapers
http://arxiv.org/abs/2004.07317
AUTHORS: Bernhard Liebl ; Manuel Burghardt
COMMENTS: Evaluation of deep neural networks for the segmentation
of pages of historical newspapers; 21 pages total (incl. references and
appendix), 7 figures, 5 tables
HIGHLIGHT: In this paper, we perform a systematic evaluation of 11
different published DNN backbone architectures and 9 different tiling
and scaling configurations for separating text, tables or table column
lines.