-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path2020.04.16.txt
1608 lines (825 loc) · 51.5 KB
/
2020.04.16.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: A Transductive Approach for Video Object Segmentation
http://arxiv.org/abs/2004.07193
AUTHORS: Zhang Yizhuo ; Wu Zhirong ; Peng Houwen ; Lin Stephen
COMMENTS: To Appear in CVPR 2020
HIGHLIGHT: To address this issue, we propose a simple yet strong
transductive method, in which additional modules, datasets, and
dedicated architectural designs are not needed.
2, TITLE: Continuous learning of face attribute synthesis
http://arxiv.org/abs/2004.06904
AUTHORS: Xin Ning ; Shaohui Xu ; Xiaoli Dong ; Weijun Li ; Fangzhe Nan ; Yuanzhou Yao
HIGHLIGHT: To overcome the limitations of a single network in new
attribute synthesis, a continuous learning method for face attribute
synthesis is proposed in this work.
3, TITLE: Light Weight Residual Dense Attention Net for Spectral Reconstruction from RGB Images
http://arxiv.org/abs/2004.06930
AUTHORS: D. Sabari Nathan ; K. Uma ; D Synthiya Vinothini ; B. Sathya Bama ; S. M. Md Mansoor Roomi
COMMENTS: 6pages,4 figures
HIGHLIGHT: This work proposes a novel light weight network with
very less number of parameters about 233,059 parameters based on
Residual dense model with attention mechanism to obtain this solution.
4, TITLE: Combining Visible Light and Infrared Imaging for
Efficient Detection of Respiratory Infections such as COVID-19 on
Portable Device
http://arxiv.org/abs/2004.06912
AUTHORS: Zheng Jiang ; Menghan Hu ; Lei Fan ; Yaling Pan ; Wei Tang ; Guangtao Zhai ; Yong Lu
HIGHLIGHT: Therefore, in this paper, we propose a portable
non-contact method to screen the health condition of people wearing
masks through analysis of the respiratory characteristics.
5, TITLE: Explaining Regression Based Neural Network Model
http://arxiv.org/abs/2004.06918
AUTHORS: Mégane Millan ; Catherine Achard
COMMENTS: 7 pages, 5 figures, 4 tables
HIGHLIGHT: In this work, we design an experimental settings where
the ground truth can been established: we generate ideal signals and
disrupted signals with errors and learn a neural network that determines
the quality of the signals.
6, TITLE: A Novel CNN-based Method for Accurate Ship Detection in
HR Optical Remote Sensing Images via Rotated Bounding Box
http://arxiv.org/abs/2004.07124
AUTHORS: Linhao Li ; Zhiqiang Zhou ; Bo Wang ; Lingjuan Miao ; Hua Zong
HIGHLIGHT: In this paper, a novel CNN-based ship detection method
is proposed, by overcoming some common deficiencies of current CNN-based
methods in ship detection.
7, TITLE: Fully Convolutional Online Tracking
http://arxiv.org/abs/2004.07109
AUTHORS: Yutao Cui ; Cheng Jiang ; Limin Wang ; Gangshan Wu
COMMENTS: Technical Report. Code will be made available at https://github.com/MCG-NJU/FCOT
HIGHLIGHT: In this paper, we present the first fully convolutional
online tracking framework (FCOT), with a focus on enabling online
learning for both classification and regression branches.
8, TITLE: From Understanding Genetic Drift to a Smart-Restart Parameter-less Compact Genetic Algorithm
http://arxiv.org/abs/2004.07141
AUTHORS: Benjamin Doerr ; Weijie Zheng
COMMENTS: 4 figures
HIGHLIGHT: Based on a recent quantitative analysis which population
sizes lead to genetic drift, we propose a parameter-less version of the
compact genetic algorithm that automatically finds a suitable
population size without spending too much time in situations unfavorable
due to genetic drift.
9, TITLE: Transfer-Learning-Aware Neuro-Evolution for Diseases Detection in Chest X-Ray Images
http://arxiv.org/abs/2004.07136
AUTHORS: Albert Susanto ; Herman ; Tjeng Wawan Cenggoro ; Suharjito ; Bens Pardamean
HIGHLIGHT: To overcome this problem, neuro-evolution using a
genetic algorithm can be used to find the best architecture for transfer
learning.
10, TITLE: Residual-driven Fuzzy C-Means Clustering for Image Segmentation
http://arxiv.org/abs/2004.07160
AUTHORS: Cong Wang ; Witold Pedrycz ; ZhiWu Li ; MengChu Zhou
COMMENTS: 14 pages, 13 figures, 6 tables
HIGHLIGHT: We propose a residual-driven FCM framework by
integrating into FCM a residual-related fidelity term derived from the
distribution of different types of noise.
11, TITLE: Document-level Representation Learning using Citation-informed Transformers
http://arxiv.org/abs/2004.07180
AUTHORS: Arman Cohan ; Sergey Feldman ; Iz Beltagy ; Doug Downey ; Daniel S. Weld
COMMENTS: ACL 2020
HIGHLIGHT: We propose SPECTER, a new method to generate
document-level embedding of scientific documents based on pretraining a
Transformer language model on a powerful signal of document-level
relatedness: the citation graph.
12, TITLE: Bias in Multimodal AI: Testbed for Fair Automatic Recruitment
http://arxiv.org/abs/2004.07173
AUTHORS: Alejandro Peña ; Ignacio Serna ; Aythami Morales ; Julian Fierrez
HIGHLIGHT: With the aim of studying how current multimodal
algorithms based on heterogeneous sources of information are affected by
sensitive elements and inner biases in the data, we propose a
fictitious automated recruitment testbed: FairCVtest.
13, TITLE: Probabilistic Model of Narratives Over Topical Trends in Social Media: A Discrete Time Model
http://arxiv.org/abs/2004.06793
AUTHORS: Toktam A. Oghaz ; Ece C. Mutlu ; Jasser Jasser ; Niloofar Yousefi ; Ivan Garibay
COMMENTS: 9 pages, 4 figures
HIGHLIGHT: To address this issue, we propose a novel event-based narrative summary extraction framework.
14, TITLE: RoboTHOR: An Open Simulation-to-Real Embodied AI Platform
http://arxiv.org/abs/2004.06799
AUTHORS: Matt Deitke ; Winson Han ; Alvaro Herrasti ; Aniruddha
Kembhavi ; Eric Kolve ; Roozbeh Mottaghi ; Jordi Salvador ; Dustin
Schwenk ; Eli VanderBilt ; Matthew Wallingford ; Luca Weihs ; Mark
Yatskar ; Ali Farhadi
COMMENTS: CVPR 2020
HIGHLIGHT: In this paper, we introduce RoboTHOR to democratize research in interactive and embodied visual AI.
15, TITLE: Cascaded Structure Tensor Framework for Robust Identification of Heavily Occluded Baggage Items from X-ray Scans
http://arxiv.org/abs/2004.06780
AUTHORS: Taimur Hassan ; Samet Akcay ; Mohammed Bennamoun ; Salman Khan ; Naoufel Werghi
HIGHLIGHT: This paper presents a cascaded structure tensor
framework that can automatically extract and recognize suspicious items
in heavily occluded and cluttered baggage.
16, TITLE: Entities as Experts: Sparse Memory Access with Entity Supervision
http://arxiv.org/abs/2004.07202
AUTHORS: Thibault Févry ; Livio Baldini Soares ; Nicholas FitzGerald ; Eunsol Choi ; Tom Kwiatkowski
HIGHLIGHT: We introduce a new model, Entities as Experts (EaE),
that can access distinct memories of the entities mentioned in a piece
of text.
17, TITLE: BabyAI++: Towards Grounded-Language Learning beyond Memorization
http://arxiv.org/abs/2004.07200
AUTHORS: Tianshi Cao ; Jingkang Wang ; Yining Zhang ; Sivabalan Manivasagam
COMMENTS: Accepted to the ICLR 2020 workshop: Beyond tabula rasa in RL (BeTR-RL)
HIGHLIGHT: To promote research in this direction, we introduce a
new platform, BabyAI++, to generate various dynamic environments along
with corresponding descriptive texts.
18, TITLE: Using Player's Body-Orientation to Model Pass Feasibility in Soccer
http://arxiv.org/abs/2004.07209
AUTHORS: Adrià Arbués-Sangüesa ; Adrián Martín ; Javier Fernández ; Coloma Ballester ; Gloria Haro
COMMENTS: Accepted at the Computer Vision in Sports Workshop at CVPR 2020
HIGHLIGHT: Given a monocular video of a soccer match, this paper
presents a computational model to estimate the most feasible pass at any
given time.
19, TITLE: On Box-Cox Transformation for Image Normality and Pattern Classification
http://arxiv.org/abs/2004.07210
AUTHORS: Abbas Cheddad
COMMENTS: The paper has an Appendix attached to it
HIGHLIGHT: We compare the effect of this light-weight Box-Cox
transformation with well-established state-of-the-art low light image
enhancement techniques.
20, TITLE: Improving Many-objective Evolutionary Algorithms by Means of Expanded Cone Orders
http://arxiv.org/abs/2004.06941
AUTHORS: Yali Wang ; André Deutz ; Thomas Bäck ; Michael T. M. Emmerich
HIGHLIGHT: As a remedy to stagnation of search in many objective
optimization, in this paper, we suggest to enhance the Pareto dominance
order by involving a convex obtuse dominance cone in the convergence
phase of an evolutionary optimization algorithm.
21, TITLE: Efficient, Near Complete and Often Sound Hybrid Dynamic Data Race Prediction (extended version)
http://arxiv.org/abs/2004.06969
AUTHORS: Martin Sulzmann ; Kai Stadtmüller
HIGHLIGHT: We introduce an efficient, near complete and often sound
dynamic data race prediction method that combines the lockset method
with several improvements made in the area of happens-before methods. We
provide extensive experimental data that shows that our method works
well in practice.
22, TITLE: Exploration of Indoor Environments Predicting the Layout of Partially Observed Rooms
http://arxiv.org/abs/2004.06967
AUTHORS: Matteo Luperto ; Luca Fochetta ; Francesco Amigoni
HIGHLIGHT: In this paper, we present an approach that exploits a
prediction of the geometric structure of the unknown parts of an
environment to improve exploration performance.
23, TITLE: ActionSpotter: Deep Reinforcement Learning Framework for Temporal Action Spotting in Videos
http://arxiv.org/abs/2004.06971
AUTHORS: Guillaume Vaudaux-Ruth ; Adrien Chan-Hon-Tong ; Catherine Achard
HIGHLIGHT: To do this, we propose ActionSpotter, a spotting
algorithm that takes advantage of Deep Reinforcement Learning to
efficiently spot actions while adapting its video browsing speed,
without additional supervision.
24, TITLE: Roommate Compatibility Detection Through Machine Learning Techniques
http://arxiv.org/abs/2004.06970
AUTHORS: Mansha Lamba ; Raunak Goswami ; Mr. Vinay ; Mohit Lamba
HIGHLIGHT: Our objective is to develop an artificially intelligent
system which aims at checking the compatibility between the roommates of
same or different sex sharing a common area of residence.
25, TITLE: Self-Supervised training for blind multi-frame video denoising
http://arxiv.org/abs/2004.06957
AUTHORS: Dewil Valéry ; Arias Pablo ; Facciolo Gabriele ; Anger Jérémy ; Davy Axel ; Ehret Thibaud
COMMENTS: 14 pages
HIGHLIGHT: We propose a self-supervised approach for training multi-frame video denoising networks.
26, TITLE: On the Combined Impact of Population Size and Sub-problem Selection in MOEA/D
http://arxiv.org/abs/2004.06961
AUTHORS: Geoffrey Pruvost ; Bilel Derbel ; Arnaud Liefooghe ; Ke Li ; Qingfu Zhang
COMMENTS: European Conference on Evolutionary Computation in Combinatorial Optimization, Apr 2020, Seville, Spain
HIGHLIGHT: This paper intends to understand and to improve the
working principle of decomposition-based multi-objective evolutionary
algorithms.
27, TITLE: Unified Dynamic Convolutional Network for Super-Resolution with Variational Degradations
http://arxiv.org/abs/2004.06965
AUTHORS: Yu-Syuan Xu ; Shou-Yao Roy Tseng ; Yu Tseng ; Hsien-Kai Kuo ; Yi-Min Tsai
COMMENTS: CVPR 2020
HIGHLIGHT: To fulfill this requirement, this paper proposes a
unified network to accommodate the variations from inter-image
(cross-image variations) and intra-image (spatial variations).
28, TITLE: Balancing Training for Multilingual Neural Machine Translation
http://arxiv.org/abs/2004.06748
AUTHORS: Xinyi Wang ; Yulia Tsvetkov ; Graham Neubig
COMMENTS: Accepted at ACL 2020
HIGHLIGHT: In this paper, we propose a method that instead
automatically learns how to weight training data through a data scorer
that is optimized to maximize performance on all test languages.
29, TITLE: Extending Text Informativeness Measures to Passage
Interestingness Evaluation (Language Model vs. Word Embedding)
http://arxiv.org/abs/2004.06747
AUTHORS: Carlos-Emiliano González-Gallardo ; Eric SanJuan ; Juan-Manuel Torres-Moreno
HIGHLIGHT: In this paper we define the concept of Interestingness
as a generalization of Informativeness, whereby the information need is
diverse and formalized as an unknown set of implicit queries.
30, TITLE: A Simple Yet Strong Pipeline for HotpotQA
http://arxiv.org/abs/2004.06753
AUTHORS: Dirk Groeneveld ; Tushar Khot ; Mausam ; Ashish Sabharwal
HIGHLIGHT: Our pipeline has three steps: 1) use BERT to identify
potentially relevant sentences independently of each other; 2) feed the
set of selected sentences as context into a standard BERT span
prediction model to choose an answer; and 3) use the sentence selection
model, now with the chosen answer, to produce supporting sentences.
31, TITLE: Framing COVID-19: How we conceptualize and discuss the pandemic on Twitter
http://arxiv.org/abs/2004.06986
AUTHORS: Philipp Wicke ; Marianna M. Bolognesi
COMMENTS: 41 pages, 6 figures
HIGHLIGHT: We hereby present an analysis of the discourse around
#Covid-19, based on a corpus of 200k tweets posted on Twitter during
March and April 2020.
32, TITLE: Neural Status Registers
http://arxiv.org/abs/2004.07085
AUTHORS: Lukas Faber ; Roger Wattenhofer
HIGHLIGHT: In this paper, we introduce the Neural Status Register (NSR), inspired by physical Status Registers.
33, TITLE: Seeing Red: PPG Biometrics Using Smartphone Cameras
http://arxiv.org/abs/2004.07088
AUTHORS: Giulio Lovisotto ; Henry Turner ; Simon Eberz ; Ivan Martinovic
COMMENTS: 8 pages, 15th IEEE Computer Society Workshop on Biometrics 2020
HIGHLIGHT: In this paper, we propose a system that enables
photoplethysmogram (PPG)-based authentication by using a smartphone
camera. We collect a dataset of PPG measurements from a set of 15 users
over the course of 6-11 sessions per user using an iPhone X for the
measurements.
34, TITLE: Analyzing analytical methods: The case of phonology in neural models of spoken language
http://arxiv.org/abs/2004.07070
AUTHORS: Grzegorz Chrupała ; Bertrand Higy ; Afra Alishahi
COMMENTS: ACL 2020
HIGHLIGHT: We use two commonly applied analytical techniques,
diagnostic classifiers and representational similarity analysis, to
quantify to what extent neural activation patterns encode phonemes and
phoneme sequences.
35, TITLE: Image Segmentation Using Hybrid Representations
http://arxiv.org/abs/2004.07071
AUTHORS: Alakh Desai ; Ruchi Chauhan ; Jayanthi Sivaswamy
COMMENTS: 4 pages, 6 figures, to be published in ISBI 2020
HIGHLIGHT: We introduce an end-to-end U-Net based network called
DU-Net, which uses additional frequency preserving features, namely the
Scattering Coefficients (SC), for medical image segmentation.
36, TITLE: lamBERT: Language and Action Learning Using Multimodal BERT
http://arxiv.org/abs/2004.07093
AUTHORS: Kazuki Miyazawa ; Tatsuya Aoki ; Takato Horii ; Takayuki Nagai
COMMENTS: 8 pages, 9 figures
HIGHLIGHT: This study proposes the language and action learning
using multimodal BERT (lamBERT) model that enables the learning of
language and actions by 1) extending the BERT model to multimodal
representation and 2) integrating it with reinforcement learning.
37, TITLE: DeeSCo: Deep heterogeneous ensemble with Stochastic Combinatory loss for gaze estimation
http://arxiv.org/abs/2004.07098
AUTHORS: Edouard Yvinec ; Arnaud Dapogny ; Kévin Bailly
COMMENTS: 7 pages, 6 figures, FG 2020
HIGHLIGHT: In this paper, we introduce a deep, end-to-end trainable
ensemble of heatmap-based weak predictors for 2D/3D gaze estimation.
38, TITLE: MXR-U-Nets for Real Time Hyperspectral Reconstruction
http://arxiv.org/abs/2004.07003
AUTHORS: Atmadeep Banerjee ; Akash Palrecha
HIGHLIGHT: In this paper, we build upon the work of Howard and
Gugger, He et al. and Misra, D. and propose a CNN architecture that
accurately reconstructs hyperspectral images from their RGB
counterparts.
39, TITLE: Visual Descriptor Learning from Monocular Video
http://arxiv.org/abs/2004.07007
AUTHORS: Umashankar Deekshith ; Nishit Gajjar ; Max Schwarz ; Sven Behnke
COMMENTS: International Conference on Computer Vision Theory and Applications (VISAPP) 2020
HIGHLIGHT: In this paper, we propose a novel way to estimate dense
correspondence on an RGB image where visual descriptors are learned from
video examples by training a fully convolutional network.
40, TITLE: Exploring Probabilistic Soft Logic as a framework for
integrating top-down and bottom-up processing of language in a task
context
http://arxiv.org/abs/2004.07000
AUTHORS: Johannes Dellert
COMMENTS: 32 pages, 2 figures
HIGHLIGHT: This technical report describes a new prototype
architecture designed to integrate top-down and bottom-up analysis of
non-standard linguistic input, where a semantic model of the context of
an utterance is used to guide the analysis of the non-standard surface
forms, including their automated normalization in context.
41, TITLE: FOND Planning for LTLf and PLTLf Goals
http://arxiv.org/abs/2004.07027
AUTHORS: Francesco Fuggitti
COMMENTS: Extract of MSc Thesis, 35 pages
HIGHLIGHT: In this report, we will define a new approach to the
problem of non deterministic planning for extended temporal goals.
42, TITLE: Ants can orienteer a thief in their robbery
http://arxiv.org/abs/2004.07017
AUTHORS: Jonatas B. C. Chagas ; Markus Wagner
HIGHLIGHT: We propose a two-phase, swarm-intelligence based approach together with a new randomized packing heuristic.
43, TITLE: Contextual Pyramid Attention Network for Building Segmentation in Aerial Imagery
http://arxiv.org/abs/2004.07018
AUTHORS: Clint Sebastian ; Raffaele Imbriaco ; Egor Bondarev ; Peter H. N. de With
HIGHLIGHT: In this work, we propose to improve building
segmentation of different sizes by capturing long-range dependencies
using contextual pyramid attention (CPA).
44, TITLE: Code-Aligned Autoencoders for Unsupervised Change Detection in Multimodal Remote Sensing Images
http://arxiv.org/abs/2004.07011
AUTHORS: Luigi T. Luppino ; Mads A. Hansen ; Michael Kampffmeyer ;
Filippo M. Bianchi ; Gabriele Moser ; Robert Jenssen ; Stian N.
Anfinsen
HIGHLIGHT: We propose to extract relational pixel information
captured by domain-specific affinity matrices at the input and use this
to enforce alignment of the code spaces and reduce the impact of change
pixels on the learning objective.
45, TITLE: Extending Unsupervised Neural Image Compression With Supervised Multitask Learning
http://arxiv.org/abs/2004.07041
AUTHORS: David Tellez ; Diederik Hoppener ; Cornelis Verhoef ;
Dirk Grunhagen ; Pieter Nierop ; Michal Drozdzal ; Jeroen van der Laak ;
Francesco Ciompi
COMMENTS: Medical Imaging with Deep Learning 2020 (MIDL20)
HIGHLIGHT: We propose to train this encoder using supervised multitask learning (MTL) instead.
46, TITLE: 4DFlowNet: Super-Resolution 4D Flow MRI using Deep Learning and Computational Fluid Dynamics
http://arxiv.org/abs/2004.07035
AUTHORS: Edward Ferdian ; Avan Suinesiaputra ; David Dubowitz ; Debbie Zhao ; Alan Wang ; Brett Cowan ; Alistair Young
COMMENTS: accepted to Frontiers in Cardiovascular Medicine
HIGHLIGHT: We utilized computational fluid dynamics simulations to
generate fluid flow simulations and represent them as synthetic 4D flow
MRI data. We built our training dataset to mimic actual 4D flow MRI data
with its corresponding noise distribution.
47, TITLE: Fully Automated Myocardial Strain Estimation from CMR
Tagged Images using a Deep Learning Framework in the UK Biobank
http://arxiv.org/abs/2004.07064
AUTHORS: Edward Ferdian ; Avan Suinesiaputra ; Kenneth Fung ; Nay
Aung ; Elena Lukaschuk ; Ahmet Barutcu ; Edd Maclean ; Jose Paiva ;
Stefan K. Piechnik ; Stefan Neubauer ; Steffen E Petersen ; Alistair A.
Young
COMMENTS: accepted in Radiology Cardiothoracic Imaging
HIGHLIGHT: Methods and Materials: In this retrospective
cross-sectional study, 4508 cases from the UK Biobank were split
randomly into 3244 training and 812 validation cases, and 452 test
cases.
48, TITLE: JCS: An Explainable COVID-19 Diagnosis System by Joint Classification and Segmentation
http://arxiv.org/abs/2004.07054
AUTHORS: Yu-Huan Wu ; Shang-Hua Gao ; Jie Mei ; Jun Xu ; Deng-Ping Fan ; Chao-Wei Zhao ; Ming-Ming Cheng
COMMENTS: 11 pages, 10 figures
HIGHLIGHT: In this paper, we develop a novel Joint Classification
and Segmentation (JCS) system to perform real-time and explainable
COVID-19 diagnosis. To train our JCS system, we construct a large scale
COVID-19 Classification and Segmentation (COVID-CS) dataset, with
144,167 CT images of 400 COVID-19 patients and 350 uninfected cases.
49, TITLE: Melanoma Detection using Adversarial Training and Deep Transfer Learning
http://arxiv.org/abs/2004.06824
AUTHORS: Hasib Zunair ; A. Ben Hamza
COMMENTS: Accepted for publication in the Journal of Physics in Medicine and Biology (PMB), April 2020. Codes at https://github.com/hasibzunair/adversarial-lesions
HIGHLIGHT: In this paper, we propose a two-stage framework for
automatic classification of skin lesion images using adversarial
training and transfer learning toward melanoma detection.
50, TITLE: A Human Evaluation of AMR-to-English Generation Systems
http://arxiv.org/abs/2004.06814
AUTHORS: Emma Manning ; Shira Wein ; Nathan Schneider
HIGHLIGHT: In this work, we present the results of a new human
evaluation which collects fluency and adequacy scores, as well as
categorization of error types, for several recent AMR generation
systems.
51, TITLE: Bounding boxes for weakly supervised segmentation: Global constraints get close to full supervision
http://arxiv.org/abs/2004.06816
AUTHORS: Hoel Kervadec ; Jose Dolz ; Shanshan Wang ; Eric Granger ; Ismail Ben Ayed
COMMENTS: Full paper, accepted for presentation at MIDL2020
HIGHLIGHT: We propose a novel weakly supervised learning
segmentation based on several global constraints derived from box
annotations.
52, TITLE: Intuitive, Interactive Beard and Hair Synthesis with Generative Models
http://arxiv.org/abs/2004.06848
AUTHORS: Kyle Olszewski ; Duygu Ceylan ; Jun Xing ; Jose Echevarria ; Zhili Chen ; Weikai Chen ; Hao Li
COMMENTS: To be presented in the 2020 Conference on Computer
Vision and Pattern Recognition (CVPR 2020, Oral Presentation).
Supplementary video can be seen at: https://www.youtube.com/watch?v=v4qOtBATrvM
HIGHLIGHT: We present an interactive approach to synthesizing
realistic variations in facial hair in images, ranging from subtle edits
to existing hair to the addition of complex and challenging hair in
images of clean-shaven subjects.
53, TITLE: Mosaic Super-resolution via Sequential Feature Pyramid Networks
http://arxiv.org/abs/2004.06853
AUTHORS: Mehrdad Shoeiby ; Mohammad Ali Armin ; Sadegh Aliakbarian ; Saeed Anwar ; Lars Petersson
COMMENTS: Accepted by IEEE CVPR Workshop
HIGHLIGHT: In this paper, we propose to address this limitation by
introducing a novel method to carry out super-resolution on raw mosaic
images, multi-spectral or RGB Bayer, captured by modern real-time
single-shot mosaic sensors.
54, TITLE: Coreferential Reasoning Learning for Language Representation
http://arxiv.org/abs/2004.06870
AUTHORS: Deming Ye ; Yankai Lin ; Jiaju Du ; Zhenghao Liu ; Maosong Sun ; Zhiyuan Liu
HIGHLIGHT: To address this issue, we present CorefBERT, a novel
language representation model designed to capture the relations between
noun phrases that co-refer to each other.
55, TITLE: ToD-BERT: Pre-trained Natural Language Understanding for Task-Oriented Dialogues
http://arxiv.org/abs/2004.06871
AUTHORS: Chien-Sheng Wu ; Steven Hoi ; Richard Socher ; Caiming Xiong
HIGHLIGHT: In this work, we combine nine English-based,
human-human, multi-turn and publicly available task-oriented dialogue
datasets to conduct language model pre-training.
56, TITLE: Understanding Aesthetic Evaluation using Deep Learning
http://arxiv.org/abs/2004.06874
AUTHORS: Jon McCormack ; Andy Lomas
COMMENTS: Presented at EvoMUSART 2020 Conference
HIGHLIGHT: In this paper we look at how recent advances in deep
learning can assist in automating personal aesthetic judgement.
57, TITLE: Combining Geometric and Information-Theoretic Approaches for Multi-Robot Exploration
http://arxiv.org/abs/2004.06856
AUTHORS: Aravind Preshant Premkumar ; Kevin Yu ; Pratap Tokekar
HIGHLIGHT: We present an algorithm to explore an orthogonal polygon using a team of $p$ robots.
58, TITLE: A Practical Blockchain Framework using Image Hashing for Image Authentication
http://arxiv.org/abs/2004.06860
AUTHORS: Cameron White ; Manoranjan Paul ; Subrata Chakraborty
COMMENTS: This is un-published paper
HIGHLIGHT: This work shows that blockchain can be a suitable
approach for authenticating images, particularly via image hashing.
59, TITLE: On the Linguistic Capacity of Real-Time Counter Automata
http://arxiv.org/abs/2004.06866
AUTHORS: William Merrill
COMMENTS: Unpublished
HIGHLIGHT: Counter machines have achieved a newfound relevance to
the field of natural language processing (NLP): recent work suggests
some strong-performing recurrent neural networks utilize their memory as
counters.
60, TITLE: Human Evaluation of Interpretability: The Case of AI-Generated Music Knowledge
http://arxiv.org/abs/2004.06894
AUTHORS: Haizi Yu ; Heinrich Taube ; James A. Evans ; Lav R. Varshney
HIGHLIGHT: Our goal is to reveal both the possibilities and the
challenges in such a process of decoding expressive messages from AI
sources.
61, TITLE: Learning sums of powers of low-degree polynomials in the non-degenerate case
http://arxiv.org/abs/2004.06898
AUTHORS: Ankit Garg ; Neeraj Kayal ; Chandan Saha
HIGHLIGHT: In this paper, we give a $\text{poly}((ns)^t)$-time
learning algorithm for finding the $Q_i$'s given (black-box access to)
$f$, if the $Q_i's$ satisfy certain non-degeneracy conditions and $n$ is
larger than $d^2$.
62, TITLE: Mirror Ritual: Human-Machine Co-Construction of Emotion
http://arxiv.org/abs/2004.06883
AUTHORS: Nina Rajcic ; Jon McCormack
COMMENTS: Paper presented at ACM TEI Conference 2020 Arts Track, Sydney Australia
HIGHLIGHT: Mirror Ritual: Human-Machine Co-Construction of Emotion
63, TITLE: Effect of Input Noise Dimension in GANs
http://arxiv.org/abs/2004.06882
AUTHORS: Manisha Padala ; Debojit Das ; Sujit Gujar
HIGHLIGHT: To overcome the challenges, researchers have proposed
novel loss functions, architectures, and optimization methods.
64, TITLE: Analysis of Scoliosis From Spinal X-Ray Images
http://arxiv.org/abs/2004.06887
AUTHORS: Abdullah-Al-Zubaer Imran ; Chao Huang ; Hui Tang ; Wei
Fan ; Kenneth M. C. Cheung ; Michael To ; Zhen Qian ; Demetri
Terzopoulos
COMMENTS: 6 pages, 6 figures, 3 tables
HIGHLIGHT: Leveraging a carefully-adjusted U-Net model with
progressive side outputs, we propose an end-to-end segmentation model
that provides a fully automatic and reliable segmentation of the
vertebrae associated with scoliosis measurement.
==========Updates to Previous Papers==========
1, TITLE: MobileBERT: a Compact Task-Agnostic BERT for Resource-Limited Devices
http://arxiv.org/abs/2004.02984
AUTHORS: Zhiqing Sun ; Hongkun Yu ; Xiaodan Song ; Renjie Liu ; Yiming Yang ; Denny Zhou
COMMENTS: Accepted to ACL 2020
HIGHLIGHT: In this paper, we propose MobileBERT for compressing and accelerating the popular BERT model.
2, TITLE: Constrained Multi-shape Evolution for Overlapping Cytoplasm Segmentation
http://arxiv.org/abs/2004.03892
AUTHORS: Youyi Song ; Lei Zhu ; Baiying Lei ; Bin Sheng ; Qi Dou ; Jing Qin ; Kup-Sze Choi
COMMENTS: 12 pages and 6 figures
HIGHLIGHT: In this paper, we present a novel and effective shape
prior-based approach, called constrained multi-shape evolution, that
segments all overlapping cytoplasms in the clump simultaneously by
jointly evolving each cytoplasm's shape guided by the modeled shape
priors.
3, TITLE: Capacity, Bandwidth, and Compositionality in Emergent Language Learning
http://arxiv.org/abs/1910.11424
AUTHORS: Cinjon Resnick ; Abhinav Gupta ; Jakob Foerster ; Andrew M. Dai ; Kyunghyun Cho
COMMENTS: The first two authors contributed equally. Accepted at AAMAS 2020
HIGHLIGHT: In this paper, we investigate the learning biases that
affect the efficacy and compositionality of emergent languages. We
additionally introduce a set of evaluation metrics with which we analyze
the learned languages.
4, TITLE: The Devil is in the Details: Self-Supervised Attention for Vehicle Re-Identification
http://arxiv.org/abs/2004.06271
AUTHORS: Pirazh Khorramshahi ; Neehar Peri ; Jun-cheng Chen ; Rama Chellappa
HIGHLIGHT: In this paper, we present Self-supervised Attention for
Vehicle Re-identification (SAVER), a novel approach to effectively learn
vehicle-specific discriminative features.
5, TITLE: Is Aligning Embedding Spaces a Challenging Task? A Study on Heterogeneous Embedding Alignment Methods
http://arxiv.org/abs/2002.09247
AUTHORS: Russa Biswas ; Mehwish Alam ; Harald Sack
HIGHLIGHT: This paper provides a theoretical analysis and
comparison of the state-of-the-art alignment methods between two
embedding spaces representing entity-entity and entity-word.
6, TITLE: A Deep Learning based Pipeline for Efficient Oral Cancer Screening on Whole Slide Images
http://arxiv.org/abs/1910.10549
AUTHORS: Jiahao Lu ; Nataša Sladoje ; Christina Runow Stark ; Eva Darai Ramqvist ; Jan-Michaél Hirsch ; Joakim Lindblad
COMMENTS: Accepted to ICIAR 2020
HIGHLIGHT: To facilitate large scale screening, we propose a fully
automated pipeline for oral cancer detection on whole slide cytology
images.
7, TITLE: KeypointNet: A Large-scale 3D Keypoint Dataset Aggregated from Numerous Human Annotations
http://arxiv.org/abs/2002.12687
AUTHORS: Yang You ; Yujing Lou ; Chengkun Li ; Zhoujun Cheng ; Liangwei Li ; Lizhuang Ma ; Cewu Lu ; Weiming Wang
COMMENTS: 8 pages; to appear in CVPR 2020
HIGHLIGHT: To handle the inconsistency between annotations from
different people, we propose a novel method to aggregate these keypoints
automatically, through minimization of a fidelity loss.
8, TITLE: Future Video Synthesis with Object Motion Prediction
http://arxiv.org/abs/2004.00542
AUTHORS: Yue Wu ; Rongrong Gao ; Jaesik Park ; Qifeng Chen
COMMENTS: CVPR 2020
HIGHLIGHT: We present an approach to predict future video frames given a sequence of continuous video frames in the past.
9, TITLE: Deep Eyedentification: Biometric Identification using Micro-Movements of the Eye
http://arxiv.org/abs/1906.11889
AUTHORS: Lena A. Jäger ; Silvia Makowski ; Paul Prasse ; Sascha Liehr ; Maximilian Seidler ; Tobias Scheffer
HIGHLIGHT: We study involuntary micro-movements of the eye for biometric identification.
10, TITLE: Implicit Functions in Feature Space for 3D Shape Reconstruction and Completion