-
Notifications
You must be signed in to change notification settings - Fork 6
/
2020.07.07.txt
1619 lines (1331 loc) · 119 KB
/
2020.07.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: Learning Motion Flows for Semi-supervised Instrument Segmentation from Robotic Surgical Video
http://arxiv.org/abs/2007.02501
AUTHORS: Zixu Zhao ; Yueming Jin ; Xiaojie Gao ; Qi Dou ; Pheng-Ann Heng
COMMENTS: Accepted for MICCAI 2020
HIGHLIGHT: In this paper, we study the semi-supervised instrument segmentation from robotic surgical videos with sparse annotations.
2, TITLE: You Autocomplete Me: Poisoning Vulnerabilities in Neural Code Completion
http://arxiv.org/abs/2007.02220
AUTHORS: Roei Schuster ; Congzheng Song ; Eran Tromer ; Vitaly Shmatikov
HIGHLIGHT: We demonstrate that neural code autocompleters are vulnerable to data- and model-poisoning attacks.
3, TITLE: Are Labels Necessary for Classifier Accuracy Evaluation?
http://arxiv.org/abs/2007.02915
AUTHORS: Weijian Deng ; Liang Zheng
HIGHLIGHT: Specifically, given a labeled training set and a model, we aim to estimate the model accuracy on unlabeled test datasets.
4, TITLE: Point-Set Anchors for Object Detection, Instance Segmentation and Pose Estimation
http://arxiv.org/abs/2007.02846
AUTHORS: Fangyun Wei ; Xiao Sun ; Hongyang Li ; Jingdong Wang ; Stephen Lin
COMMENTS: To appear in ECCV 2020
HIGHLIGHT: To facilitate inference, we propose to instead perform regression from a set of points placed at more advantageous positions.
5, TITLE: MCMI: Multi-Cycle Image Translation with Mutual Information Constraints
http://arxiv.org/abs/2007.02919
AUTHORS: Xiang Xu ; Megha Nawhal ; Greg Mori ; Manolis Savva
HIGHLIGHT: We present a mutual information-based framework for unsupervised image-to-image translation.
6, TITLE: Maximum Entropy Gain Exploration for Long Horizon Multi-goal Reinforcement Learning
http://arxiv.org/abs/2007.02832
AUTHORS: Silviu Pitis ; Harris Chan ; Stephen Zhao ; Bradly Stadie ; Jimmy Ba
COMMENTS: 12 pages (+12 appendix). Published as a conference paper at ICML 2020. Code available at https://github.com/spitis/mrl
HIGHLIGHT: We propose to optimize this objective by having the agent pursue past achieved goals in sparsely explored areas of the goal space, which focuses exploration on the frontier of the achievable goal set.
7, TITLE: A Survey on Sensor Technologies for Unmanned Ground Vehicles
http://arxiv.org/abs/2007.01992
AUTHORS: Qi Liu ; Shihua Yuan ; Zirui Li
COMMENTS: 9 pages,6 tables
HIGHLIGHT: This paper proposes a brief review on sensor technologies for UGVs.
8, TITLE: INT: An Inequality Benchmark for Evaluating Generalization in Theorem Proving
http://arxiv.org/abs/2007.02924
AUTHORS: Yuhuai Wu ; Albert Jiang ; Jimmy Ba ; Roger Grosse
HIGHLIGHT: In this paper, we introduce INT, an INequality Theorem proving benchmark, specifically designed to test agents' generalization ability.
9, TITLE: A Family of Denominator Bounds for First Order Linear Recurrence Systems
http://arxiv.org/abs/2007.02926
AUTHORS: Mark van Hoeij ; Moulay Barkatou ; Johannes Middeke
COMMENTS: 13 pages
HIGHLIGHT: For linear recurrence systems, the problem of finding rational solutions is reduced to the problem of computing polynomial solutions by computing a content bound or a denominator bound.
10, TITLE: Bidirectional Model-based Policy Optimization
http://arxiv.org/abs/2007.01995
AUTHORS: Hang Lai ; Jian Shen ; Weinan Zhang ; Yong Yu
COMMENTS: Accepted at ICML2020
HIGHLIGHT: We develop a novel method, called Bidirectional Model-based Policy Optimization (BMPO) to utilize both the forward model and backward model to generate short branched rollouts for policy optimization.
11, TITLE: BBS-Net: RGB-D Salient Object Detection with a Bifurcated Backbone Strategy Network
http://arxiv.org/abs/2007.02713
AUTHORS: Fan Deng-Ping ; Zhai Yingjie ; Borji Ali ; Yang Jufeng ; Shao Ling
COMMENTS: Accepted in ECCV2020. Code: https://github.com/DengPingFan/BBS-Net
HIGHLIGHT: In this paper, we make the first attempt to leverage the inherent multi-modal and multi-level nature of RGB-D salient object detection to develop a novel cascaded refinement network.
12, TITLE: Image Stitching Based on Planar Region Consensus
http://arxiv.org/abs/2007.02722
AUTHORS: Aocheng Li ; Jie Guo ; Yanwen Guo
COMMENTS: 15 pages, 9 figures
HIGHLIGHT: In this paper, noticing the importance of planar structure under perspective geometry, we propose a new image stitching method which stitches images by allowing for the alignment of a set of matched dominant planar regions.
13, TITLE: Reward Machines for Cooperative Multi-Agent Reinforcement Learning
http://arxiv.org/abs/2007.01962
AUTHORS: Cyrus Neary ; Zhe Xu ; Bo Wu ; Ufuk Topcu
HIGHLIGHT: We accordingly propose a decentralized q-learning algorithm.
14, TITLE: Complex Human Action Recognition in Live Videos Using Hybrid FR-DL Method
http://arxiv.org/abs/2007.02811
AUTHORS: Fatemeh Serpush ; Mahdi Rezaei
HIGHLIGHT: In this paper, we address challenges of the preprocessing phase, by an automated selection of representative frames among the input sequences.
15, TITLE: Structure-Aware Human-Action Generation
http://arxiv.org/abs/2007.01971
AUTHORS: Ping Yu ; Yang Zhao ; Chunyuan Li ; Changyou Chen
COMMENTS: accepted by ECCV 2020
HIGHLIGHT: To overcome this issue, we propose a variant of GCNs to leverage the powerful self-attention mechanism to adaptively sparsify a complete action graph in the temporal space.
16, TITLE: Solving Bayesian Network Structure Learning Problem with Integer Linear Programming
http://arxiv.org/abs/2007.02829
AUTHORS: Ronald Seoh
HIGHLIGHT: We review the definition and key properties of Bayesian network and explain score metrics used to measure how well certain Bayesian network structure fits the dataset.
17, TITLE: Lale: Consistent Automated Machine Learning
http://arxiv.org/abs/2007.01977
AUTHORS: Guillaume Baudart ; Martin Hirzel ; Kiran Kate ; Parikshit Ram ; Avraham Shinnar
COMMENTS: KDD Workshop on Automation in Machine Learning (AutoML@KDD), August 2020
HIGHLIGHT: This paper introduces Lale, a library of high-level Python interfaces that simplifies and unifies automated machine learning in a consistent way.
18, TITLE: Scaling Imitation Learning in Minecraft
http://arxiv.org/abs/2007.02701
AUTHORS: Artemij Amiranashvili ; Nicolai Dorka ; Wolfram Burgard ; Vladlen Koltun ; Thomas Brox
HIGHLIGHT: We apply imitation learning to attain state-of-the-art performance on hard exploration problems in the Minecraft environment.
19, TITLE: Interpretation of Disease Evidence for Medical Images Using Adversarial Deformation Fields
http://arxiv.org/abs/2007.01975
AUTHORS: Ricardo Bigolin Lanfredi ; Joyce D. Schroeder ; Clement Vachet ; Tolga Tasdizen
COMMENTS: Accepted for MICCAI 2020
HIGHLIGHT: We propose a novel method for formulating and presenting spatial explanations of disease evidence, called deformation field interpretation with generative adversarial networks (DeFI-GAN).
20, TITLE: Dynamic Awareness
http://arxiv.org/abs/2007.02823
AUTHORS: Joseph Y. Halpern ; Evan Piermont
COMMENTS: To appear in the 17th International Conference on Principles of Knowledge Representation and Reasoning
HIGHLIGHT: We investigate how to model the beliefs of an agent who becomes more aware.
21, TITLE: Mining Cross-Image Semantics for Weakly Supervised Semantic Segmentation
http://arxiv.org/abs/2007.01947
AUTHORS: Guolei Sun ; Wenguan Wang ; Jifeng Dai ; Luc Van Gool
COMMENTS: Full version of ECCV2020 Oral, CVPR2020 LID workshop Best Paper and LID challenge Track1 winner; website: https://github.com/GuoleiSun/MCIS_wsss
HIGHLIGHT: This paper studies the problem of learning semantic segmentation from image-level supervision only.
22, TITLE: Multigrid for Bundle Adjustment
http://arxiv.org/abs/2007.01941
AUTHORS: Tristan Konolige ; Jed Brown
HIGHLIGHT: We present an unsmoothed aggregation multigrid preconditioner that accurately represents the global modes that underlie poor scaling of existing methods and demonstrate solves of up to 13 times faster than the state of the art on large, challenging problem sets.
23, TITLE: Feedback Neural Network based Super-resolution of DEM for generating high fidelity features
http://arxiv.org/abs/2007.01940
AUTHORS: Ashish Kubade ; Avinash Sharma ; K S Rajan
COMMENTS: Accepted for publication in IEEE IGARSS 2020 conference
HIGHLIGHT: Motivated from feedback neural networks, we propose a novel neural network architecture that learns to add high frequency details iteratively to low resolution DEM, turning it into a high resolution DEM without compromising its fidelity.
24, TITLE: A Weakly Supervised Consistency-based Learning Method for COVID-19 Segmentation in CT Images
http://arxiv.org/abs/2007.02180
AUTHORS: Issam Laradji ; Pau Rodriguez ; Oscar Manas ; Keegan Lensink ; Marco Law ; Lironne Kurzman ; William Parker ; David Vazquez ; Derek Nowrouzezahrai
HIGHLIGHT: We propose LOOC, a method to Localize Overlapping Objects with Count supervision.
25, TITLE: BézierSketch: A generative model for scalable vector sketches
http://arxiv.org/abs/2007.02190
AUTHORS: Ayan Das ; Yongxin Yang ; Timothy Hospedales ; Tao Xiang ; Yi-Zhe Song
COMMENTS: To be appeared in ECCV 2020
HIGHLIGHT: In this paper we present B\'ezierSketch, a novel generative model for fully vector sketches that are automatically scalable and high-resolution.
26, TITLE: Birds of a Feather Flock Together: Satirical News Detection via Language Model Differentiation
http://arxiv.org/abs/2007.02164
AUTHORS: Yigeng Zhang ; Fan Yang ; Yifan Zhang ; Eduard Dragut ; Arjun Mukherjee
COMMENTS: 10 pages
HIGHLIGHT: In this work, we propose a method that differentiates the satirical news and true news.
27, TITLE: Multi-Sensor Next-Best-View Planning as Matroid-Constrained Submodular Maximization
http://arxiv.org/abs/2007.02084
AUTHORS: Mikko Lauri ; Joni Pajarinen ; Jan Peters ; Simone Frintrop
COMMENTS: 8 pages, 7 figures. Accepted for publication in IEEE Robotics and Automation Letters
HIGHLIGHT: In this paper, we address next-best-view planning for multiple depth cameras.
28, TITLE: Local Grid Rendering Networks for 3D Object Detection in Point Clouds
http://arxiv.org/abs/2007.02099
AUTHORS: Jianan Li ; Jiashi Feng
HIGHLIGHT: In this work, we aim to improve performance of point-based models by enhancing their pattern learning ability through leveraging CNNs while preserving computational efficiency.
29, TITLE: Multi-Site Infant Brain Segmentation Algorithms: The iSeg-2019 Challenge
http://arxiv.org/abs/2007.02096
AUTHORS: Yue Sun ; Kun Gao ; Zhengwang Wu ; Zhihao Lei ; Ying Wei ; Jun Ma ; Xiaoping Yang ; Xue Feng ; Li Zhao ; Trung Le Phan ; Jitae Shin ; Tao Zhong ; Yu Zhang ; Lequan Yu ; Caizi Li ; Ramesh Basnet ; M. Omair Ahmad ; M. N. S. Swamy ; Wenao Ma ; Qi Dou ; Toan Duc Bui ; Camilo Bermudez Noguera ; Bennett Landman ; Ian H. Gotlib ; Kathryn L. Humphreys ; Sarah Shultz ; Longchuan Li ; Sijie Niu ; Weili Lin ; Valerie Jewells ; Gang Li ; Dinggang Shen ; Li Wang
HIGHLIGHT: To promote methodological development in the community, iSeg-2019 challenge (http://iseg2019.web.unc.edu) provides a set of 6-month infant subjects from multiple sites with different protocols/scanners for the participating methods.
30, TITLE: End-to-end Learning of a Fisher Vector Encoding for Part Features in Fine-grained Recognition
http://arxiv.org/abs/2007.02080
AUTHORS: Dimitri Korsch ; Paul Bodesheim ; Joachim Denzler
HIGHLIGHT: Therefore, we propose integrating a Fisher vector encoding of part features into convolutional neural networks.
31, TITLE: Customized Handling of Unintended Interface Operation in Assistive Robots
http://arxiv.org/abs/2007.02092
AUTHORS: Deepak Gopinath ; Mahdieh Nejati Javaremi ; Brenna D. Argall
COMMENTS: 12 pages, 8 figures, preprint
HIGHLIGHT: In this paper, we present an assistance system that reasons about a human's intended actions during robot teleoperation in order to provide appropriate corrections for unintended behavior.
32, TITLE: Novel-View Human Action Synthesis
http://arxiv.org/abs/2007.02808
AUTHORS: Mohamed Ilyes Lakhal ; Davide Boscaini ; Fabio Poiesi ; Oswald Lanz ; Andrea Cavallaro
HIGHLIGHT: Our approach uses a novel 3D reasoning to synthesize the target viewpoint.
33, TITLE: Efficient and accurate object detection with simultaneous classification and tracking
http://arxiv.org/abs/2007.02065
AUTHORS: Xuesong Li ; Jose Guivant
HIGHLIGHT: To satisfy both requirements, we propose a detection framework based on simultaneous classification and tracking in the point stream.
34, TITLE: Weight-dependent Gates for Network Pruning
http://arxiv.org/abs/2007.02066
AUTHORS: Yun Li ; Weiqun Wu ; Zechun Liu ; Chi Zhang ; Xiangyu Zhang ; Haotian Yao ; Baoqun Yin
COMMENTS: 15 pages, 5 figures
HIGHLIGHT: In this paper, we propose a simple and effective network pruning framework, which introduces novel weight-dependent gates (W-Gates) to prune filter adaptively.
35, TITLE: El Departamento de Nosotros: How Machine Translated Corpora Affects Language Models in MRC Tasks
http://arxiv.org/abs/2007.01955
AUTHORS: Maria Khvalchik ; Mikhail Galkin
HIGHLIGHT: In this work, we study the caveats of applying directly translated corpora for fine-tuning LMs for downstream natural language processing tasks and demonstrate that careful curation along with post-processing lead to improved performance and overall LMs robustness.
36, TITLE: Improving Weakly Supervised Visual Grounding by Contrastive Knowledge Distillation
http://arxiv.org/abs/2007.01951
AUTHORS: Liwei Wang ; Jing Huang ; Yin Li ; Kun Xu ; Zhengyuan Yang ; Dong Yu
HIGHLIGHT: To address this challenge, we leverage a generic object detector at training time, and propose a contrastive learning framework that accounts for both region-phrase and image-sentence matching.
37, TITLE: Registration of Histopathogy Images Using Structural Information From Fine Grained Feature Maps
http://arxiv.org/abs/2007.02078
AUTHORS: Dwarikanath Mahapatra
HIGHLIGHT: We propose a novel approach of combining segmentation information in a registration framework using self supervised segmentation feature maps extracted using a pre-trained segmentation network followed by clustering.
38, TITLE: Quo Vadis, Skeleton Action Recognition ?
http://arxiv.org/abs/2007.02072
AUTHORS: Pranay Gupta ; Anirudh Thatipelli ; Aditya Aggarwal ; Shubh Maheshwari ; Neel Trivedi ; Sourav Das ; Ravi Kiran Sarvadevabhatla
COMMENTS: Reference video : https://www.youtube.com/watch?v=YKjQcV_2gLU
HIGHLIGHT: In this paper, we study current and upcoming frontiers across the landscape of skeleton-based human action recognition.
39, TITLE: Human-Robot Team Coordination with Dynamic and Latent Human Task Proficiencies: Scheduling with Learning Curves
http://arxiv.org/abs/2007.01921
AUTHORS: Ruisen Liu Manisha Natarajan Matthew Gombolay
HIGHLIGHT: We introduce a novel resource coordination algorithm that enables robots to explore the relative strengths and learning abilities of their human teammates, by constructing schedules that are robust to stochastic and time-varying human task performance.
40, TITLE: Knowledge Distillation Beyond Model Compression
http://arxiv.org/abs/2007.01922
AUTHORS: Fahad Sarfraz ; Elahe Arani ; Bahram Zonooz
COMMENTS: Accepted at ICPR 2020
HIGHLIGHT: In this study, we provide an extensive study on nine different KD methods which covers a broad spectrum of approaches to capture and transfer knowledge.
41, TITLE: Proving Non-Inclusion of Büchi Automata based on Monte Carlo Sampling
http://arxiv.org/abs/2007.02282
AUTHORS: Yong Li ; Andrea Turrini ; Andrea Turrini ; Lijun Zhang
COMMENTS: Accepted to ATVA 2020
HIGHLIGHT: In this paper, we present $\mathsf{IMC}^2$, a specific algorithm for proving B\"uchi automata non-inclusion $\mathcal{L}(\mathcal{A}) \not\subseteq \mathcal{L}(\mathcal{B})$, based on Grosu and Smolka's algorithm $\mathsf{MC}^2$ developed for Monte Carlo model checking against LTL formulas.
42, TITLE: TilinGNN: Learning to Tile with Self-Supervised Graph Neural Network
http://arxiv.org/abs/2007.02278
AUTHORS: Hao Xu ; Ka Hei Hui ; Chi-Wing Fu ; Hao Zhang
COMMENTS: SIGGRAPH 2020, Technical paper. ACM Trans. Graph., Vol. 39, No. 4, Article 129. Homapage: https://appsrv.cse.cuhk.edu.hk/~haoxu/projects/TilinGnn/index.html
HIGHLIGHT: We introduce the first neural optimization framework to solve a classical instance of the tiling problem.
43, TITLE: Weakly Supervised Domain Adaptation for Built-up Region Segmentation in Aerial and Satellite Imagery
http://arxiv.org/abs/2007.02277
AUTHORS: Javed Iqbal ; Mohsen Ali
COMMENTS: Accepted at ISPRS Journal of Photogrammetry and Remote Sensing
HIGHLIGHT: This paper proposes a novel domain adaptation algorithm to handle the challenges posed by the satellite and aerial imagery, and demonstrates its effectiveness on the built-up region segmentation problem.
44, TITLE: Multi view stereo with semantic priors
http://arxiv.org/abs/2007.02295
AUTHORS: Elisavet Konstantina Stathopoulou ; Fabio Remondino
HIGHLIGHT: In this study, we aim to support the standard dense 3D reconstruction of scenes as implemented in the open source library OpenMVS by using semantic priors.
45, TITLE: Graph2Kernel Grid-LSTM: A Multi-Cued Model for Pedestrian Trajectory Prediction by Learning Adaptive Neighborhoods
http://arxiv.org/abs/2007.01915
AUTHORS: Sirin Haddad ; Siew Kei Lam
HIGHLIGHT: We present a new perspective to interaction modeling by proposing that pedestrian neighborhoods can become adaptive in design.
46, TITLE: Abstractive and mixed summarization for long-single documents
http://arxiv.org/abs/2007.01918
AUTHORS: Roger Barrull ; Jugal Kalita
HIGHLIGHT: In this work, six different models are compared, two with an RNN architecture, one with a CNN architecture, two with a Transformer architecture and one with a Transformer architecture combined with reinforcement learning.
47, TITLE: EmotionGIF-Yankee: A Sentiment Classifier with Robust Model Based Ensemble Methods
http://arxiv.org/abs/2007.02259
AUTHORS: Wei-Yao Wang ; Kai-Shiang Chang ; Yu-Chien Tang
COMMENTS: EmotionGIF 2020, the shared task of SocialNLP 2020
HIGHLIGHT: This paper provides a method to classify sentiment with robust model based ensemble methods.
48, TITLE: Automatically Generating Codes from Graphical Screenshots Based on Deep Autocoder
http://arxiv.org/abs/2007.02272
AUTHORS: Xiaoling Huang ; Feng Liao
HIGHLIGHT: To solve this problem, we propose PixCoder based on an artificially supervised attention mechanism.
49, TITLE: Rethinking Bottleneck Structure for Efficient Mobile Network Design
http://arxiv.org/abs/2007.02269
AUTHORS: Zhou Daquan ; Qibin Hou ; Yunpeng Chen ; Jiashi Feng ; Shuicheng Yan
COMMENTS: 24 pages, published as a ECCV20 conference paper
HIGHLIGHT: In this paper, we rethink the necessity of such design changes and find it may bring risks of information loss and gradient confusion.
50, TITLE: Image Aesthetics Prediction Using Multiple Patches Preserving the Original Aspect Ratio of Contents
http://arxiv.org/abs/2007.02268
AUTHORS: Lijie Wang ; Xueting Wang ; Toshihiko Yamasaki
HIGHLIGHT: We propose a multi-patch method, named MPA-Net (Multi-Patch Aggregation Network), to predict image aesthetics scores by maintaining the original aspect ratios of contents in the images.
51, TITLE: Deep Learning based Dimple Detection for Quantitative Fractography
http://arxiv.org/abs/2007.02267
AUTHORS: Ashish Sinha ; KS Suresh
COMMENTS: 7 pages, 8 figs
HIGHLIGHT: In this work, we try to address the challenging problem of dimple detection and segmentation in Titanium alloys using machine learning methods, especially neural networks.
52, TITLE: A Systematic Evaluation of Object Detection Networks for Scientific Plots
http://arxiv.org/abs/2007.02240
AUTHORS: Pritha Ganguly ; Nitesh Methani ; Mitesh M. Khapra ; Pratyush Kumar
HIGHLIGHT: Given this poor performance, we propose minor modifications to existing models by combining ideas from different object detection networks.
53, TITLE: News Sentiment Analysis
http://arxiv.org/abs/2007.02238
AUTHORS: Antony Samuels ; John Mcgonical
HIGHLIGHT: This paper presents a lexicon-based approach for sentiment analysis of news articles.
54, TITLE: Sentiment Analysis on Customer Responses
http://arxiv.org/abs/2007.02237
AUTHORS: Antony Samuels ; John Mcgonical
HIGHLIGHT: We present a customer feedback reviews on product, where we utilize opinion mining, text mining and sentiments, which has affected the surrounded world by changing their opinion on a specific product.
55, TITLE: Stereo Visual Inertial Pose Estimation Based on Feedforward-Feedback Loops
http://arxiv.org/abs/2007.02250
AUTHORS: Shengyang Chen ; Chih-Yung Wen ; Yajing Zou ; Wu Chen
COMMENTS: 14 pages, 14 figures, 2 tables
HIGHLIGHT: In this paper, we present a novel stereo visual inertial pose estimation method.
56, TITLE: Spatial-Angular Attention Network for Light Field Reconstruction
http://arxiv.org/abs/2007.02252
AUTHORS: Gaochang Wu ; Yebin Liu ; Lu Fang ; Tianyou Chai
COMMENTS: 12 pages, 10 figures and 5 tables
HIGHLIGHT: In this paper, we propose a spatial-angular attention network to perceive correspondences in the light field non-locally, and reconstruction high angular resolution light field in an end-to-end manner.
57, TITLE: Face Anti-Spoofing with Human Material Perception
http://arxiv.org/abs/2007.02157
AUTHORS: Zitong Yu ; Xiaobai Li ; Xuesong Niu ; Jingang Shi ; Guoying Zhao
COMMENTS: Accepted by ECCV2020
HIGHLIGHT: In this paper we rephrase face anti-spoofing as a material recognition problem and combine it with classical human material perception [1], intending to extract discriminative and robust features for FAS.
58, TITLE: Blind Inverse Gamma Correction with Maximized Differential Entropy
http://arxiv.org/abs/2007.02246
AUTHORS: Yong Lee ; Shaohua Zhang ; Miao Li ; Xiaoyu He
COMMENTS: 12 pages, 8 figures
HIGHLIGHT: For blind inverse gamma correction, an adaptive gamma transformation method (AGT-ME) is proposed directly from a maximized differential entropy model.
59, TITLE: Neuro-Symbolic Generative Art: A Preliminary Study
http://arxiv.org/abs/2007.02171
AUTHORS: Gunjan Aggarwal ; Devi Parikh
COMMENTS: Accepted as a short paper at ICCC 2020
HIGHLIGHT: In this work, we propose a new hybrid genre: neuro-symbolic generative art.
60, TITLE: Unsupervised Paraphrasing via Deep Reinforcement Learning
http://arxiv.org/abs/2007.02244
AUTHORS: A. B. Siddique ; Samet Oymak ; Vagelis Hristidis
HIGHLIGHT: We propose Progressive Unsupervised Paraphrasing (PUP): a novel unsupervised paraphrase generation method based on deep reinforcement learning (DRL).
61, TITLE: Sentiment Analysis on Social Media Content
http://arxiv.org/abs/2007.02144
AUTHORS: Antony Samuels ; John Mcgonicle
HIGHLIGHT: The aim of this paper is to present a model that can perform sentiment analysis of real data collected from Twitter.
62, TITLE: On Class Orderings for Incremental Learning
http://arxiv.org/abs/2007.02145
AUTHORS: Marc Masana ; Bartłomiej Twardowski ; Joost van de Weijer
COMMENTS: Accepted at CL-ICML 2020. First two authors contributed equally
HIGHLIGHT: In this paper, we investigate the impact of class orderings for incrementally learned classifiers.
63, TITLE: An Integer Approximation Method for Discrete Sinusoidal Transforms
http://arxiv.org/abs/2007.02232
AUTHORS: R. J. Cintra
COMMENTS: 13 pages, 5 figures, 8 tables
HIGHLIGHT: In this work, we propose and analyze a class of integer transforms for the discrete Fourier, Hartley, and cosine transforms (DFT, DHT, and DCT), based on simple dyadic rational approximation methods.
64, TITLE: Human Assisted Artificial Intelligence Based Technique to Create Natural Features for OpenStreetMap
http://arxiv.org/abs/2007.02149
AUTHORS: Piyush Yadav ; Dipto Sarkar Shailesh Deshpande ; Edward Curry
COMMENTS: 3 pages, 2 Figures, Submitted to FOSS4G Europe 2020 Academic Track (Postponed to 2021)
HIGHLIGHT: In this work, we propose an AI-based technique using freely available satellite images like Landsat and Sentinel to create natural features over OSM in congruence with human editors acting as initiators and validators.
65, TITLE: Reflection-based Word Attribute Transfer
http://arxiv.org/abs/2007.02598
AUTHORS: Yoichi Ishibashi ; Katsuhito Sudoh ; Koichiro Yoshino ; Satoshi Nakamura
COMMENTS: Accepted at ACL 2020 Student Research Workshop (SRW)
HIGHLIGHT: In this work, we propose a novel method for word attribute transfer based on reflection mappings without such an analogy operation.
66, TITLE: A Novel Multi-Step Finite-State Automaton for Arbitrarily Deterministic Tsetlin Machine Learning
http://arxiv.org/abs/2007.02114
AUTHORS: K. Darshana Abeyrathna ; Ole-Christoffer Granmo ; Rishad Shafik ; Alex Yakovlev ; Adrian Wheeldon ; Jie Lei ; Morten Goodwin
COMMENTS: 10 pages, 8 figures, 7 tables
HIGHLIGHT: In this paper, we propose a novel finite-state learning automaton that can replace the Tsetlin Automata in TM learning, for increased determinism.
67, TITLE: Playing Chess with Limited Look Ahead
http://arxiv.org/abs/2007.02130
AUTHORS: Arman Maesumi
COMMENTS: 11 pages, 7 figures
HIGHLIGHT: We have seen numerous machine learning methods tackle the game of chess over the years.
68, TITLE: A Case for Lifetime Reliability-Aware Neuromorphic Computing
http://arxiv.org/abs/2007.02210
AUTHORS: Shihao Song ; Anup Das
COMMENTS: 4 pages, 6 figures, accepted at MWCAS 2020
HIGHLIGHT: In this work, we evaluate the long-term, i.e., lifetime reliability impact of executing state-of-the-art machine learning tasks on a neuromorphic hardware, considering failure models such as negative bias temperature instability (NBTI) and time-dependent dielectric breakdown (TDDB).
69, TITLE: On Connections between Regularizations for Improving DNN Robustness
http://arxiv.org/abs/2007.02209
AUTHORS: Yiwen Guo ; Long Chen ; Yurong Chen ; Changshui Zhang
COMMENTS: Accepted by TPAMI
HIGHLIGHT: This paper analyzes regularization terms proposed recently for improving the adversarial robustness of deep neural networks (DNNs), from a theoretical point of view.
70, TITLE: Deep Graph Random Process for Relational-Thinking-Based Speech Recognition
http://arxiv.org/abs/2007.02126
AUTHORS: Hengguan Huang ; Fuzhao Xue ; Hao Wang ; Ye Wang
COMMENTS: Accepted at ICML 2020
HIGHLIGHT: In this paper, we present a Bayesian nonparametric deep learning method called deep graph random process (DGP) that can generate an infinite number of probabilistic graphs representing percepts.
71, TITLE: A Modern Non-SQL Approach to Radiology-Centric Search Engine Design with Clinical Validation
http://arxiv.org/abs/2007.02124
AUTHORS: Ningcheng Li ; Guy Maresh ; Maxwell Cretcher ; Khashayar Farsad ; Ramsey Al-Hakim ; John Kaufman ; Judy Gichoya
HIGHLIGHT: We present a de novo process of developing a document-based, secure, efficient, and accurate search engine in the context of Radiology.
72, TITLE: Meta-Learning through Hebbian Plasticity in Random Networks
http://arxiv.org/abs/2007.02686
AUTHORS: Elias Najarro ; Sebastian Risi
HIGHLIGHT: Inspired by this biological mechanism, we propose a search method that, instead of optimizing the weight parameters of neural networks directly, only searches for synapse-specific Hebbian learning rules that allow the network to continuously self-organize its weights during the lifetime of the agent.
73, TITLE: On the Influence of Ageing on Face Morph Attacks: Vulnerability and Detection
http://arxiv.org/abs/2007.02684
AUTHORS: Sushma Venkatesh ; Kiran Raja ; Raghavendra Ramachandra ; Christoph Busch
COMMENTS: Accepted in IJCB 2020
HIGHLIGHT: In this paper, we report a systematic investigation on the vulnerability of the Commercial-Off-The-Shelf (COTS) FRS when morphed images under the influence of ageing are presented. To this extent, we have introduced a new morphed face dataset with ageing derived from the publicly available MORPH II face dataset, which we refer to as MorphAge dataset.
74, TITLE: Offline versus Online Triplet Mining based on Extreme Distances of Histopathology Patches
http://arxiv.org/abs/2007.02200
AUTHORS: Milad Sikaroudi ; Benyamin Ghojogh ; Amir Safarpoor ; Fakhri Karray ; Mark Crowley ; H. R. Tizhoosh
COMMENTS: The first two authors contributed equally to this work
HIGHLIGHT: We analyze the effect of offline and online triplet mining for colorectal cancer (CRC) histopathology dataset containing 100,000 patches.
75, TITLE: Bilingual Dictionary Based Neural Machine Translation without Using Parallel Sentences
http://arxiv.org/abs/2007.02671
AUTHORS: Xiangyu Duan ; Baijun Ji ; Hao Jia ; Min Tan ; Min Zhang ; Boxing Chen ; Weihua Luo ; Yue Zhang
COMMENTS: Accepted by ACL2020
HIGHLIGHT: In this paper, we propose a new task of machine translation (MT), which is based on no parallel sentences but can refer to a ground-truth bilingual dictionary.
76, TITLE: Speckle2Void: Deep Self-Supervised SAR Despeckling with Blind-Spot Convolutional Neural Networks
http://arxiv.org/abs/2007.02075
AUTHORS: Andrea Bordone Molini ; Diego Valsesia ; Giulia Fracastoro ; Enrico Magli
HIGHLIGHT: In this paper, inspired by recent works on blind-spot denoising networks, we propose a self-supervised Bayesian despeckling method.
77, TITLE: A Broad-Coverage Deep Semantic Lexicon for Verbs
http://arxiv.org/abs/2007.02670
AUTHORS: James Allen ; Hannah An ; Ritwik Bose ; Will de Beaumont ; Choh Man Teng
COMMENTS: Draft of LREC-2020 paper. Proceedings of The 12th Language Resources and Evaluation Conference. 2020
HIGHLIGHT: We have developed COLLIE-V, a deep lexical resource for verbs, with the coverage of WordNet and syntactic and semantic details that meet or exceed existing resources.
78, TITLE: Jointly Modeling Motion and Appearance Cues for Robust RGB-T Tracking
http://arxiv.org/abs/2007.02041
AUTHORS: Pengyu Zhang ; Jie Zhao ; Dong Wang ; Huchuan Lu ; Xiaoyun Yang
COMMENTS: 12 pages, 11 figures
HIGHLIGHT: In this study, we propose a novel RGB-T tracking framework by jointly modeling both appearance and motion cues.
79, TITLE: Single Image Brightening via Multi-Scale Exposure Fusion with Hybrid Learning
http://arxiv.org/abs/2007.02042
AUTHORS: Chaobing Zheng ; Zhengguo Li ; Yi Yang ; Shiqian Wu
COMMENTS: 11 pages
HIGHLIGHT: In this paper, a single image brightening algorithm is introduced to brighten such an image.
80, TITLE: An Elastic Interaction-Based Loss Function for Medical Image Segmentation
http://arxiv.org/abs/2007.02663
AUTHORS: Yuan Lan ; Yang Xiang ; Luchan Zhang
HIGHLIGHT: Deep learning techniques have shown their success in medical image segmentation since they are easy to manipulate and robust to various types of datasets.
81, TITLE: Toward unsupervised, multi-object discovery in large-scale image collections
http://arxiv.org/abs/2007.02662
AUTHORS: Huy V. Vo ; Patrick Pérez ; Jean Ponce
COMMENTS: Accepted for publication in ECCV 2020
HIGHLIGHT: We build on the optimization approach of Vo {\em et al.}~\cite{Vo2019UnsupOptim} with several key novelties: (1) We propose a novel saliency-based region proposal algorithm that achieves significantly higher overlap with ground-truth objects than other competitive methods.
82, TITLE: Self-Calibration Supported Robust Projective Structure-from-Motion
http://arxiv.org/abs/2007.02045
AUTHORS: Rui Gong ; Danda Pani Paudel ; Ajad Chhatkuli ; Luc Van Gool
COMMENTS: 21 pages, 5 figures, 2 tables
HIGHLIGHT: In this paper, we propose a unified SfM method, in which the matching process is supported by self-calibration constraints.
83, TITLE: Discount Factor as a Regularizer in Reinforcement Learning
http://arxiv.org/abs/2007.02040
AUTHORS: Ron Amit ; Ron Meir ; Kamil Ciosek
COMMENTS: Published in ICML 2020
HIGHLIGHT: In this work, we fill in this gap.
84, TITLE: Separating Positive and Negative Data Examples by Concepts and Formulas: The Case of Restricted Signatures
http://arxiv.org/abs/2007.02669
AUTHORS: Jean Christoph Jung ; Carsten Lutz ; Hadrien Pulcini ; Frank Wolter
COMMENTS: 35 pages
HIGHLIGHT: We study the separation of positive and negative data examples in terms of description logic (DL) concepts and formulas of decidable FO fragments, in the presence of an ontology.
85, TITLE: Modality Shifting Attention Network for Multi-modal Video Question Answering
http://arxiv.org/abs/2007.02036
AUTHORS: Junyeong Kim ; Minuk Ma ; Trung Pham ; Kyungsu Kim ; Chang D. Yoo
COMMENTS: CVPR2020 accepted; poster
HIGHLIGHT: This paper considers a network referred to as Modality Shifting Attention Network (MSAN) for Multimodal Video Question Answering (MVQA) task.
86, TITLE: Low Rank Fusion based Transformers for Multimodal Sequences
http://arxiv.org/abs/2007.02038
AUTHORS: Saurav Sahay ; Eda Okur ; Shachi H Kumar ; Lama Nachman
COMMENTS: ACL 2020 workshop on Second Grand Challenge and Workshop on Multimodal Language
HIGHLIGHT: In this work, we experiment with modeling modality-specific sensory signals to attend to our latent multimodal emotional intentions and vice versa expressed via low-rank multimodal fusion and multimodal transformers.
87, TITLE: Shape-aware Meta-learning for Generalizing Prostate MRI Segmentation to Unseen Domains
http://arxiv.org/abs/2007.02035
AUTHORS: Quande Liu ; Qi Dou ; Pheng-Ann Heng
COMMENTS: Early accepted by MICCAI 2020; code and dataset are available at https://github.com/liuquande/SAML
HIGHLIGHT: We present a novel shape-aware meta-learning scheme to improve the model generalization in prostate MRI segmentation.
88, TITLE: Inference Stage Optimization for Cross-scenario 3D Human Pose Estimation
http://arxiv.org/abs/2007.02054
AUTHORS: Jianfeng Zhang ; Xuecheng Nie ; Jiashi Feng
HIGHLIGHT: In this work, we propose a novel framework, Inference Stage Optimization (ISO), for improving the generalizability of 3D pose models when source and target data come from different pose distributions.
89, TITLE: Lazy Greedy Hypervolume Subset Selection from Large Candidate Solution Sets
http://arxiv.org/abs/2007.02050
AUTHORS: Weiyu Chen ; Hisao Ishibuhci ; Ke Shang
COMMENTS: Accepted by CEC 2020
HIGHLIGHT: In this paper, we propose a new lazy greedy algorithm exploiting the submodular property of the hypervolume indicator.
90, TITLE: Relationship between manifold smoothness and adversarial vulnerability in deep learning with local errors
http://arxiv.org/abs/2007.02047
AUTHORS: Zijian Jiang ; Jianwen Zhou ; Haiping Huang
COMMENTS: 10 pages, 8 figures, comments are welcome
HIGHLIGHT: Here, we establish a fundamental relationship between geometry of hidden representations (manifold perspective) and the generalization capability of the deep networks.
91, TITLE: Deep Bilateral Retinex for Low-Light Image Enhancement
http://arxiv.org/abs/2007.02018
AUTHORS: Jinxiu Liang ; Yong Xu ; Yuhui Quan ; Jingwen Wang ; Haibin Ling ; Hui Ji
COMMENTS: 15 pages
HIGHLIGHT: Based on the Retinex decomposition of natural images, this paper proposes a deep learning method for low-light image enhancement with a particular focus on handling the measurement noise.
92, TITLE: Text Data Augmentation: Towards better detection of spear-phishing emails
http://arxiv.org/abs/2007.02033
AUTHORS: Mehdi Regina ; Maxime Meyer ; Sébastien Goutal
HIGHLIGHT: Motivated by a business application of Business Email Compromise (BEC) detection, we propose a corpus and task agnostic text augmentation framework combining different methods, utilizing BERT language model, multi-step back-translation and heuristics.
93, TITLE: FracBits: Mixed Precision Quantization via Fractional Bit-Widths
http://arxiv.org/abs/2007.02017
AUTHORS: Linjie Yang ; Qing Jin
HIGHLIGHT: We propose a novel learning-based algorithm to derive mixed precision models end-to-end under target computation constraints and model sizes.
94, TITLE: Alpha-Refine: Boosting Tracking Performance by Precise Bounding Box Estimation
http://arxiv.org/abs/2007.02024
AUTHORS: Bin Yan ; Dong Wang ; Huchuan Lu ; Xiaoyun Yang
HIGHLIGHT: In this work, we propose a novel, flexible and accurate refinement module called Alpha-Refine, which exploits a precise pixel-wise correlation layer together with a spatial-aware non-local layer to fuse features and can predict three complementary outputs: bounding box, corners and mask.
95, TITLE: Robust Prediction of Punctuation and Truecasingfor Medical ASR
http://arxiv.org/abs/2007.02025
AUTHORS: Monica Sunkara ; Srikanth Ronanki ; Kalpit Dixit ; Sravan Bodapati ; Katrin Kirchhoff
COMMENTS: Accepted for ACL NLPMC workshop 2020
HIGHLIGHT: This paper proposes a conditional joint modeling framework for prediction of punctuation and truecasing using pretrained masked language models such as BERT, BioBERT and RoBERTa.
96, TITLE: DRDr: Automatic Masking of Exudates and Microaneurysms Caused By Diabetic Retinopathy Using Mask R-CNN and Transfer Learning
http://arxiv.org/abs/2007.02026
AUTHORS: Farzan Shenavarmasouleh ; Hamid R. Arabnia
COMMENTS: The 6th International Conference on Health Informatics & Medical Systems (HIMS'20: July 27-30, 2020, USA)
HIGHLIGHT: This paper addresses the problem of identifying two main types of lesions - Exudates and Microaneurysms - caused by Diabetic Retinopathy (DR) in the eyes of diabetic patients. We create our normalized database out of e-ophtha EX and e-ophtha MA and tweak Mask R-CNN to detect small lesions.
97, TITLE: Automatic semantic segmentation for prediction of tuberculosis using lens-free microscopy images
http://arxiv.org/abs/2007.02482
AUTHORS: Dennis Núñez-Fernández ; Lamberto Ballan ; Gabriel Jiménez-Avalos ; Jorge Coronel ; Mirko Zimic
COMMENTS: ML for Global Health Workshop at ICML 2020
HIGHLIGHT: Thus, we employ a U-Net network in our collected dataset to perform the automatic segmentation of the TB cords in order to predict tuberculosis.
98, TITLE: Logic, Language, and Calculus
http://arxiv.org/abs/2007.02484
AUTHORS: Florian Richter
HIGHLIGHT: In this paper the difference is examined with regard to inferential relations.
99, TITLE: Simplicial Complex based Point Correspondence between Images warped onto Manifolds
http://arxiv.org/abs/2007.02381
AUTHORS: Charu Sharma ; Manohar Kaul
COMMENTS: Accepted at ECCV 2020
HIGHLIGHT: In this paper, we pose the assignment problem as finding a bijective map between two graph induced simplicial complexes, which are higher-order analogues of graphs. We propose a constrained quadratic assignment problem (QAP) that matches each p-skeleton of the simplicial complexes, iterating from the highest to the lowest dimension.
100, TITLE: Decentralized Reinforcement Learning: Global Decision-Making via Local Economic Transactions
http://arxiv.org/abs/2007.02382
AUTHORS: Michael Chang ; Sidhant Kaushik ; S. Matthew Weinberg ; Thomas L. Griffiths ; Sergey Levine
COMMENTS: 17 pages, 12 figures, accepted to the International Conference on Machine Learning (ICML) 2020
HIGHLIGHT: This paper seeks to establish a framework for directing a society of simple, specialized, self-interested agents to solve what traditionally are posed as monolithic single-agent sequential decision problems.
101, TITLE: CIDMP: Completely Interpretable Detection of Malaria Parasite in Red Blood Cells using Lower-dimensional Feature Space
http://arxiv.org/abs/2007.02248
AUTHORS: Anik Khan ; Kishor Datta Gupta ; Deepak Venugopal ; Nirman Kumar
COMMENTS: Accepted in The 2020 International Joint Conference on Neural Networks (IJCNN 2020) At Glasgow (UK)
HIGHLIGHT: To address these issues, in this paper, we propose an approach to extract a very small number of aggregated features that are easy to interpret and compute, and empirically show that we obtain high prediction accuracy even with a significantly reduced feature-space.
102, TITLE: CORD19STS: COVID-19 Semantic Textual Similarity Dataset
http://arxiv.org/abs/2007.02461
AUTHORS: Xiao Guo ; Hengameh Mirzaalian ; Ekraam Sabir ; Aysush Jaiswal ; Wael Abd-Almageed
HIGHLIGHT: To overcome this gap, we introduce CORD19STS dataset which includes 13,710 annotated sentence pairs collected from COVID-19 open research dataset (CORD-19) challenge.
103, TITLE: MetaConcept: Learn to Abstract via Concept Graph for Weakly-Supervised Few-Shot Learning
http://arxiv.org/abs/2007.02379
AUTHORS: Baoquan Zhang ; Ka-Cheong Leung ; Yunming Ye ; Xutao Li
COMMENTS: 17 pages, 7 figures
HIGHLIGHT: To this end, we propose a novel meta-learning framework, called MetaConcept, which learns to abstract concepts via the concept graph.
104, TITLE: Self-Challenging Improves Cross-Domain Generalization
http://arxiv.org/abs/2007.02454
AUTHORS: Zeyi Huang ; Haohan Wang ; Eric P. Xing ; Dong Huang
COMMENTS: to appear at ECCV2020 as an oral paper
HIGHLIGHT: We introduce a simple training heuristic, Representation Self-Challenging (RSC), that significantly improves the generalization of CNN to the out-of-domain data.
105, TITLE: Using Capsule Neural Network to predict Tuberculosis in lens-free microscopic images
http://arxiv.org/abs/2007.02457
AUTHORS: Dennis Núñez-Fernández ; Lamberto Ballan ; Gabriel Jiménez-Avalos ; Jorge Coronel ; Mirko Zimic
COMMENTS: HSYS Workshop at ICML 2020
HIGHLIGHT: This work seeks to facilitate and automate the prediction of tuberculosis by the MODS method and using lens-free microscopy, which is easy to use by untrained personnel.
106, TITLE: Meta-Semi: A Meta-learning Approach for Semi-supervised Learning
http://arxiv.org/abs/2007.02394
AUTHORS: Yulin Wang ; Jiayi Guo ; Shiji Song ; Gao Huang
HIGHLIGHT: In this paper, we propose a novel meta-learning based SSL algorithm (Meta-Semi) that requires tuning only one additional hyper-parameter, compared with a standard supervised deep learning algorithm, to achieve competitive performance under various conditions of SSL.
107, TITLE: Deep Convolutional Neural Network for Identifying Seam-Carving Forgery
http://arxiv.org/abs/2007.02393
AUTHORS: Seung-Hun Nam ; Wonhyuk Ahn ; In-Jae Yu ; Myung-Joon Kwon ; Minseok Son ; Heung-Kyu Lee
HIGHLIGHT: In this paper, we propose a convolutional neural network (CNN)-based approach to classifying seam-carving-based image retargeting for reduction and expansion.
108, TITLE: A modified axiomatic foundation of the analytic hierarchy process
http://arxiv.org/abs/2007.02472
AUTHORS: Fang Liu ; Wei-Guo Zhang
COMMENTS: 28 pages; 3 figures; submitted to a journal
HIGHLIGHT: This paper reports a modified axiomatic foundation of the analytic hierarchy process (AHP), where the reciprocal property of paired comparisons is broken.
109, TITLE: Can Un-trained Neural Networks Compete with Trained Neural Networks at Image Reconstruction?
http://arxiv.org/abs/2007.02471
AUTHORS: Mohammad Zalbagi Darestani ; Reinhard Heckel
HIGHLIGHT: To address this question, we consider accelerated magnetic resonance imaging (MRI), an important medical imaging problem, which has received significant attention from the deep-learning community, and for which a dedicated training set exists.
110, TITLE: Aligning Partially Overlapping Point Sets: an Inner Approximation Algorithm
http://arxiv.org/abs/2007.02363
AUTHORS: Wei Lian ; WangMeng Zuo ; Lei Zhang
HIGHLIGHT: To cope with this issue, we employ the inner approximation optimization algorithm which only operates within the region where the objective function is concave.
111, TITLE: Learning Color Compatibility in Fashion Outfits
http://arxiv.org/abs/2007.02388
AUTHORS: Heming Zhang ; Xuewen Yang ; Jianchao Tan ; Chi-Hao Wu ; Jue Wang ; C. -C. Jay Kuo
HIGHLIGHT: Specifically, we model the outfits as graphs and propose a novel graph construction to better utilize the power of graph neural networks.
112, TITLE: HoughNet: Integrating near and long-range evidence for bottom-up object detection
http://arxiv.org/abs/2007.02355
AUTHORS: Nermin Samet ; Samet Hicsonmez ; Emre Akbas
COMMENTS: to appear in ECCV 2020
HIGHLIGHT: This paper presents HoughNet, a one-stage, anchor-free, voting-based, bottom-up object detection method.
113, TITLE: Self-supervised Depth Estimation to Regularise Semantic Segmentation in Knee Arthroscopy
http://arxiv.org/abs/2007.02361
AUTHORS: Fengbei Liu ; Yaqub Jonmohamadi ; Gabriel Maicas ; Ajay K. Pandey ; Gustavo Carneiro
COMMENTS: 10 pages, 6 figures
HIGHLIGHT: In this paper, we propose a novel self-supervised monocular depth estimation to regularise the training of the semantic segmentation in knee arthroscopy.
114, TITLE: Estimation of Ground Contacts from Human Gait by a Wearable Inertial Measurement Unit using machine learning
http://arxiv.org/abs/2007.02433
AUTHORS: Muhammad Junaid Umer ; Qaiser Riaz
HIGHLIGHT: This article addresses the estimation and classification of right and left foot during the healthy human gait based on the IMU sensor data of chest and lower back. For this purpose we have collected an IMU data of 48 subjects by using two smartphones at chest and lower back of the human body and one smart watch at right ankle of the body.
115, TITLE: A stochastic calculus approach to the oracle separation of BQP and PH
http://arxiv.org/abs/2007.02431
AUTHORS: Xinyu Wu
COMMENTS: 6 pages
HIGHLIGHT: In this short note, we describe such a simplification.
116, TITLE: GanglionNet: Objectively Assess the Density and Distribution of Ganglion Cells With NABLA-N Network
http://arxiv.org/abs/2007.02367
AUTHORS: Md Zahangir Alom ; Raj P. Kapur ; TJ Browen ; Vijayan K. Asari
COMMENTS: 8 pages, 8 figures, 2 Tables
HIGHLIGHT: We present an automated method to detect and count immunostained ganglion cells using a new NABLA_N network based deep learning (DL) approach, called GanglionNet.
117, TITLE: Detail Preserved Point Cloud Completion via Separated Feature Aggregation
http://arxiv.org/abs/2007.02374
AUTHORS: Wenxiao Zhang ; Qingan Yan ; Chunxia Xiao
COMMENTS: To be appeared in ECCV 2020
HIGHLIGHT: In this work, instead of using a global feature to recover the whole complete surface, we explore the functionality of multi-level features and aggregate different features to represent the known part and the missing part separately.
118, TITLE: Exploratory Analysis of COVID-19 Related Tweets in North America to Inform Public Health Institutes
http://arxiv.org/abs/2007.02452
AUTHORS: Hyeju Jang ; Emily Rempel ; Giuseppe Carenini ; Naveed Janjua
HIGHLIGHT: In this paper, we aim to investigate people's reactions and concerns about COVID-19 in North America, especially focusing on Canada.
119, TITLE: Auto-captions on GIF: A Large-scale Video-sentence Dataset for Vision-language Pre-training
http://arxiv.org/abs/2007.02375
AUTHORS: Yingwei Pan ; Yehao Li ; Jianjie Luo ; Jun Xu ; Ting Yao ; Tao Mei
COMMENTS: The Auto-captions on GIF dataset is available at \url{http://www.auto-video-captions.top/2020/dataset}
HIGHLIGHT: In this work, we present Auto-captions on GIF, which is a new large-scale pre-training dataset for generic video understanding.
120, TITLE: Complexity of the Multilevel Critical Node Problem
http://arxiv.org/abs/2007.02370
AUTHORS: Adel Nabli ; Margarida Carvalho ; Pierre Hosteins
HIGHLIGHT: In this work, we analyze a sequential game played in a graph called the Multilevel Critical Node problem (MCN).
121, TITLE: Pynsett: A programmable relation extractor
http://arxiv.org/abs/2007.02100
AUTHORS: Alberto Cetoli
COMMENTS: Working paper
HIGHLIGHT: This paper proposes a programmable relation extraction method for the English language by parsing texts into semantic graphs.
122, TITLE: Pseudo-Rehearsal for Continual Learning with Normalizing Flows
http://arxiv.org/abs/2007.02443
AUTHORS: Jary Pomponi ; Simone Scardapane ; Aurelio Uncini
HIGHLIGHT: In this paper, we propose a novel method that combines the strengths of regularization and generative-based rehearsal approaches.
123, TITLE: GRAF: Generative Radiance Fields for 3D-Aware Image Synthesis
http://arxiv.org/abs/2007.02442
AUTHORS: Katja Schwarz ; Yiyi Liao ; Michael Niemeyer ; Andreas Geiger
HIGHLIGHT: In this paper, we propose a generative model for radiance fields which have recently proven successful for novel view synthesis of a single scene.
124, TITLE: Anatomical Data Augmentation via Fluid-based Image Registration
http://arxiv.org/abs/2007.02447
AUTHORS: Zhengyang Shen ; Zhenlin Xu ; Sahin Olut ; Marc Niethammer
COMMENTS: MICCAI 2020
HIGHLIGHT: We introduce a fluid-based image augmentation method for medical image analysis.
125, TITLE: Starfish: A Prototype for Universal Preprocessing and Text-Embedded Programming
http://arxiv.org/abs/2007.02366
AUTHORS: Vlado Keselj
COMMENTS: 16 pages
HIGHLIGHT: This paper presents this area of research and related work in a more unified framework, and we describe the implemented system Starfish that satisfies the following novel principles of PTEP: universality, update and replace modes, flexiblity, configurability, and transparency.
126, TITLE: Attention-based Joint Detection of Object and Semantic Part
http://arxiv.org/abs/2007.02419
AUTHORS: Keval Morabia ; Jatin Arora ; Tara Vijaykumar
HIGHLIGHT: In this paper, we address the problem of joint detection of objects like dog and its semantic parts like face, leg, etc.
127, TITLE: Selective Dyna-style Planning Under Limited Model Capacity
http://arxiv.org/abs/2007.02418
AUTHORS: Muhammad Zaheer ; Samuel Sokota ; Erin J. Talvitie ; Martha White
COMMENTS: Accepted at ICML 2020
HIGHLIGHT: In this paper, we investigate the idea of using an imperfect model selectively.
128, TITLE: Coronary Heart Disease Diagnosis Based on Improved Ensemble Learning
http://arxiv.org/abs/2007.02895
AUTHORS: Kuntoro Adi Nugroho ; Noor Akhmad Setiawan ; Teguh Bharata Adji
HIGHLIGHT: The objective of this study is to develop heart disease diagnosis method based on ensemble learning and cascade generalization.
129, TITLE: Partial Order Resolution of Event Logs for Process Conformance Checking
http://arxiv.org/abs/2007.02416
AUTHORS: Han van der Aa ; Henrik Leopold ; Matthias Weidlich
COMMENTS: Accepted for publication in Decision Support Systems
HIGHLIGHT: In this paper, we put forward the problem of partial order resolution of event logs to close this gap.
130, TITLE: Improving Chinese Segmentation-free Word Embedding With Unsupervised Association Measure
http://arxiv.org/abs/2007.02342
AUTHORS: Yifan Zhang ; Maohua Wang ; Yongjian Huang ; Qianrong Gu
COMMENTS: 9pages, 4figures
HIGHLIGHT: Recent work on segmentation-free word embedding(sembei) developed a new pipeline of word embedding for unsegmentated language while avoiding segmentation as a preprocessing step.
131, TITLE: Mission schedule of agile satellites based on Proximal Policy Optimization Algorithm
http://arxiv.org/abs/2007.02352
AUTHORS: Xinrui Liu
HIGHLIGHT: In this paper, a mission schedule model combined with Proximal Policy Optimization Algorithm(PPO) is proposed.
132, TITLE: Reflection Backdoor: A Natural Backdoor Attack on Deep Neural Networks
http://arxiv.org/abs/2007.02343
AUTHORS: Yunfei Liu ; Xingjun Ma ; James Bailey ; Feng Lu
COMMENTS: Accepted by ECCV-2020
HIGHLIGHT: In this paper, we present a new type of backdoor attack inspired by an important natural phenomenon: reflection.
133, TITLE: Gradient Origin Networks
http://arxiv.org/abs/2007.02798
AUTHORS: Sam Bond-Taylor ; Chris G. Willcocks
COMMENTS: 5 pages, 7 figures
HIGHLIGHT: This paper proposes a new type of implicit generative model that is able to quickly learn a latent representation without an explicit encoder.
134, TITLE: Universal codes in the shared-randomness model for channels with general distortion capabilities
http://arxiv.org/abs/2007.02330
AUTHORS: Bruno Bauwens ; Marius Zimand
HIGHLIGHT: In its standard form, the channel coding problem asks for an encoding function mapping messages to codewords that makes communication over the given channel resilient to a given noise level.
135, TITLE: Adversarial Uni- and Multi-modal Stream Networks for Multimodal Image Registration
http://arxiv.org/abs/2007.02790
AUTHORS: Zhe Xu ; Jie Luo ; Jiangpeng Yan ; Ritvik Pulya ; Xiu Li ; William Wells III ; Jayender Jagadeesan
COMMENTS: accepted by MICCAI 2020
HIGHLIGHT: In this paper, we propose a novel translation-based unsupervised deformable image registration method.
136, TITLE: Radial Intersection Count Image: a Clutter Resistant 3D Shape Descriptor
http://arxiv.org/abs/2007.02306
AUTHORS: Bart Iver van Blokland ; Theoharis Theoharis
COMMENTS: 18 pages, 16 figures, to be published in Computers & Graphics
HIGHLIGHT: For efficient RICI construction, novel algorithms of general interest were developed.
137, TITLE: DessiLBI: Exploring Structural Sparsity of Deep Networks via Differential Inclusion Paths
http://arxiv.org/abs/2007.02010
AUTHORS: Yanwei Fu ; Chen Liu ; Donghao Li ; Xinwei Sun ; Jinshan Zeng ; Yuan Yao
COMMENTS: conference , 23 pages https://github.com/corwinliu9669/dS2LBI
HIGHLIGHT: In this paper, instead of pruning or distilling over-parameterized models to compressive ones, we propose a new approach based on differential inclusions of inverse scale spaces.
138, TITLE: EagleEye: Fast Sub-net Evaluation for Efficient Neural Network Pruning
http://arxiv.org/abs/2007.02491
AUTHORS: Bailin Li ; Bowen Wu ; Jiang Su ; Guangrun Wang ; Liang Lin
COMMENTS: Accepted in ECCV 2020(Oral). Codes are available on https://github.com/anonymous47823493/EagleEye
HIGHLIGHT: In this work, we present a pruning method called EagleEye, in which a simple yet efficient evaluation component based on adaptive batch normalization is applied to unveil a strong correlation between different pruned DNN structures and their final settled accuracy.
139, TITLE: Inferences and Modal Vocabulary
http://arxiv.org/abs/2007.02487
AUTHORS: Florian Richter
HIGHLIGHT: I propose a modal interpretation of implications to express conceptual relations.
140, TITLE: Space of Reasons and Mathematical Model
http://arxiv.org/abs/2007.02489
AUTHORS: Florian Richter
HIGHLIGHT: The conceptual background of representation in models is discussed and in the end I propose how implications of propositional logic and conceptual determinations can be represented in a model of a neural network.
141, TITLE: Probabilistic Multi-modal Trajectory Prediction with Lane Attention for Autonomous Vehicles
http://arxiv.org/abs/2007.02574
AUTHORS: Chenxu Luo ; Lin Sun ; Dariush Dabiri ; Alan Yuille
COMMENTS: IROS 2020. 3rd place solution for the Argoverse motion forecasting challenge at NeurIPS 2019. A variation of the method also won the 1st place in the Nuscenes prediction challenge 2020
HIGHLIGHT: In this paper, we propose a novel instance-aware representation for lane representation.
142, TITLE: Progressive Cluster Purification for Unsupervised Feature Learning
http://arxiv.org/abs/2007.02577
AUTHORS: Yifei Zhang ; Chang Liu ; Yu Zhou ; Wei Wang ; Weiping Wang ; Qixiang Ye
COMMENTS: 8 pages, 5 figures
HIGHLIGHT: In this work, we propose a novel clustering based method, which, by iteratively excluding class inconsistent samples during progressive cluster formation, alleviates the impact of noise samples in a simple-yet-effective manner.
143, TITLE: Learning Graph-Convolutional Representations for Point Cloud Denoising
http://arxiv.org/abs/2007.02578
AUTHORS: Francesca Pistilli ; Giulia Fracastoro ; Diego Valsesia ; Enrico Magli
COMMENTS: European Conference on Computer Vision (ECCV) 2020
HIGHLIGHT: We propose a deep neural network based on graph-convolutional layers that can elegantly deal with the permutation-invariance problem encountered by learning-based point cloud processing methods.
144, TITLE: Learning a Domain Classifier Bank for Unsupervised Adaptive Object Detection
http://arxiv.org/abs/2007.02595
AUTHORS: Sanli Tang ; Zhanzhan Cheng ; Shiliang Pu ; Dashan Guo ; Yi Niu ; Fei Wu
HIGHLIGHT: To reduce the gap, recent techniques are proposed by aligning the image/instance-level features between source and unlabeled target domains.
145, TITLE: SplitFusion: Simultaneous Tracking and Mapping for Non-Rigid Scenes
http://arxiv.org/abs/2007.02108
AUTHORS: Yang Li ; Tianwei Zhang$ ; Yoshihiko Nakamura ; Tatsuya Harada
COMMENTS: Accepted to IROS'2020
HIGHLIGHT: We present SplitFusion, a novel dense RGB-D SLAM framework that simultaneously performs tracking and dense reconstruction for both rigid and non-rigid components of the scene.
146, TITLE: Discovering Drug-Drug and Drug-Disease Interactions Inducing Acute Kidney Injury Using Deep Rule Forests
http://arxiv.org/abs/2007.02103
AUTHORS: Bowen Kuo ; Yihuang Kang ; Pinghsung Wu ; Sheng-Tai Huang ; Yajie Huang
HIGHLIGHT: In this paper, we propose a novel learning algorithm, Deep Rule Forests (DRF), which discovers rules from multilayer tree models as the combinations of drug usages and disease indications to help identify such interactions.
147, TITLE: On the Connection between Dynamical Optimal Transport and Functional Lifting
http://arxiv.org/abs/2007.02587
AUTHORS: Thomas Vogt ; Roland Haase ; Danielle Bednarski ; Jan Lellmann
HIGHLIGHT: In this work, we investigate a mathematically rigorous formulation based on embedding into the space of pointwise probability measures over a fixed range $\Gamma$.
148, TITLE: Contextual-Relation Consistent Domain Adaptation for Semantic Segmentation
http://arxiv.org/abs/2007.02424
AUTHORS: Jiaxing Huang ; Shijian Lu ; Dayan Guan ; Xiaobing Zhang
COMMENTS: Accepted to ECCV 2020
HIGHLIGHT: This paper presents an innovative local contextual-relation consistent domain adaptation (CrCDA) technique that aims to achieve local-level consistencies during the global-level alignment.
149, TITLE: Contextualized Spoken Word Representations from Convolutional Autoencoders
http://arxiv.org/abs/2007.02880
AUTHORS: Prakamya Mishra ; Pranav Mathur
HIGHLIGHT: This paper proposes a novel model architecture that produces syntactically, contextualized, and semantically adequate representation of varying length spoken words.
150, TITLE: Automatic Target Recognition on Synthetic Aperture Radar Imagery: A Survey
http://arxiv.org/abs/2007.02106
AUTHORS: O. Kechagias-Stamatis
COMMENTS: 21 pages, 14 figures
HIGHLIGHT: Based on the current methodology trends, we propose a taxonomy for the SAR ATR architectures, along with a direct comparison of the strengths and weaknesses of each method under both standard and extended operational conditions.
151, TITLE: Fast Adaptation via Policy-Dynamics Value Functions
http://arxiv.org/abs/2007.02879
AUTHORS: Roberta Raileanu ; Max Goldstein ; Arthur Szlam ; Rob Fergus
HIGHLIGHT: We introduce Policy-Dynamics Value Functions (PD-VF), a novel approach for rapidly adapting to dynamics different from those previously seen in training.
152, TITLE: Fuzzy Integral = Contextual Linear Order Statistic
http://arxiv.org/abs/2007.02874
AUTHORS: Derek Anderson ; Matthew Deardorff ; Timothy Havens ; Siva Kakula ; Timothy Wilkin ; Muhammad Islam ; Anthony Pinar ; Andrew Buck
COMMENTS: 11 pages
HIGHLIGHT: Benefits of our approach include scalability, improved integral/measure acquisition, generalizability, and explainable/interpretable models.
153, TITLE: DART: Open-Domain Structured Data Record to Text Generation
http://arxiv.org/abs/2007.02871
AUTHORS: Dragomir Radev ; Rui Zhang ; Amrit Rau ; Abhinand Sivaprasad ; Chiachun Hsieh ; Nazneen Fatema Rajani ; Xiangru Tang ; Aadit Vyas ; Neha Verma ; Pranav Krishna ; Yangxiaokang Liu ; Nadia Irwanto ; Jessica Pan ; Faiaz Rahman ; Ahmad Zaidi ; Murori Mutuma ; Yasin Tarabar ; Ankit Gupta ; Tao Yu ; Yi Chern Tan ; Xi Victoria Lin ; Caiming Xiong ; Richard Socher
HIGHLIGHT: We introduce DART, a large dataset for open-domain structured data record to text generation.
154, TITLE: Geometric Attention for Prediction of Differential Properties in 3D Point Clouds
http://arxiv.org/abs/2007.02571
AUTHORS: Albert Matveev ; Alexey Artemov ; Evgeny Burnaev
HIGHLIGHT: In this study, we present a geometric attention mechanism that can provide such properties in a learnable fashion.
155, TITLE: Enhancing SAT solvers with glue variable predictions
http://arxiv.org/abs/2007.02559
AUTHORS: Jesse Michael Han
COMMENTS: 8 pages, 5 figures
HIGHLIGHT: We address all these limitations, using a simpler network architecture allowing CPU inference for even large industrial problems with millions of clauses, and training instead to predict {\em glue variables}---a target for which it is easier to generate labelled data, and which can also be formulated as a reinforcement learning task.
156, TITLE: Fairness in machine learning: against false positive rate equality as a measure of fairness
http://arxiv.org/abs/2007.02890
AUTHORS: Robert Long
HIGHLIGHT: In this paper, I give an ethical framework for thinking about these measures and argue that, contrary to initial appearances, false positive rate equality does not track anything about fairness, and thus sets an incoherent standard for evaluating the fairness of algorithms.
157, TITLE: LMVE at SemEval-2020 Task 4: Commonsense Validation and Explanation using Pretraining Language Model
http://arxiv.org/abs/2007.02540
AUTHORS: Shilei Liu ; Yu Guo ; Bochao Li ; Feiliang Ren
COMMENTS: Accepted in SemEval2020. 7 pages, 4 figures
HIGHLIGHT: This paper describes our submission to subtask a and b of SemEval-2020 Task 4.
158, TITLE: ModeNet: Mode Selection Network For Learned Video Coding
http://arxiv.org/abs/2007.02532
AUTHORS: Théo Ladune ; Pierrick Philippe ; Wassim Hamidouche ; Lu Zhang ; Olivier Déforges
HIGHLIGHT: In this paper, a mode selection network (ModeNet) is proposed to enhance deep learning-based video compression.
159, TITLE: Computational Complexity Characterization of Protecting Elections from Bribery
http://arxiv.org/abs/2007.02533
AUTHORS: Lin Chen ; Ahmed Sunny ; Lei Xu ; Shouhuai Xu ; Zhimin Gao ; Yang Lu ; Weidong Shi ; Nolan Shah
COMMENTS: 28 Pages. The Article has been accepted in the 26th International Computing and Combinatorics Conference (COCOON 2020)
HIGHLIGHT: The goal of this paper is to give a full picture on the complexity of protection problems.
160, TITLE: Augment Yourself: Mixed Reality Self-Augmentation Using Optical See-through Head-mounted Displays and Physical Mirrors
http://arxiv.org/abs/2007.02884
AUTHORS: Mathias Unberath ; Kevin Yu ; Roghayeh Barmaki ; Alex Johnson ; Nassir Navab
COMMENTS: This manuscript was initially submitted to IEEE VR TVCG 2018 on November 22, 2017
HIGHLIGHT: In this paper, we propose a novel concept and prototype system that combines OST HMDs and physical mirrors to enable self-augmentation and provide an immersive MR environment centered around the user.
161, TITLE: Diagnosis of Coronary Artery Disease Using Artificial Intelligence Based Decision Support System
http://arxiv.org/abs/2007.02854
AUTHORS: Noor Akhmad Setiawan ; Paruvachi Ammasai Venkatachalam ; Ahmad Fadzil M Hani
HIGHLIGHT: The knowledge base of fuzzy decision support system is taken by using rules extraction method based on Rough Set Theory.
162, TITLE: Counterfactual Data Augmentation using Locally Factored Dynamics
http://arxiv.org/abs/2007.02863
AUTHORS: Silviu Pitis ; Elliot Creager ; Animesh Garg
COMMENTS: 12 pages (+12 appendix). Code available at \url{https://github.com/spitis/mrl}
HIGHLIGHT: We propose an approach to inferring these structures given an object-oriented state representation, as well as a novel algorithm for model-free Counterfactual Data Augmentation (CoDA).
163, TITLE: Model-based Exploration of the Frontier of Behaviours for Deep Learning System Testing
http://arxiv.org/abs/2007.02787
AUTHORS: Vincenzo Riccio ; Paolo Tonella
COMMENTS: To be published in the Proceedings of the ACM Joint European Software Engineering Conference and Symposium on the Foundations of Software Engineering (ESEC/FSE 2020); 13 pages, 6 figures
HIGHLIGHT: In this paper, we introduce the notion of frontier of behaviours, i.e., the inputs at which the DL system starts to misbehave.
164, TITLE: Exploration of Optimized Semantic Segmentation Architectures for edge-Deployment on Drones
http://arxiv.org/abs/2007.02839
AUTHORS: Vivek Parmar ; Narayani Bhatia ; Shubham Negi ; Manan Suri
HIGHLIGHT: In this paper, we present an analysis on the impact of network parameters for semantic segmentation architectures in context of UAV data processing.
165, TITLE: Intelligent Reflecting Surface Aided Wireless Communications: A Tutorial
http://arxiv.org/abs/2007.02759
AUTHORS: Qingqing Wu ; Shuowen Zhang ; Beixiong Zheng ; Changsheng You ; Rui Zhang
COMMENTS: IEEE TCOM EIC Invited Paper.A tutorial paper on IRS
HIGHLIGHT: In this paper, we provide a tutorial overview of IRS-aided wireless communication to address the above issues, and elaborate its reflection and channel models, hardware architecture and practical constraints, as well as various appealing applications in wireless networks.
166, TITLE: Sentiment Polarity Detection on Bengali Book Reviews Using Multinomial Naive Bayes
http://arxiv.org/abs/2007.02758
AUTHORS: Eftekhar Hossain ; Omar Sharif ; Mohammed Moshiul Hoque
COMMENTS: 12 pages, ICACIE 2020, Will be published by Advances in Intelligent Systems and Computing (AISC) series of Springer
HIGHLIGHT: This work introduces a machine learning-based technique to determine sentiment polarities (either positive or negative category) from Bengali book reviews.
167, TITLE: robo-gym -- An Open Source Toolkit for Distributed Deep Reinforcement Learning on Real and Simulated Robots
http://arxiv.org/abs/2007.02753
AUTHORS: Matteo Lucchi ; Friedemann Zindler ; Stephan Mühlbacher-Karrer ; Horst Pichler
HIGHLIGHT: In order to increase the use of DRL with real robots and reduce the gap between simulation and real world robotics, we propose an open source toolkit: robo-gym.
168, TITLE: Building Reservoir Computing Hardware Using Low Energy-Barrier Magnetics
http://arxiv.org/abs/2007.02766
AUTHORS: Samiran Ganguly ; Avik W. Ghosh
COMMENTS: To be presented at International Conference on Neuromorphic Systems 2020
HIGHLIGHT: In this work we discuss using in-depth simulation studies a way to construct hardware reservoir computers using an analog stochastic neuron cell built from a low energy-barrier magnet based magnetic tunnel junction and a few transistors.
169, TITLE: Egocentric Action Recognition by Video Attention and Temporal Context
http://arxiv.org/abs/2007.01883
AUTHORS: Juan-Manuel Perez-Rua ; Antoine Toisoul ; Brais Martinez ; Victor Escorcia ; Li Zhang ; Xiatian Zhu ; Tao Xiang
COMMENTS: EPIC-Kitchens challenges@CVPR 2020
HIGHLIGHT: We present the submission of Samsung AI Centre Cambridge to the CVPR2020 EPIC-Kitchens Action Recognition Challenge.
170, TITLE: Refined Analysis of the Asymptotic Complexity of the Number Field Sieve
http://arxiv.org/abs/2007.02730
AUTHORS: Aude Le Gluher ; Pierre-Jean Spaenlehauer ; Emmanuel Thomé
HIGHLIGHT: The aim of this paper is to find optimal asymptotic choices of the parameters of NFS as $N$ grows, in order to minimize its heuristic asymptotic computational cost.
171, TITLE: Black-box Adversarial Example Generation with Normalizing Flows
http://arxiv.org/abs/2007.02734
AUTHORS: Hadi M. Dolatabadi ; Sarah Erfani ; Christopher Leckie
COMMENTS: Accepted to the 2nd workshop on Invertible Neural Networks, Normalizing Flows, and Explicit Likelihood Models (ICML 2020), Virtual Conference
HIGHLIGHT: In this paper, we propose a novel black-box adversarial attack using normalizing flows.
172, TITLE: Multi-Objective Neural Architecture Search Based on Diverse Structures and Adaptive Recommendation
http://arxiv.org/abs/2007.02749
AUTHORS: Chunnan Wang ; Hongzhi Wang ; Guocheng Feng ; Fei Geng
COMMENTS: 11pages
HIGHLIGHT: Motivated by this, we propose MoARR algorithm, which utilizes the existing research results and historical information to quickly find architectures that are both lightweight and accurate.
173, TITLE: Towards Game-Playing AI Benchmarks via Performance Reporting Standards
http://arxiv.org/abs/2007.02742
AUTHORS: Vanessa Volz ; Boris Naujoks
COMMENTS: IEEE Conference on Games 2020
HIGHLIGHT: In this paper, we propose reporting guidelines for AI game-playing performance that, if followed, provide information suitable for unbiased comparisons between different AI approaches.
174, TITLE: KRW Composition Theorems via Lifting
http://arxiv.org/abs/2007.02740
AUTHORS: Susanna F. de Rezende ; Or Meir ; Jakob Nordström ; Toniann Pitassi ; Robert Robere
HIGHLIGHT: In this work, we extend significantly the range of inner functions that can be handled.
175, TITLE: A Few-Shot Sequential Approach for Object Counting
http://arxiv.org/abs/2007.01899
AUTHORS: Negin Sokhandan ; Pegah Kamousi ; Alejandro Posada ; Eniola Alese ; Negar Rostamzadeh
HIGHLIGHT: In this work, we address the problem of few-shot multi-classobject counting with point-level annotations.
176, TITLE: Dynamic memory to alleviate catastrophic forgetting in continuous learning settings
http://arxiv.org/abs/2007.02639
AUTHORS: Johannes Hofmanninger ; Matthias Perkonigg ; James A. Brink ; Oleg Pianykh ; Christian Herold ; Georg Langs
COMMENTS: Accepted at MICCAI 2020
HIGHLIGHT: Here, we address the problem of data shifts in a continuous learning scenario by adapting a model to unseen variations in the source domain while counteracting catastrophic forgetting effects.
177, TITLE: Joint learning of Social Groups, Individuals Action and Sub-group Activities in Videos
http://arxiv.org/abs/2007.02632
AUTHORS: Mahsa Ehsanpour ; Alireza Abedin ; Fatemeh Saleh ; Javen Shi ; Ian Reid ; Hamid Rezatofighi
COMMENTS: Accepted in the European Conference On Computer Vision (ECCV) 2020
HIGHLIGHT: In this paper, we solve the problem of simultaneously grouping people by their social interactions, predicting their individual actions and the social activity of each social group, which we call the social task.
178, TITLE: TLIO: Tight Learned Inertial Odometry
http://arxiv.org/abs/2007.01867
AUTHORS: Wenxin Liu ; David Caruso ; Eddy Ilg ; Jing Dong ; Anastasios I. Mourikis ; Kostas Daniilidis ; Vijay Kumar ; Jakob Engel
HIGHLIGHT: In this work we propose a tightly-coupled Extended Kalman Filter framework for IMU-only state estimation.
179, TITLE: CareCall: a Call-Based Active Monitoring Dialog Agent for Managing COVID-19 Pandemic
http://arxiv.org/abs/2007.02642