-
Notifications
You must be signed in to change notification settings - Fork 1
/
nohup.out
16795 lines (12980 loc) · 490 KB
/
nohup.out
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
A Multivariate Framework for Weighted FPT Algorithms
1 entities to process in this document
39261 documents to go
Efficient Detection of Complex Event Patterns Using Lazy Chain Automata
15 entities to process in this document
39260 documents to go
On the Computation of Distances for Probabilistic Context-Free Grammars
3 entities to process in this document
39259 documents to go
Confidence Intervals and Hypothesis Testing for High-Dimensional
Regression
5 entities to process in this document
39258 documents to go
A Distributed Algorithm for Computing a Common Fixed Point of a Family
of Paracontractions
2 entities to process in this document
39257 documents to go
Lower Bounds for Protrusion Replacement by Counting Equivalence Classes
5 entities to process in this document
39256 documents to go
ICONA: Inter Cluster ONOS Network Application
8 entities to process in this document
39255 documents to go
A Universal Parallel Two-Pass MDL Context Tree Compression Algorithm
4 entities to process in this document
39254 documents to go
Network-Coded Multiple Access with High-order Modulations
14 entities to process in this document
39253 documents to go
Nonlinear Dimensionality Reduction via Path-Based Isometric Mapping
5 entities to process in this document
39252 documents to go
The jump set under geometric regularisation. Part 1: Basic technique and
first-order denoising
4 entities to process in this document
39251 documents to go
Transition-based Parsing with Context Enhancement and Future Reward
Reranking
10 entities to process in this document
39250 documents to go
Unsupervised diffusion-based LMS for node-specific parameter estimation
over wireless sensor networks
1 entities to process in this document
39249 documents to go
Length Matters: Clustering System Log Messages using Length of Words
2 entities to process in this document
39248 documents to go
Max-Sum Diversification, Monotone Submodular Functions and Semi-metric
Spaces
2 entities to process in this document
39247 documents to go
"Model and Run" Constraint Networks with a MILP Engine
10 entities to process in this document
39246 documents to go
Academic Cloud Computing Research: Five Pitfalls and Five Opportunities
4 entities to process in this document
39245 documents to go
Large-Scale Multi-Label Learning with Incomplete Label Assignments
4 entities to process in this document
39244 documents to go
Towards an I/O Conformance Testing Theory for Software Product Lines
based on Modal Interface Automata
2 entities to process in this document
39243 documents to go
Weyl variations and local sufficiency of linear observers in the mean
square optimal coherent quantum filtering problem
7 entities to process in this document
39242 documents to go
Low Cost Autonomous Navigation and Control of a Mechanically Balanced
Bicycle with Dual Locomotion Mode
4 entities to process in this document
39241 documents to go
Chemical Propagation Pattern for Molecular Communications
1 entities to process in this document
39240 documents to go
Dictionary Learning and Tensor Decomposition via the Sum-of-Squares
Method
0 entities to process in this document
39239 documents to go
Quantitative Analysis of Probabilistic Models of Software Product Lines
with Statistical Model Checking
6 entities to process in this document
39238 documents to go
A new model for multi-commodity macroscopic modeling of complex traffic
networks
7 entities to process in this document
39237 documents to go
Online Learning of k-CNF Boolean Functions
4 entities to process in this document
39236 documents to go
D3-Tree: A Dynamic Distributed Deterministic Load - Balancer for
decentralized tree structures
7 entities to process in this document
39235 documents to go
Bidirectional Conditional Insertion Sort algorithm; An efficient
progress on the classical insertion sort
8 entities to process in this document
39234 documents to go
Examining Representational Similarity in ConvNets and the Primate Visual
Cortex
5 entities to process in this document
39233 documents to go
Comparative Evaluation of Action Recognition Methods via Riemannian
Manifolds, Fisher Vectors and GMMs: Ideal and Challenging Conditions
6 entities to process in this document
39232 documents to go
Joint Centrality Distinguishes Optimal Leaders in Noisy Networks
5 entities to process in this document
39231 documents to go
Smart Computing and Sensing Technologies for Animal Welfare: A
Systematic Review
4 entities to process in this document
39230 documents to go
Computationally Efficient Influence Maximization in Stochastic and
Adversarial Models: Algorithms and Analysis
9 entities to process in this document
39229 documents to go
Efficient Scene Text Localization and Recognition with Local Character
Refinement
4 entities to process in this document
39228 documents to go
Recurrent Neural Networks for Driver Activity Anticipation via
Sensory-Fusion Architecture
7 entities to process in this document
39227 documents to go
Private Multiplicative Weights Beyond Linear Queries
3 entities to process in this document
39226 documents to go
Parameter estimation for linear control valve with hysteresis
2 entities to process in this document
39225 documents to go
A Constructive Algorithm for Decomposing a Tensor into a Finite Sum of
Orthonormal Rank-1 Terms
6 entities to process in this document
39224 documents to go
Simultaneous Receding Horizon Estimation and Control of a Fencing Robot
using a Single Camera
1 entities to process in this document
39223 documents to go
Joint Source-Channel Coding with Time-Varying Channel and
Side-Information
8 entities to process in this document
39222 documents to go
Low Complexity Regularization of Linear Inverse Problems
10 entities to process in this document
39221 documents to go
A Polynomial Chaos Framework for Designing Linear Parameter Varying
Control Systems
3 entities to process in this document
39220 documents to go
Machine Learning Techniques for Stackelberg Security Games: a Survey
2 entities to process in this document
39219 documents to go
Towards Verifiably Ethical Robot Behaviour
10 entities to process in this document
39218 documents to go
FPGA Based Implementation of Deep Neural Networks Using On-chip Memory
Only
5 entities to process in this document
39217 documents to go
Deadline Differentiated Pricing of Deferrable Electric Loads
4 entities to process in this document
39216 documents to go
Transparent Clouds: An Enhancement to Abstraction
10 entities to process in this document
39215 documents to go
The Machine Learning Algorithm as Creative Musical Tool
7 entities to process in this document
39214 documents to go
Relaxed Sparse Eigenvalue Conditions for Sparse Estimation via
Non-convex Regularized Regression
10 entities to process in this document
39213 documents to go
Spectral deferred corrections with fast-wave slow-wave splitting
12 entities to process in this document
39212 documents to go
Comments on an image encryption scheme based on a chaotic Tent map
0 entities to process in this document
39211 documents to go
Complexity Classes as Mathematical Axioms II
7 entities to process in this document
39210 documents to go
Probabilistic structure discovery in time series data
1 entities to process in this document
39209 documents to go
Output agreement in networks with unmatched disturbances and algebraic
constraints
2 entities to process in this document
39208 documents to go
Online and Global Network Optimization: Towards the Next-Generation of
Routing Platforms
2 entities to process in this document
39207 documents to go
Faster decoding for subword level Phrase-based SMT between related
languages
2 entities to process in this document
39206 documents to go
Automatic Labelling of Topics with Neural Embeddings
13 entities to process in this document
39205 documents to go
Synthesis from Probabilistic Components
3 entities to process in this document
39204 documents to go
Detecting Text in Natural Image with Connectionist Text Proposal Network
8 entities to process in this document
39203 documents to go
Message passing optimization of Harmonic Influence Centrality
5 entities to process in this document
39202 documents to go
Cops and Robbers, Game Theory and Zermelo's Early Results
6 entities to process in this document
39201 documents to go
Ripple: Reflection Analysis for Android Apps in Incomplete Information
Environments
28 entities to process in this document
39200 documents to go
An Experimental Investigation of Hyperbolic Routing with a Smart
Forwarding Plane in NDN
5 entities to process in this document
39199 documents to go
Truthful Secretaries with Budgets
5 entities to process in this document
39198 documents to go
Fast Sequence Component Analysis for Attack Detection in Synchrophasor
Networks
8 entities to process in this document
39197 documents to go
Constrained Phase Noise Estimation in OFDM Using Scattered Pilots
Without Decision Feedback
5 entities to process in this document
39196 documents to go
Ensemble Learned Vaccination Uptake Prediction using Web Search Queries
4 entities to process in this document
39195 documents to go
Budget Constraints in Prediction Markets
1 entities to process in this document
39194 documents to go
Temporal ordering of clinical events
14 entities to process in this document
39193 documents to go
On the Importance of Normalisation Layers in Deep Learning with
Piecewise Linear Activation Units
3 entities to process in this document
39192 documents to go
Word Segmentation on Micro-blog Texts with External Lexicon and
Heterogeneous Data
2 entities to process in this document
39191 documents to go
Evaluating Asymmetric Multicore Systems-on-Chip using Iso-Metrics
7 entities to process in this document
39190 documents to go
Measurement of Sound Fields Using Moving Microphones
4 entities to process in this document
39189 documents to go
Learning to Generate Networks
5 entities to process in this document
39188 documents to go
Formal Verification of Autonomous Vehicle Platooning
8 entities to process in this document
39187 documents to go
f-GAN: Training Generative Neural Samplers using Variational Divergence
Minimization
8 entities to process in this document
39186 documents to go
Generation and Pruning of Pronunciation Variants to Improve ASR Accuracy
0 entities to process in this document
39185 documents to go
Games for Bisimulations and Abstraction
3 entities to process in this document
39184 documents to go
Efficient Completion of Weighted Automata
4 entities to process in this document
39183 documents to go
Distributed PROMPT-LTL Synthesis
6 entities to process in this document
39182 documents to go
Solving Visual Madlibs with Multiple Cues
13 entities to process in this document
39181 documents to go
Context-Aware Wireless Small Cell Networks: How to Exploit User
Information for Resource Allocation
1 entities to process in this document
39180 documents to go
Hardware Decoders for Polar Codes: An Overview
4 entities to process in this document
39179 documents to go
Some New Directions for ACP Research
4 entities to process in this document
39178 documents to go
Is a Picture Worth Ten Thousand Words in a Review Dataset?
17 entities to process in this document
39177 documents to go
The Primal-Dual Hybrid Gradient Method for Semiconvex Splittings
1 entities to process in this document
39176 documents to go
Bounds on entanglement distillation and secret key agreement for quantum
broadcast channels
6 entities to process in this document
39175 documents to go
Novel methods for multilinear data completion and de-noising based on
tensor-SVD
6 entities to process in this document
39174 documents to go
Android Permissions Remystified: A Field Study on Contextual Integrity
11 entities to process in this document
39173 documents to go
Asynchronous Methods for Deep Reinforcement Learning
8 entities to process in this document
39172 documents to go
Recharging Probably Keeps Batteries Alive
11 entities to process in this document
39171 documents to go
Predicting Signed Edges with $O(n^{1+o(1)} \log{n})$ Queries
2 entities to process in this document
39170 documents to go
A note on reductions between compressed sensing guarantees
2 entities to process in this document
39169 documents to go
Mutiscale Mapper: A Framework for Topological Summarization of Data and
Maps
5 entities to process in this document
39168 documents to go
A Class of Prediction-Correction Methods for Time-Varying Convex
Optimization
9 entities to process in this document
39167 documents to go
Bounds for the $l_1$-distance of $q$-ary lattices obtained via
Constructions D, D$^{'}$ and $\overline{D}$
4 entities to process in this document
39166 documents to go
A heuristic extending the Squarified treemapping algorithm
3 entities to process in this document
39165 documents to go
Shedding Light on the Adoption of Let's Encrypt
18 entities to process in this document
39164 documents to go
Optimal Prefix Free Codes With Partial Sorting
13 entities to process in this document
39163 documents to go
Disjoint difference families and their applications
2 entities to process in this document
39162 documents to go
Keyless authentication in the presence of a simultaneously transmitting
adversary
1 entities to process in this document
39161 documents to go
Normalization of Non-Standard Words in Croatian Texts
1 entities to process in this document
39160 documents to go
Piano Transcription in the Studio Using an Extensible Alternating
Directions Framework
14 entities to process in this document
39159 documents to go
RIOT OS Paves the Way for Implementation of High-Performance MAC
Protocols
8 entities to process in this document
39158 documents to go
Scheduling of unit-length jobs with bipartite incompatibility graphs on
four uniform machines
0 entities to process in this document
39157 documents to go
Future Influence Ranking of Scientific Literature
9 entities to process in this document
39156 documents to go
Distributed Estimation of Graph Spectrum
2 entities to process in this document
39155 documents to go
Detecting Context Dependent Messages in a Conversational Environment
4 entities to process in this document
39154 documents to go
Graph Aggregation
4 entities to process in this document
39153 documents to go
Disjunctive Normal Level Set: An Efficient Parametric Implicit Method
4 entities to process in this document
39152 documents to go
Training Sequence Design for Feedback Assisted Hybrid Beamforming in
Massive MIMO Systems
6 entities to process in this document
39151 documents to go
A Distributed Algorithm for Throughput Optimal Routing in Overlay
Networks
4 entities to process in this document
39150 documents to go
Stable marriage with general preferences
6 entities to process in this document
39149 documents to go
Wireless Compressive Sensing Over Fading Channels with Distributed
Sparse Random Projections
4 entities to process in this document
39148 documents to go
Generalized Model of VSC-based Energy Storage Systems for Transient
Stability Analysis
7 entities to process in this document
39147 documents to go
Bidiagonalization with Parallel Tiled Algorithms
31 entities to process in this document
39146 documents to go
Reprowd: Crowdsourced Data Processing Made Reproducible
2 entities to process in this document
39145 documents to go
Macroscopic Modeling and Simulation of Managed Lane-Freeway Networks
4 entities to process in this document
39144 documents to go
Rate Aware Instantly Decodable Network Codes
8 entities to process in this document
39143 documents to go
From nominal to higher-order rewriting and back again
4 entities to process in this document
39142 documents to go
RECOME: a New Density-Based Clustering Algorithm Using Relative KNN
Kernel Density
9 entities to process in this document
39141 documents to go
Socializing the Semantic Gap: A Comparative Survey on Image Tag
Assignment, Refinement and Retrieval
31 entities to process in this document
39140 documents to go
Some Results on Reversible Gate Classes Over Non-Binary Alphabets
1 entities to process in this document
39139 documents to go
A Local Algorithm for Constructing Spanners in Minor-Free Graphs
3 entities to process in this document
39138 documents to go
Fantastic 4 system for NIST 2015 Language Recognition Evaluation
5 entities to process in this document
39137 documents to go
Graph Orientation and Flows Over Time
3 entities to process in this document
39136 documents to go
Optimal Differentially Private Mechanisms for Randomised Response
3 entities to process in this document
39135 documents to go
On Termination of Integer Linear Loops
2 entities to process in this document
39134 documents to go
Optimization as Estimation with Gaussian Processes in Bandit Settings
5 entities to process in this document
39133 documents to go
Fractal dimension versus process complexity
0 entities to process in this document
39132 documents to go
Multi-View Treelet Transform
4 entities to process in this document
39131 documents to go
Efficient Encryption from Random Quasi-Cyclic Codes
14 entities to process in this document
39130 documents to go
Lower Bounds on the Critical Density in the Hard Disk Model via
Optimized Metrics
6 entities to process in this document
39129 documents to go
Anatomy-specific classification of medical images using deep
convolutional nets
5 entities to process in this document
39128 documents to go
Trajectory Generation for Quadrotor Based Systems using Numerical
Optimal Control
5 entities to process in this document
39127 documents to go
A Quantitative Study of Pure Parallel Processes
3 entities to process in this document
39126 documents to go
Efficient computation of Laguerre polynomials
4 entities to process in this document
39125 documents to go
An asymptotically optimal, online algorithm for weighted random sampling
with replacement
1 entities to process in this document
39124 documents to go
Bounds on restricted isometry constants of random matrices
2 entities to process in this document
39123 documents to go
Winning Cores in Parity Games
1 entities to process in this document
39122 documents to go
Recommending Learning Algorithms and Their Associated Hyperparameters
1 entities to process in this document
39121 documents to go
Information Measures, Inequalities and Performance Bounds for Parameter
Estimation in Impulsive Noise Environments
9 entities to process in this document
39120 documents to go
Two-stage Convolutional Part Heatmap Regression for the 1st 3D Face
Alignment in the Wild (3DFAW) Challenge
6 entities to process in this document
39119 documents to go
Conversion Methods for Improving Structural Analysis of
Differential-Algebraic Equation Systems
4 entities to process in this document
39118 documents to go
Neural Machine Translation with Characters and Hierarchical Encoding
2 entities to process in this document
39117 documents to go
Polyadic Constacyclic Codes
1 entities to process in this document
39116 documents to go
A Multi-signal Variant for the GPU-based Parallelization of Growing
Self-Organizing Networks
5 entities to process in this document
39115 documents to go
Controlling Output Length in Neural Encoder-Decoders
7 entities to process in this document
39114 documents to go
A Generative Model for Deep Convolutional Learning
1 entities to process in this document
39113 documents to go
Code Generation for Event-B
65 entities to process in this document
39112 documents to go
The Convex Configurations of "Sei Shonagon Chie no Ita" and Other
Dissection Puzzles
0 entities to process in this document
39111 documents to go
Hypothesis Testing for Topological Data Analysis
7 entities to process in this document
39110 documents to go
A Sugiyama-like decoding algorithm for convolutional codes
13 entities to process in this document
39109 documents to go
Analysis of Quickselect under Yaroslavskiy's Dual-Pivoting Algorithm
3 entities to process in this document
39108 documents to go
Compressive Spectral Clustering
3 entities to process in this document
39107 documents to go
Multi-dimensional signal approximation with sparse structured priors
using split Bregman iterations
9 entities to process in this document
39106 documents to go
Over-constrained Weierstrass iteration and the nearest consistent system
6 entities to process in this document
39105 documents to go
P_3-Games
5 entities to process in this document
39104 documents to go
FO Model Checking on Posets of Bounded Width
3 entities to process in this document
39103 documents to go
Efficient Multi-view Performance Capture of Fine-Scale Surface Detail
2 entities to process in this document
39102 documents to go
A Search/Crawl Framework for Automatically Acquiring Scientific
Documents
12 entities to process in this document
39101 documents to go
On the Number of Closed Factors in a Word
3 entities to process in this document
39100 documents to go
NP vs PSPACE
2 entities to process in this document
39099 documents to go
The Shape of the Search Tree for the Maximum Clique Problem, and the
Implications for Parallel Branch and Bound
6 entities to process in this document
39098 documents to go
Classical capacities of quantum channels with environment assistance
12 entities to process in this document
39097 documents to go
Face Detection with End-to-End Integration of a ConvNet and a 3D Model
7 entities to process in this document
39096 documents to go
Counting independent sets via Divide Measure and Conquer method
4 entities to process in this document
39095 documents to go
Numerical Approach to Maximize SNR for CDMA Systems
2 entities to process in this document
39094 documents to go
On the Error Performance of Systematic Polar Codes
3 entities to process in this document
39093 documents to go
MyAdChoices: Bringing Transparency and Control to Online Advertising
14 entities to process in this document
39092 documents to go
Sequential Principal Curves Analysis
0 entities to process in this document
39091 documents to go
Targeting Infeasibility Questions on Obfuscated Codes
19 entities to process in this document
39090 documents to go
A class of $p$-ary cyclic codes and their weight enumerators
1 entities to process in this document
39089 documents to go
Multi-point Codes from Generalized Hermitian Curves
2 entities to process in this document
39088 documents to go
A Comparison of 10 Sampling Algorithms for Configurable Systems
8 entities to process in this document
39087 documents to go
Node Overlap Removal by Growing a Tree
7 entities to process in this document
39086 documents to go
A Bayesian alternative to mutual information for the hierarchical
clustering of dependent random variables
17 entities to process in this document
39085 documents to go
Reverse Split Rank
5 entities to process in this document
39084 documents to go
Is it morally acceptable for a system to lie to persuade me?
3 entities to process in this document
39083 documents to go
The Spacey Random Walk: a Stochastic Process for Higher-order Data
7 entities to process in this document
39082 documents to go
Online bagging for recommendation with incremental matrix factorization
6 entities to process in this document
39081 documents to go
A Cyber-Human Interaction Based System on Mobile Phone for Indoor
Localization
5 entities to process in this document
39080 documents to go
Factoring Polynomials over Finite Fields using Drinfeld Modules with
Complex Multiplication
2 entities to process in this document
39079 documents to go
Neural Networks Models for Entity Discovery and Linking
13 entities to process in this document
39078 documents to go
Classification Accuracy as a Proxy for Two Sample Testing
2 entities to process in this document
39077 documents to go
Referential Uncertainty and Word Learning in High-dimensional,
Continuous Meaning Spaces
8 entities to process in this document
39076 documents to go
Exploiting sparsity to build efficient kernel based collaborative
filtering for top-N item recommendation
10 entities to process in this document
39075 documents to go
Computing Zigzag Persistent Cohomology
2 entities to process in this document
39074 documents to go
Secrecy Communication with Security Rate Measure
4 entities to process in this document
39073 documents to go
Recovery guarantee of weighted low-rank approximation via alternating
minimization
1 entities to process in this document
39072 documents to go
A Polynomial Delay Algorithm for Enumerating Minimal Dominating Sets in
Chordal Graphs
9 entities to process in this document
39071 documents to go
Towards Wide Learning: Experiments in Healthcare
3 entities to process in this document
39070 documents to go
An interactive fuzzy goal programming algorithm to solve decentralized
bi-level multiobjective fractional programming problem
6 entities to process in this document
39069 documents to go
Bounded Termination of Monotonicity-Constraint Transition Systems
5 entities to process in this document
39068 documents to go
R\'enyi Divergence Variational Inference
4 entities to process in this document
39067 documents to go
ImpNet: Programming Software-Defied Networks Using Imperative Techniques
12 entities to process in this document
39066 documents to go
MmmTurkey: A Crowdsourcing Framework for Deploying Tasks and Recording
Worker Behavior on Amazon Mechanical Turk
3 entities to process in this document
39065 documents to go
A Randomized Tensor Singular Value Decomposition based on the t-product
3 entities to process in this document
39064 documents to go
The Kirchhoff-Braess Paradox and Its Implications for Smart Microgrids
1 entities to process in this document
39063 documents to go
Scalable Text Mining with Sparse Generative Models
34 entities to process in this document
39062 documents to go
Un caso de big data punta a punta: an\'alisis de datos de transporte y
su uso en el negocio
0 entities to process in this document
39061 documents to go
Quantum walk, entanglement and thermodynamic laws
5 entities to process in this document
39060 documents to go
Comparison of 14 different families of classification algorithms on 115
binary datasets
7 entities to process in this document
39059 documents to go
Dirty Paper Arbitrarily Varying Channel with a State-Aware Adversary
1 entities to process in this document
39058 documents to go
Eye-CU: Sleep Pose Classification for Healthcare using Multimodal
Multiview Data
0 entities to process in this document
39057 documents to go
Performance Analysis of Cognitive Radio Systems with Imperfect Channel
Sensing and Estimation
5 entities to process in this document
39056 documents to go
Towards the Design and Implementation of Aspect-Oriented Programming for
Spreadsheets
5 entities to process in this document
39055 documents to go
Multipair Massive MIMO Relaying with Pilot-Data Transmission Overlay
1 entities to process in this document
39054 documents to go
Wasserstein continuity of entropy and outer bounds for interference
channels
6 entities to process in this document
39053 documents to go
Cooperative Beamforming for Cognitive Radio-Based Broadcasting Systems
with Asynchronous Interferences
5 entities to process in this document
39052 documents to go
Parameterized Algorithmics for Computational Social Choice: Nine
Research Challenges
7 entities to process in this document
39051 documents to go
Active Authentication on Mobile Devices via Stylometry, Application
Usage, Web Browsing, and GPS Location
2 entities to process in this document
39050 documents to go
Learning Modular Neural Network Policies for Multi-Task and Multi-Robot
Transfer
6 entities to process in this document
39049 documents to go
Optimal Dynamic Multicast Scheduling for Cache-Enabled Content-Centric
Wireless Networks
0 entities to process in this document
39048 documents to go
Find an Optimal Path in Static System and Dynamical System within
Polynomial Runtime
4 entities to process in this document
39047 documents to go
Using inspiration from synaptic plasticity rules to optimize traffic
flow in distributed engineered networks
5 entities to process in this document
39046 documents to go
Cograph generation with linear delay
1 entities to process in this document
39045 documents to go
Local Doubling Dimension of Point Sets
3 entities to process in this document
39044 documents to go
A Delayed Promotion Policy for Parity Games
6 entities to process in this document
39043 documents to go
Exploring the Limits of Language Modeling
3 entities to process in this document
39042 documents to go
A Near-Quadratic Lower Bound for the Size of Quantum Circuits of
Constant Treewidth
2 entities to process in this document
39041 documents to go
Combining Fully Convolutional and Recurrent Neural Networks for 3D
Biomedical Image Segmentation
4 entities to process in this document
39040 documents to go
A novel 2D non-stationary wideband massive MIMO channel model
7 entities to process in this document
39039 documents to go
Stochastic Equilibria under Imprecise Deviations in Terminal-Reward
Concurrent Games
4 entities to process in this document
39038 documents to go
Online Submodular Maximization with Preemption
0 entities to process in this document
39037 documents to go
Orientation covariant aggregation of local descriptors with embeddings
10 entities to process in this document
39036 documents to go
3D Shape Induction from 2D Views of Multiple Objects
6 entities to process in this document
39035 documents to go
ERA Revisited: Theoretical and Experimental Evaluation
2 entities to process in this document
39034 documents to go