-
Notifications
You must be signed in to change notification settings - Fork 0
/
ref.json
6084 lines (6084 loc) · 637 KB
/
ref.json
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
{
"3dim_2020_gamesh:": "GAMesh: Guided and Augmented Meshing for Deep Point Networks",
"3dim_2020_intrinsic": "Intrinsic Autoencoders for Joint Deferred Neural Rendering and Intrinsic Image Decomposition",
"3dim_2020_smply": "SMPLy Benchmarking 3D Human Pose Estimation in the Wild",
"3dim_2021_a": "A Spatio-temporal Transformer for 3D Human Motion Prediction",
"3dim_2021_l2d2:": "L2D2: Learnable Line Detector and Descriptor",
"3dim_2021_non-linear": "Non-Linear Anisotropic Diffusion for Memory-Efficient Computed Tomography Super-Resolution Reconstruction",
"3dim_2022_cut-and-paste": "Cut-and-Paste Object Insertion by Enabling Deep Image Prior for Reshading",
"3dim_2022_dimensions": "Dimensions of Motion: Monocular Prediction through Flow Subspaces",
"3dim_2022_teach:": "TEACH: Temporal Action Composition for 3D Humans",
"ACMdis_2020_\"i": "\"I Understand, Mate\": A Co-designed Comic-based Digital Story from 'Down Under'",
"ACMdis_2020_evaluating": "Evaluating Creativity Support Tools in HCI Research",
"ACMdis_2020_fantastic(e)ating": "Fantastic(e)ating Food Futures: Reimagining Human Food Interaction",
"ACMdis_2021_hybrid": "Hybrid Paper-Digital Interfaces: A Systematic Literature Review",
"ACMdis_2021_prototyping": "Prototyping Things: Reflecting on Unreported Objects of Design Research for IoT",
"ACMdis_2021_show": "Show Me How You Interact, I Will Tell You What You Think: Exploring the Effect of the Interaction Style on Users' Sensemaking about Correlation and Causation in Data",
"ACMdis_2022_designing": "Designing Interactive Audio-Tactile Charts Grounded In Current Practices of Tactile Graphics Production",
"ACMdis_2022_meowplaylive:": "MeowPlayLive: Enhancing Animal Live Streaming Experience Through Voice Message-Based Real-Time Viewer-Animal Interaction",
"ACMdis_2022_personalized": "Personalized Font Recommendations: Combining ML and Typographic Guidelines to Optimize Readability",
"ACMdis_2023_braidflow:": "BraidFlow: A Flow-annotated Dataset of Kumihimo Braidmaking Activity",
"ACMdis_2023_dual": "Dual Body Bimanual Coordination in Immersive Environments",
"ACMdis_2023_multi-stakeholder": "Multi-Stakeholder Privacy and Safety on Content Creation Platforms",
"IEEEcloud_2020_on": "On the Use of Containers in High Performance Computing Environments",
"IEEEcloud_2020_phase": "Phase Aware Performance Modeling for Cloud Applications",
"IEEEcloud_2020_the": "The Design and Implementation of a Scalable Deep Learning Benchmarking Platform",
"IEEEcloud_2021_ai-assisted": "AI-Assisted Security Controls Mapping for Clouds Built for Regulated Workloads",
"IEEEcloud_2021_causal": "Causal Modeling based Fault Localization in Cloud Systems using Golden Signals",
"IEEEcloud_2021_oasis:": "Oasis: Performance Matching IoT System Emulation",
"IEEEcloud_2022_an": "An Efficient Approach to Move Elements in a Distributed Geo-Replicated Tree",
"IEEEcloud_2022_compliance-as-code": "Compliance-as-Code for Cybersecurity Automation in Hybrid Cloud",
"IEEEcloud_2022_microlens:": "MicroLens: A Performance Analysis Framework for Microservices Using Hidden Metrics With BPF",
"IEEEcloud_2023_a": "A Microservice-based SaaS Deployment in a Data Center Considering Computational Server and Network Energy Consumption",
"IEEEcloud_2023_making": "Making Your Program Oblivious: A Comparative Study for Side-channel-Safe Confidential Computing",
"IEEEcloud_2023_performance": "Performance Analysis of Apache OpenWhisk Across the Edge-Cloud Continuum",
"IEEEpact_2020_approximate": "Approximate Pattern Matching for On-Chip Interconnect Traffic Prediction",
"IEEEpact_2020_deep": "Deep Learning Assisted Resource Partitioning for Improving Performance on Commodity Servers",
"IEEEpact_2020_scalable": "Scalable Specialization: Architectures, Interfaces, & Applications",
"IEEEpact_2021_google": "Google Neural Network Models for Edge Devices: Analyzing and Mitigating Machine Learning Inference Bottlenecks",
"IEEEpact_2021_innersp:": "InnerSP: A Memory Efficient Sparse Matrix Multiplication Accelerator with Locality-Aware Inner Product Processing",
"IEEEpact_2021_polygym:": "PolyGym: Polyhedral Optimizations as an Environment for Reinforcement Learning",
"IEEEpact_2022_massively": "Massively Parallel Open Modification Spectral Library Searching with Hyperdimensional Computing",
"IEEEpact_2022_samplemine:": "SampleMine: A Framework for Applying Random Sampling to Subgraph Pattern Mining through Loop Perforation",
"IEEEpact_2022_understanding": "Understanding and Reaching the Performance Limit of Schedule Tuning on Stable Synchronization Determinism",
"IEEEpact_2023_a": "A Silicon Photonic Multi-DNN Accelerator",
"IEEEpact_2023_hugegpt:": "HugeGPT: Storing Guest Page Tables on Host Huge Pages to Accelerate Address Translation",
"IEEEpact_2023_uwomppro:": "UWOmppro: UWOmp++ with Point-to-Point Synchronization, Reduction and Schedules",
"IEEEscc_2020_incentive-based": "Incentive-Based Selection and Composition of IoT Energy Services",
"IEEEscc_2020_mlp4ml:": "MLP4ML: Machine Learning Service Recommendation System using MLP",
"IEEEscc_2020_seed:": "SEED: Confidential Big Data Workflow Scheduling with Intel SGX Under Deadline Constraints",
"IEEEscc_2021_a": "A Framework for Enabling Cyber-Twins based Industry 4.0 Application Development",
"IEEEscc_2021_cloud": "Cloud as platform for monetizing complementary data for AI-driven services: A two-sided cooperative game",
"IEEEscc_2021_security": "Security Certification Scheme for Content-centric Networks",
"IEEEscc_2022_blockchain": "Blockchain Simulators: A Systematic Mapping Study",
"IEEEscc_2022_caching": "Caching Hierarchical Skylines for Efficient Service Composition on Service Graphs",
"IEEEscc_2022_harnessing": "Harnessing Confidence for Report Aggregation in Crowdsourcing Environments",
"IEEEscc_2023_a": "A Method to Improving Artifact Anomaly Detection in a Temporal Structured Workflow",
"IEEEscc_2023_deep": "Deep Learning Machine Vision Solutions for Monitoring Safety Structures to Supplement Building Information Models",
"IEEEscc_2023_exploring": "Exploring the Vulnerabilities of Machine Learning and Quantum Machine Learning to Adversarial Attacks Using a Malware Dataset: A Comparative Analysis",
"aaai_2020_adversarial-learned": "Adversarial-Learned Loss for Domain Adaptation",
"aaai_2020_minecraft": "Minecraft as a Platform for Project-Based Learning in AI",
"aaai_2020_results": "Results on a Super Strong Exponential Time Hypothesis",
"aaai_2021_computing": "Computing Ex Ante Coordinated Team-Maxmin Equilibria in Zero-Sum Multiplayer Extensive-Form Games",
"aaai_2021_submodel": "Submodel Decomposition Bounds for Influence Diagrams",
"aaai_2021_unified": "Unified Tensor Framework for Incomplete Multi-view Clustering and Missing-view Inferring",
"aaai_2022_better": "Better Parameter-Free Stochastic Optimization with ODE Updates for Coin-Betting",
"aaai_2022_distributed": "Distributed Randomized Sketching Kernel Learning",
"aaai_2022_negative": "Negative Sample Matters: A Renaissance of Metric Learning for Temporal Grounding",
"aaai_2023_can": "Can Graph Neural Networks Learn to Solve the MaxSAT Problem? (Student Abstract)",
"aaai_2023_towards": "Towards Optimal Randomized Strategies in Adversarial Example Game",
"aaai_2023_truthful": "Truthful Mechanisms for Steiner Tree Problems",
"aamas_2020_a": "A norm enforcement mechanism for a time-constrained conditional normative framework",
"aamas_2020_from": "From demonstrations to task-space specifications. Using causal analysis to extract rule parameterization from demonstrations",
"aamas_2020_interactive": "Interactive task learning via embodied corrective feedback",
"aamas_2021_anegma:": "ANEGMA: an automated negotiation model for e-markets",
"aamas_2021_i2rl:": "I2RL: online inverse reinforcement learning under occlusion",
"aamas_2021_modelling": "Modelling and verification of reconfigurable multi-agent systems",
"aamas_2022_approximating": "Approximating voting rules from truncated ballots",
"aamas_2022_exploring": "Exploring the influence of a user-specific explainable virtual advisor on health behaviour change intentions",
"aamas_2022_formal": "Formal verification of neural agents in non-deterministic environments",
"aamas_2023_emergence": "Emergence of norms in interactions with complex rewards",
"aamas_2023_quantifying": "Quantifying over information change with common knowledge",
"aamas_2023_symbolic": "Symbolic knowledge injection meets intelligent agents: QoS metrics and experiments",
"accv_2020_fan:": "FAN: Feature Adaptation Network for Surveillance Face Recognition and Normalization",
"accv_2020_faster,": "Faster, Better and More Detailed: 3D Face Reconstruction with Graph Convolutional Networks",
"accv_2020_visually": "Visually Guided Sound Source Separation Using Cascaded Opponent Filter Network",
"accv_2022_layered-garment": "Layered-Garment Net: Generating Multiple Implicit Garment Layers from a Single Image",
"accv_2022_patchflow:": "PatchFlow: A Two-Stage Patch-Based Approach for Lightweight Optical Flow Estimation",
"accv_2022_utb180:": "UTB180: A High-Quality Benchmark for Underwater Tracking",
"acisp_2020_a": "A Novel Duplication Based Countermeasure to Statistical Ineffective Fault Analysis",
"acisp_2020_from": "From Rerandomizability to Sequential Aggregation: Efficient Signature Schemes Based on SXDH Assumption",
"acisp_2020_on": "On Lattice-Based Interactive Protocols: An Approach with Less or No Aborts",
"acisp_2021_an": "An Anonymous Trace-and-Revoke Broadcast Encryption Scheme",
"acisp_2021_anonymous": "Anonymous Lattice Identity-Based Encryption with Traceable Identities",
"acisp_2021_updatable": "Updatable Trapdoor SPHFs: Modular Construction of Updatable Zero-Knowledge Arguments and More",
"acisp_2022_fast": "Fast Skinny-128 SIMD Implementations for Sequential Modes of Operation",
"acisp_2022_fiat-shamir": "Fiat-Shamir Signatures Based on Module-NTRU",
"acisp_2022_hybrid": "Hybrid Dual and Meet-LWE Attack",
"acisp_2023_csi-shark:": "CSI-SharK: CSI-FiSh with Sharing-friendly Keys",
"acisp_2023_key": "Key Recovery Attacks on Grain-Like Keystream Generators with Key Injection",
"acisp_2023_reconsidering": "Reconsidering Generic Composition: The Modes A10, A11 and A12 are Insecure",
"acl_2020_applying": "Applying Transformers and Aspect-based Sentiment Analysis approaches on Sarcasm Detection",
"acl_2020_augmenting": "Augmenting Neural Metaphor Detection with Concreteness",
"acl_2020_detecting": "Detecting Sarcasm in Conversation Context Using Transformer-Based Models",
"acl_2021_automatic": "Automatic Learning Assistant in Telugu",
"acl_2021_building": "Building Goal-oriented Document-grounded Dialogue Systems",
"acl_2021_ensemble": "Ensemble ALBERT and RoBERTa for Span Prediction in Question Answering",
"acl_2022_d-rex:": "D-REX: Dialogue Relation Extraction with Explanations",
"acl_2022_relevance": "Relevance in Dialogue: Is Less More? An Empirical Comparison of Existing Metrics, and a Novel Simple Metric",
"acl_2022_retronlu:": "RetroNLU: Retrieval Augmented Task-Oriented Semantic Parsing",
"acl_2023_a": "A Survey of Evaluation Methods of Generated Medical Textual Reports",
"acl_2023_overview": "Overview of the MEDIQA-Chat 2023 Shared Tasks on the Summarization & Generation of Doctor-Patient Conversations",
"acl_2023_training": "Training Models on Oversampled Data and a Novel Multi-class Annotation Scheme for Dementia Detection",
"acmidc_2020_designing": "Designing dyadic caregiver-child personas for interactive digital media use",
"acmidc_2020_exploring": "Exploring accessible programming with educators and visually impaired children",
"acmidc_2020_impact": "Impact of exergames and game elements on cerebral palsy children: resistance and sound",
"acmidc_2021_designing": "Designing Children's New Learning Partner: Collaborative Artificial Intelligence for Learning to Solve the Rubik's Cube",
"acmidc_2021_engage!:": "Engage!: Co-designing Search Engine Result Pages to Foster Interactions",
"acmidc_2022_co-designing": "Co-Designing with Mixed-Ability Groups of Children to Promote Inclusive Education",
"acmidc_2022_exploring": "Exploring Caregiver Support for and Conceptualizations of Their Children's Entrepreneurship in Interactive Online Spaces",
"acmidc_2022_snoozy:": "Snoozy: A Chatbot-Based Sleep Diary for Children Aged Eight to Twelve",
"acmidc_2023_\"money": "\"Money shouldn't be money!\" : An Examination of Financial Literacy and Technology for Children Through Co-Design",
"acmidc_2023_supporting": "Supporting Teens' Intentional Social Media Use Through Interaction Design: An exploratory proof-of-concept study",
"acmidc_2023_tactopi:": "TACTOPI: Exploring Play with an Inclusive Multisensory Environment for Children with Mixed-Visual Abilities",
"acml_2020_a": "A State Aggregation Approach for Solving Knapsack Problem with Deep Reinforcement Learning",
"acml_2020_exact": "Exact Passive-Aggressive Algorithms for Multiclass Classification Using Bandit Feedbacks",
"acml_2020_inverse": "Inverse Visual Question Answering with Multi-Level Attentions",
"acml_2021_beyond": "Beyond Lp Clipping: Equalization based Psychoacoustic Attacks against ASRs",
"acml_2021_ctab-gan:": "CTAB-GAN: Effective Table Data Synthesizing",
"acml_2021_lifelong": "Lifelong Learning with Branching Experts",
"acml_2022_constrained": "Constrained Density Matching and Modeling for Cross-lingual Alignment of Contextualized Representations",
"acml_2022_semantic": "Semantic Cross Attention for Few-shot Learning",
"acml_2022_towards": "Towards Data-Free Domain Generalization",
"acns_2020_investigation": "Investigation of Cyber Attacks on a Water Distribution System",
"acns_2020_powerless": "Powerless Security",
"acns_2020_timed": "Timed Signatures and Zero-Knowledge Proofs - Timestamping in the Blockchain Era -",
"acns_2021_access": "Access Control Encryption from Group Encryption",
"acns_2021_an": "An Efficient Passive-to-Active Compiler for Honest-Majority MPC over Rings",
"acns_2021_password": "Password Protected Secret Sharing from Lattices",
"acns_2022_faster": "Faster Kyber and Dilithium on the Cortex-M4",
"acns_2022_privacy-preserving": "Privacy-Preserving Record Linkage Using Local Sensitive Hash and Private Set Intersection",
"acns_2022_the": "The Etiology of Cybersecurity",
"acns_2023_a": "A New Approach to Garbled Circuits",
"acns_2023_forensic": "Forensic Identification of Android Trojans Using Stacked Ensemble of Deep Neural Networks",
"acns_2023_sok:": "SoK: Assisted Fault Simulation - Existing Challenges and Opportunities Offered by AI",
"acsac_2020_faulty": "Faulty Point Unit: ABI Poisoning Attacks on Intel SGX",
"acsac_2020_stegonet:": "StegoNet: Turn Deep Neural Network into a Stegomalware",
"acsac_2020_talek:": "Talek: Private Group Messaging with Hidden Access Patterns",
"acsac_2021_group": "Group Time-based One-time Passwords and its Application to Efficient Privacy-Preserving Proof of Location",
"acsac_2021_morphence:": "Morphence: Moving Target Defense Against Adversarial Examples",
"acsac_2021_practical": "Practical Attestation for Edge Devices Running Compute Heavy Machine Learning Applications",
"acsac_2022_if": "If You Can't Beat Them, Pay Them: Bitcoin Protection Racket is Profitable",
"acsac_2022_squeezing": "Squeezing More Utility via Adaptive Clipping on Differentially Private Gradients in Federated Meta-Learning",
"acsac_2022_typro:": "TyPro: Forward CFI for C-Style Indirect Function Calls Using Type Propagation",
"acsac_2023_mostree:": "Mostree: Malicious Secure Private Decision Tree Evaluation with Sublinear Communication",
"acsac_2023_no": "No Forking Way: Detecting Cloning Attacks on Intel SGX Applications",
"acsac_2023_secure": "Secure Softmax/Sigmoid for Machine-learning Computation",
"acta_2020_automated": "Automated formal synthesis of provably safe digital controllers for continuous plants",
"acta_2020_expressiveness": "Expressiveness of component-based frameworks: a study of the expressiveness of BIP",
"acta_2020_on": "On the probabilistic bisimulation spectrum with silent moves",
"acta_2021_a": "A formal methods approach to predicting new features of the eukaryotic vesicle traffic system",
"acta_2021_aggregation-based": "Aggregation-based minimization of finite state automata",
"acta_2021_on": "On the number of active states in finite automata",
"acta_2022_depth-first": "Depth-first search in directed planar graphs, revisited",
"acta_2022_sound": "Sound reasoning in tock-CSP",
"acta_2022_translation": "Translation validation of coloured Petri net models of programs on integers",
"acta_2023_on": "On first-order runtime enforcement of branching-time properties",
"acta_2023_secret-shared": "Secret-shared RAM indefinite private and secure RAM execution of perfectly unrevealed programs",
"acta_2023_the": "The second step in characterizing a three-word code",
"adhoc_2020_collision": "Collision decoding and reporting: A new collision resolution approach using full-duplex radio in WLANs",
"adhoc_2020_efficient": "Efficient provably-secure privacy-preserving signature-based key establishment protocol",
"adhoc_2020_uplink": "Uplink resource allocation for multicarrier grouping cognitive internet of things based on K-means Learning",
"adhoc_2021_energy-aware": "Energy-aware node selection scheme with friendly jamming technique for enhancing the secrecy of wireless powered sensor networks",
"adhoc_2021_machine": "Machine learning for 5G security: Architecture, recent advances, and challenges",
"adhoc_2021_special": "Special issue on \"performance evaluation, modeling and analysis of wireless Ad-Hoc networks\"",
"adhoc_2022_a": "A collaborative deep learning microservice for backdoor defenses in Industrial IoT networks",
"adhoc_2022_distributed": "Distributed sparsity-based non-linear regression with multiple kernels in wireless sensor networks",
"adhoc_2022_power": "Power allocation in D2D enabled cellular network with probability constraints: A robust Stackelberg game approach",
"adhoc_2023_novel": "Novel data return approach for internet of vehicles based on edge computing",
"adhoc_2023_power": "Power efficient UAV placement and resource allocation for adaptive video streaming in wireless networks",
"adhoc_2023_provably": "Provably secured lightweight authenticated key agreement protocol for modern health industry",
"adma_2020_applications": "Applications of Big Data in Tourism: A Survey",
"adma_2020_dgrl:": "DGRL: Text Classification with Deep Graph Residual Learning",
"adma_2020_subspace-weighted": "Subspace-Weighted Consensus Clustering for High-Dimensional Data",
"adma_2021_a": "A Fast and Accurate Approach for Inferencing Social Relationships Among IoT Objects",
"adma_2021_profiling": "Profiling Fake News: Learning the Semantics and Characterisation of Misinformation",
"adma_2021_supervised": "Supervised Contrastive Learning for Product Classification",
"adma_2022_a": "A Cricket-Based Selection Hyper-Heuristic for Many-Objective Optimization Problems",
"adma_2022_influential": "Influential Billboard Slot Selection Using Pruned Submodularity Graph",
"adma_2022_on": "On Reducing the Bias of Random Forest",
"adma_2023_a": "A Hessian-Based Federated Learning Approach to Tackle Statistical Heterogeneity",
"adma_2023_exploration": "Exploration of Stochastic Selection of Splitting Attributes as a Source of Inducing Diversity",
"adma_2023_searching": "Searching User Community and Attribute Location Cluster in Location-Based Social Networks",
"aei_2020_a": "A knowledge support approach for the preliminary design of platform-based products in Engineering-To-Order manufacturing",
"aei_2020_an": "An evaluation of pose-normalization algorithms for point clouds introducing a novel histogram-based approach",
"aei_2020_application": "Application of industrial pipelines data generator in the experimental analysis: Pipe spooling optimization problem definition, formulation, and testing",
"aei_2021_artificial": "Artificial intelligence for BIM content management and delivery: Case study of association rule mining for construction detailing",
"aei_2021_digital": "Digital Twin as a Service (DTaaS) in Industry 4.0: An Architecture Reference Model",
"aei_2021_effectiveness": "Effectiveness of VR-based training on improving construction workers' knowledge, skills, and safety behavior in robotic teleoperation",
"aei_2022_ensemble-learning": "Ensemble-learning approach for the classification of Levels Of Geometry (LOG) of building elements",
"aei_2022_forecasting": "Forecasting highly fluctuating electricity load using machine learning models based on multimillion observations",
"aei_2022_stacking": "Stacking Deep learning and Machine learning models for short-term energy consumption forecasting",
"aei_2023_a": "A comprehensive mathematical model for quality integration in a project supply chain with concentrating on material flow and transportation",
"aei_2023_fixed": "Fixed charge 4-dimensional transportation problem for breakable incompatible items with type-2 fuzzy random parameters under volume constraint",
"aei_2023_participants": "Participants matter: Effectiveness of VR-based training on the knowledge, trust in the robot, and self-efficacy of construction workers and university students",
"aistats_2020_learning": "Learning Hierarchical Interactions at Scale: A Convex Optimization Approach",
"aistats_2020_neighborhood": "Neighborhood Growth Determines Geometric Priors for Relational Representation Learning",
"aistats_2020_wasserstein": "Wasserstein Smoothing: Certified Robustness against Wasserstein Adversarial Attacks",
"aistats_2021_efficient": "Efficient Statistics for Sparse Graphical Models from Truncated Samples",
"aistats_2021_evading": "Evading the Curse of Dimensionality in Unconstrained Private GLMs",
"aistats_2021_on": "On the convergence of the Metropolis algorithm with fixed-order updates for multivariate binary probability distributions",
"aistats_2022_learning": "Learning Sparse Fixed-Structure Gaussian Bayesian Networks",
"aistats_2022_on": "On Uncertainty Estimation by Tree-based Surrogate Models in Sequential Model-based Optimization",
"aistats_2022_provable": "Provable Adversarial Robustness for Fractional Lp Threat Models",
"aistats_2023_deep": "Deep Neural Networks with Efficient Guaranteed Invariances",
"aistats_2023_oblivious": "Oblivious near-optimal sampling for multidimensional signals with Fourier constraints",
"aistats_2023_uncertainty": "Uncertainty Estimates of Predictions via a General Bias-Variance Decomposition",
"algorithmica_2020_on": "On Bubble Generators in Directed Graphs",
"algorithmica_2020_parameterized": "Parameterized Complexity of Conflict-Free Matchings and Paths",
"algorithmica_2021_local": "Local Geometric Spanners",
"algorithmica_2021_simultaneous": "Simultaneous Feedback Edge Set: A Parameterized Perspective",
"algorithmica_2021_succinct": "Succinct Encodings for Families of Interval Graphs",
"algorithmica_2022_parameterized": "Parameterized Complexity of Maximum Edge Colorable Subgraph",
"algorithmica_2022_preclustering": "Preclustering Algorithms for Imprecise Points",
"algorithmica_2022_the": "The Heaviest Induced Ancestors Problem: Better Data Structures and Applications",
"algorithmica_2023_algebraic": "Algebraic Restriction Codes and Their Applications",
"algorithmica_2023_grundy": "Grundy Coloring and Friends, Half-Graphs, Bicliques",
"algorithmica_2023_parameterized": "Parameterized Complexity of Minimum Membership Dominating Set",
"alife_2020_an": "An Investigation into the Origin of Autopoiesis",
"alife_2020_chemobrionics:": "Chemobrionics: From Self-Assembled Material Architectures to the Origin of Life",
"alife_2020_the": "The Effect of Social Information Use Without Learning on the Evolution of Social Behavior",
"alife_2021_a": "A Brief History of Artificial Intelligence Research",
"alife_2021_are": "Are Artificial Dendrites Useful in Neuro-Evolution",
"alife_2021_the": "The Impossibility of Automating Ambiguity",
"alife_2022_comment": "Comment on Paolo Euron's \"Uncanny Beauty: Aesthetics of Companionship, Love, and Sex Robots\"",
"alife_2022_crowd-sourced": "Crowd-Sourced Identification of Characteristics of Collective Human Motion",
"alife_2022_making": "Making Artificial Brains: Components, Topology, and Optimization",
"alife_2023_a": "A Generalised Dropout Mechanism for Distributed Systems",
"alife_2023_lessons": "Lessons from the Evolutionary Computation Bestiary",
"alife_2023_the": "The Elements of Intelligence",
"alt_2020_leverage": "Leverage Score Sampling for Faster Accelerated Regression and ERM",
"alt_2020_on": "On Learnability wih Computable Learners",
"alt_2020_optimal": "Optimal multiclass overfitting by sequence reconstruction from Hamming queries",
"alt_2021_attribute-efficient": "Attribute-Efficient Learning of Halfspaces with Malicious Noise: Near-Optimal Label Complexity and Noise Tolerance",
"alt_2021_efficient": "Efficient sampling from the Bingham distribution",
"alt_2021_testing": "Testing Product Distributions: A Closer Look",
"alt_2022_efficient": "Efficient Methods for Online Multiclass Logistic Regression",
"alt_2022_implicit": "Implicit Parameter-free Online Learning with Truncated Linear Models",
"alt_2022_understanding": "Understanding Simultaneous Train and Test Robustness",
"alt_2023_reconstructing": "Reconstructing Ultrametric Trees from Noisy Experiments",
"alt_2023_testing": "Testing Tail Weight of a Distribution Via Hazard Rate",
"alt_2023_variance-reduced": "Variance-Reduced Conservative Policy Iteration",
"amia_2020_detection": "Detection of reticular pseudodrusen using deep learning",
"amia_2020_nlm-scrubber": "NLM-Scrubber - a Software Application for Clinical Text De-Identification",
"amia_2020_predicting": "Predicting Section Location of Clinical Sentences using BERT Encoder - A Pilot Study",
"amia_2021_am2bert:": "AM2BERT: attention guided and regularized transformer-based multi-label classification model for COVID-19 literature curation",
"amia_2021_data-driven": "Data-Driven Patterns in Protective Effects of Ibuprofen and Ketorolac on Hospitalized Covid-19 Patients",
"amia_2021_deep": "Deep learning detection of reticular pseudodrusen using multi-modal, multi-task, and multi-attention mechanisms: towards automated and accessible classification of age-related macular degeneration",
"amia_2022_automated": "Automated and Accessible Diagnosis of Age-related Macular Degeneration: a Comparative Analysis of the impact of machine learning models in clinical diagnostic Workflows",
"amia_2022_deep": "Deep learning automated diagnosis and quantitative classification of cataract type and severity: quantifying the effectiveness and usability of deep learning-assisted disease diagnosis models with 14 ophthalmologists and multi-center validations",
"amia_2022_temporal": "Temporal Cohort Logic",
"ancs_2021_networked": "Networked Answer to \"Life, The Universe, and Everything\"",
"ancs_2021_on": "On Efficient Oblivious Wavelength Assignments for Programmable Wide-Area Topologies",
"ancs_2021_towards": "Towards a more programmable and performance-optimized Virtual Switch: Introducing P4 programmability within OVS",
"apal_2020_determinate": "Determinate logic and the Axiom of Choice",
"apal_2020_herbrand's": "Herbrand's theorem as higher order recursion",
"apal_2020_the": "The theory of ceers computes true arithmetic",
"apal_2021_a": "A characterization of \u03a311-reflecting ordinals",
"apal_2021_denseness": "Denseness results in the theory of algebraic fields",
"apal_2021_long": "Long games and \u03c3-projective sets",
"apal_2022_complexity": "Complexity in the interdefinability of timelike, lightlike and spacelike relatedness of Minkowski spacetime",
"apal_2022_the": "The number of axioms",
"apal_2022_unifying": "Unifying hidden-variable problems from quantum mechanics by logics of dependence and independence",
"apal_2023_frame": "Frame definability in finitely valued modal logics",
"apal_2023_independence": "Independence relations for exponential fields",
"apal_2023_the": "The L\u00f6wenheim-Skolem theorem for G\u00f6del logic",
"apin_2020_mining": "Mining clique frequent approximate subgraphs from multi-graph collections",
"apin_2020_residual": "Residual learning based densely connected deep dilated network for joint deblocking and super resolution",
"apin_2020_rule-centred": "Rule-centred genetic programming (RCGP): an imperialist competitive approach",
"apin_2021_a": "A scalable parallel Chinese online encyclopedia knowledge denoising method based on entry tags and Spark cluster",
"apin_2021_group": "Group decision support model based on sequential additive complementary pairwise comparisons",
"apin_2021_iterative": "Iterative rating prediction for neighborhood-based collaborative filtering",
"apin_2022_coupled": "Coupled low rank representation and subspace clustering",
"apin_2022_feature": "Feature selection techniques in the context of big data: taxonomy and analysis",
"apin_2022_improved": "Improved Salp swarm algorithm for solving single-objective continuous optimization problems",
"apin_2023_multilevel": "Multilevel thresholding image segmentation using meta-heuristic optimization algorithms: comparative analysis, open challenges and new trends",
"apin_2023_opposition-based": "Opposition-based sine cosine optimizer utilizing refraction learning and variable neighborhood search for feature selection",
"apin_2023_secure": "Secure relay selection scheme for Traffic Congested Zone in VANET using grasshopper optimization and modified authentication key agreement algorithms",
"aplas_2020_an": "An Abstract Machine for Strong Call by Value",
"aplas_2020_behavioural": "Behavioural Types for Memory and Method Safety in a Core Object-Oriented Language",
"aplas_2020_declarative": "Declarative Stream Runtime Verification (hLola)",
"aplas_2021_adaptable": "Adaptable Traces for Program Explanations",
"aplas_2021_fully": "Fully Abstract and Robust Compilation: And How to Reconcile the Two, Abstractly",
"aplas_2021_solving": "Solving Not-Substring Constraint withFlat Abstraction",
"aplas_2022_decoupling": "Decoupling the Ascending and Descending Phases in Abstract Interpretation",
"aplas_2022_model-based": "Model-Based Fault Classification for Automotive Software",
"aplas_2022_rhle:": "RHLE: Modular Deductive Verification of Relational \u2200 \u2203 Properties",
"aplas_2023_a": "A Diamond Machine for Strong Evaluation",
"aplas_2023_m-cfa": "m-CFA Exhibits Perfect Stack Precision",
"aplas_2023_oracle": "Oracle Computability and Turing Reducibility in the Calculus of Inductive Constructions",
"apnet_2020_a": "A Case for SmartNIC-accelerated Private Communication",
"apnet_2020_an": "An Intermediate Representation for Network Programming Languages",
"apnet_2020_one": "One Rein to Rule Them All: A Framework for Datacenter-to-User Congestion Control",
"apnet_2021_leveraging": "Leveraging Programmable Dataplanes for a High Performance 5G User Plane Function",
"apnet_2021_phpa:": "pHPA: A Proactive Autoscaling Framework for Microservice Chain",
"apnet_2021_physical-layer": "Physical-Layer Informed Multipath Redundancy Optimization for Mobile Real-Time Communication",
"apnet_2022_kubeklone:": "KubeKlone: A Digital Twin for Simulating Edge and Cloud Microservices",
"apnet_2022_memoco:": "MEMOCO: Memory-Efficient 100 Gbps Traffic Replay with Sequence Guarantee on Multi-core Servers",
"apnet_2022_opennetlab:": "OpenNetLab: Open Platform for RL-based Congestion Control for Real-Time Communications",
"apnet_2023_amphis:": "Amphis: Rearchitecturing Congestion Control for Capturing Internet Application Variety",
"apnet_2023_in-network": "In-Network Probabilistic Monitoring Primitives under the Influence of Adversarial Network Inputs",
"apnet_2023_indirect": "Indirect Network Troubleshooting with The Chase",
"apnoms_2020_comparison": "Comparison of Distance Measurement in Time Series Clustering for Predicting Bitcoin Prices",
"apnoms_2020_energy-efficient": "Energy-Efficient Offloading and User Association in UAV-assisted Vehicular Ad Hoc Network",
"apnoms_2020_ibnslicing:": "IBNSlicing: Intent-Based Network Slicing Framework for 5G Networks using Deep Learning",
"apnoms_2021_cognitive": "Cognitive Collision Resolution for Enhanced Performance in C-V2X Sidelink Mode 4",
"apnoms_2021_machine": "Machine Learning-based Cache Optimization on MEC Platform",
"apnoms_2021_network": "Network Data Analytics Function for IBN-based Network Slice Lifecycle Management",
"apnoms_2022_adaptive": "Adaptive Ensemble Learning-based Network Resource Workload Prediction for VNF Lifecycle Management",
"apnoms_2022_service": "Service Deployment with Per-Flow-Priority-Based Virtual Network Function Resizing",
"apnoms_2022_software": "Software Defined Perimeter Monitoring and Blockchain-Based Verification of Policy Mapping",
"apnoms_2023_optimizing": "Optimizing Performance Using GPU Cache Data Residency Based on Application's Access Patterns",
"apnoms_2023_performance": "Performance Enhancements of C-V2X Mode 4 with Virtual Cell and Resource Usage Bitmap",
"apnoms_2023_transformer-based": "Transformer-based Communication Resource Allocation for Holographic Beamforming: A Distributed Artificial Intelligence Framework",
"apsec_2020_a": "A Report on the First Workshop on Natural Language Processing Advancements for Software Engineering (NLPaSE) co-located with APSEC 2020 (short paper)",
"apsec_2020_reducing": "Reducing Regression Test Suites using the Word2Vec Natural Language Processing Tool",
"apsec_2020_understanding": "Understanding the Involvement of Developers in Missing Link Community Smell: An exploratory Study on Apache Projects",
"apsec_2021_a": "A Multi-factor Approach for Flaky Test Detection and Automated Root Cause Analysis",
"apsec_2021_the": "The Perceived Effects of Introducing Coaching on the Development of Student's Soft Skills Managing Software Quality",
"apsec_2022_business": "Business Process Model Annotation Techniques: Identification, Classification and Analysis",
"apsec_2022_the": "The Language of Programming: On the Vocabulary of Names",
"apsec_2022_using": "Using Student-generated Questions in Software Engineering Courses",
"apsec_2023_proposals": "Proposals for Improving the Assessment of Medical Device Software in Thailand",
"apsec_2023_research": "Research on Software Quality Characteristics based on MBSE System",
"apsec_2023_software": "Software Defect Prediction based on JavaBERT and CNN-BiLSTM",
"apweb_2020_a": "A Method for Place Name Recognition in Tang Poetry Based on Feature Templates and Conditional Random Field",
"apweb_2020_neighborhood": "Neighborhood Query Processing and Surrounding Objects Retrieval in Spatial Databases: Applications and Algorithms",
"apweb_2020_sorting-based": "Sorting-Based Interactive Regret Minimization",
"apweb_2021_chinese": "Chinese Word Embedding Learning with Limited Data",
"apweb_2021_embert:": "EMBERT: A Pre-trained Language Model for Chinese Medical Text Mining",
"apweb_2021_resource": "Resource Trading with Hierarchical Game for Computing-Power Network Market",
"apweb_2022_a": "A Social-Aware Deep Learning Approach for Hate-Speech Detection",
"apweb_2022_high-order": "High-Order Correlation Embedding for Large-Scale Multi-modal Hashing",
"apweb_2022_specific": "Specific Emitter Identification Based on ACO-XGBoost Feature Selection",
"artmed_2020_a": "A novel method for predicting the progression rate of ALS disease based on automatic generation of probabilistic causal chains",
"artmed_2020_g-forest:": "G-Forest: An ensemble method for cost-sensitive feature selection in gene expression microarrays",
"artmed_2020_sleep": "Sleep stage classification for child patients using DeConvolutional Neural Network",
"artmed_2021_artificial": "Artificial intelligence in gynecologic cancers: Current status and future challenges - A systematic review",
"artmed_2021_classification": "Classification of diabetic retinopathy using unlabeled data and knowledge distillation",
"artmed_2021_substituting": "Substituting clinical features using synthetic medical phrases: Medical text data augmentation techniques",
"artmed_2022_capillarynet:": "CapillaryNet: An automated system to quantify skin capillary density and red blood cell velocity from handheld vital microscopy",
"artmed_2022_harmony": "Harmony search: Current studies and uses on healthcare systems",
"artmed_2022_predicting": "Predicting liver cancers using skewed epidemiological data",
"artmed_2023_a": "A PROMETHEE based outranking approach for the construction of Fangcang shelter hospital using spherical fuzzy sets",
"artmed_2023_an": "An integrated ELECTRE method for selection of rehabilitation center with m-polar fuzzy N-soft information",
"artmed_2023_deepmnf:": "DeepMNF: Deep Multimodal Neuroimaging Framework for Diagnosing Autism Spectrum Disorder",
"asap_2020_condensing": "Condensing an overload of parallel computing ingredients into a single architecture recipe",
"asap_2020_persistent": "Persistent Fault Analysis of Neural Networks on FPGA-based Acceleration System",
"asap_2020_reconfigurable": "Reconfigurable Stream-based Tensor Unit with Variable-Precision Posit Arithmetic",
"asap_2021_abaca:": "ABACa: Access Based Allocation on Set Wise Multi-Retention in STT-RAM Last Level Cache",
"asap_2021_cgra-me:": "CGRA-ME: An Open-Source Framework for CGRA Architecture and CAD Research : (Invited Paper)",
"asap_2021_opencgra:": "OpenCGRA: Democratizing Coarse-Grained Reconfigurable Arrays",
"asap_2022_answer": "Answer Fast: Accelerating BERT on the Tensor Streaming Processor",
"asap_2022_efficient": "Efficient FPGA-based ECDSA Verification Engine for Permissioned Blockchains",
"asap_2022_mask-net:": "Mask-Net: A Hardware-efficient Object Detection Network with Masked Region Proposals",
"asap_2023_farslayer:": "FarSlayer: Turnkey Acceleration of Legacy Software on Commodity FPGA Cards",
"asap_2023_precog:": "PreCog: Near-Storage Accelerator for Heterogeneous CNN Inference",
"asap_2023_sona:": "SONA: An Accelerator for Transform-Domain Neural Networks with Sparse-Orthogonal Weights",
"asiaccs_2021_deepsweep:": "DeepSweep: An Evaluation Framework for Mitigating DNN Backdoor Attacks using Data Augmentation",
"asiaccs_2021_morshed:": "Morshed: Guiding Behavioral Decision-Makers towards Better Security Investment in Interdependent Systems",
"asiaccs_2021_scanning": "Scanning the Cycle: Timing-based Authentication on PLCs",
"asiaccs_2022_black-box": "Black-box and Target-specific Attack Against Interpretable Deep Learning Systems",
"asiaccs_2022_dpase:": "DPaSE: Distributed Password-Authenticated Symmetric-Key Encryption, or How to Get Many Keys from One Password",
"asiaccs_2022_hierarchical": "Hierarchical Identity-based Puncturable Encryption from Lattices with Application to Forward Security",
"asiaccs_2023_cage4deno:": "Cage4Deno: A Fine-Grained Sandbox for Deno Subprocesses",
"asiaccs_2023_payment": "Payment with Dispute Resolution: A Protocol for Reimbursing Frauds Victims",
"asiaccs_2023_poster:": "POSTER: Leveraging eBPF to enhance sandboxing of WebAssembly runtimes",
"asiacrypt_2020_inner-product": "Inner-Product Functional Encryption with Fine-Grained Access Control",
"asiacrypt_2020_maliciously": "Maliciously Secure Matrix Multiplication with Applications to Private Deep Learning",
"asiacrypt_2020_twisted-phs:": "Twisted-PHS: Using the Product Formula to Solve Approx-SVP in Ideal Lattices",
"asiacrypt_2021_algebraic": "Algebraic Adversaries in the Universal Composability Framework",
"asiacrypt_2021_improved": "Improved Single-Round Secure Multiplication Using Regenerating Codes",
"asiacrypt_2021_security": "Security Analysis of CPace",
"asiacrypt_2022_cryptographic": "Cryptographic Primitives with Hinting Property",
"asiacrypt_2022_snacks:": "SNACKs: Leveraging Proofs of Sequential Work for Blockchain Light Clients",
"asiacrypt_2022_state": "State Machine Replication Under Changing Network Conditions",
"asiacrypt_2023_on": "On the (Im)possibility of Time-Lock Puzzles in the Quantum Random Oracle Model",
"asiacrypt_2023_the": "The Pre-Shared Key Modes of HPKE",
"asiacrypt_2023_two-round": "Two-Round Concurrent 2PC from Sub-exponential LWE",
"aspdac_2020_design": "Design of a Single-Stage Wireless Charger with 92.3%-Peak-Efficiency for Portable Devices Applications",
"aspdac_2020_ferroelectrics:": "Ferroelectrics: From Memory to Computing",
"aspdac_2020_hl-pow:": "HL-Pow: A Learning-Based Power Modeling Framework for High-Level Synthesis",
"aspdac_2021_a": "A Highly Integrated Energy-efficient CMOS Millimeter-wave Transceiver with Direct-modulation Digital Transmitter, Quadrature Phased-coupled Frequency Synthesizer and Substrate-Integrated Waveguide E-shaped Patch Antenna",
"aspdac_2021_optimizing": "Optimizing Temporal Decoupling using Event Relevance",
"aspdac_2021_system-level": "System-Level Verification of Linear and Non-Linear Behaviors of RF Amplifiers using Metamorphic Relations",
"aspdac_2022_automating": "Automating Analog Constraint Extraction: From Heuristics to Learning: (Invited Paper)",
"aspdac_2022_easymac:": "EasyMAC: Design Exploration-Enabled Multiplier-Accumulator Generator Using a Canonical Architectural Representation: (Invited Paper)",
"aspdac_2022_generative-adversarial-network-guided": "Generative-Adversarial-Network-Guided Well-Aware Placement for Analog Circuits",
"aspdac_2023_graph": "Graph Neural Networks: A Powerful and Versatile Tool for Advancing Design, Reliability, and Security of ICs",
"aspdac_2023_knowledge": "Knowledge Distillation in Quantum Neural Network Using Approximate Synthesis",
"aspdac_2023_tic-sat:": "TiC-SAT: Tightly-Coupled Systolic Accelerator for Transformers",
"asplos_2020_cross-failure": "Cross-Failure Bug Detection in Persistent Memory Programs",
"asplos_2020_hsm:": "HSM: A Hybrid Slowdown Model for Multitasking GPUs",
"asplos_2020_why": "Why GPUs are Slow at Executing NFAs and How to Make them Faster",
"asplos_2021_logical": "Logical abstractions for noisy variational Quantum algorithm simulation",
"asplos_2021_q-vr:": "Q-VR: system-level design for future mobile collaborative virtual reality",
"asplos_2021_reducing": "Reducing solid-state drive read latency by optimizing read-retry",
"asplos_2022_a": "A tree clock data structure for causal orderings in concurrent executions",
"asplos_2022_adelie:": "Adelie: continuous address space layout re-randomization for Linux drivers",
"asplos_2022_every": "Every walk's a hit: making page walks single-access cache hits",
"asplos_2023_sigma:": "Sigma: Compiling Einstein Summations to Locality-Aware Dataflow",
"asplos_2023_telamalloc:": "TelaMalloc: Efficient On-Chip Memory Allocation for Production Machine Learning Accelerators",
"asplos_2023_ugrapher:": "uGrapher: High-Performance Graph Operator Computation via Unified Abstraction for Graph Neural Networks",
"assets_2020_emergency": "Emergency navigation assistance for industrial plants workers subject to situational impairment",
"assets_2020_eyelid": "Eyelid Gestures on Mobile Devices for People with Motor Impairments",
"assets_2020_tactopi:": "TACTOPI: a Playful Approach to Promote Computational Thinking for Visually Impaired Children",
"assets_2021_accessing": "Accessing Passersby Proxemic Signals through a Head-Worn Camera: Opportunities and Limitations for the Blind",
"assets_2021_i": "I See What You're Saying: A Literature Review of Eye Tracking Research in Communication of Deaf or Hard of Hearing Users",
"assets_2021_sound": "Sound Cells: Rendering Visual and Braille Music in the Browser",
"assets_2022_designing": "Designing a Customizable Picture-Based Augmented Reality Application For Therapists and Educational Professionals Working in Autistic Contexts",
"assets_2022_lessons": "Lessons Learned from Designing, Deploying and Testing an Accessible BLE Beacon-based Wayfinding System in a Multi-Floor Indoor Environment",
"assets_2022_proaesthetics:": "ProAesthetics: Changing How We View Prosthetic Function",
"assets_2023_a": "A Gallery In My Hand: A Multi-Exhibition Investigation of Accessible and Inclusive Gallery Experiences for Blind and Low Vision Visitors",
"assets_2023_developing": "Developing and Deploying a Real-World Solution for Accessible Slide Reading and Authoring for Blind Users",
"atal_2020_finding": "Finding and Recognizing Popular Coalition Structures",
"atal_2020_on": "On the Complexity of Destructive Bribery in Approval-Based Multi-winner Voting",
"atal_2020_strategyproof": "Strategyproof Multi-Item Exchange Under Single-Minded Dichotomous Preferences",
"atal_2021_anytime": "Anytime Multi-Agent Path Finding via Large Neighborhood Search",
"atal_2021_multi-robot": "Multi-Robot Task Allocation-Complexity and Approximation",
"atal_2021_on": "On the Indecisiveness of Kelly-Strategyproof Social Choice Functions",
"atal_2022_on": "On the Complexity of Controlling Amendment and Successive Winners",
"atal_2022_safety": "Safety Shields, an Automated Failure Handling Mechanism for BDI Agents",
"atal_2022_task": "Task Generalisation in Multi-Agent Reinforcement Learning",
"atal_2023_finding": "Finding Optimal Nash Equilibria in Multiplayer Games via Correlation Plans",
"atal_2023_on": "On the Complexity of the Two-Stage Majority Rule",
"atal_2023_probabilistic": "Probabilistic Rationing with Categorized Priorities: Processing Reserves Fairly and Efficiently",
"ats_2020_a": "A comparative analysis of LFSR cascading for hardware efficiency and high fault coverage in BIST applications",
"ats_2020_on-chip": "On-chip EOL Prognostics Using Data-Fusion of Embedded Instruments for Dependable MP-SoCs",
"ats_2020_theoretical": "Theoretical Analysis on Noise Performance of Modulated Wideband Converters for Analog Testing",
"ats_2021_further": "Further Analysis of Laser-induced IR-drop",
"ats_2021_lightweight": "Lightweight Hardware-Based Memory Protection Mechanism on IoT Processors",
"ats_2021_side-channel": "Side-Channel Attacks on Triple Modular Redundancy Schemes",
"ats_2023_a": "A Low-Delay Quadruple-Node-Upset Self-Recoverable Latch Design",
"ats_2023_device": "Device Aware Diagnosis for Unique Defects in STT-MRAMs",
"ats_2023_enabling": "Enabling Inter-Product Transfer Learning on MCU Performance Screening",
"atva_2020_neuralexplorer:": "NeuralExplorer: State Space Exploration of Closed Loop Control Systems Using Neural Networks",
"atva_2020_probabilistic": "Probabilistic Hyperproperties with Nondeterminism",
"atva_2020_proving": "Proving Non-inclusion of B\u00fcchi Automata Based on Monte Carlo Sampling",
"atva_2021_incorporating": "Incorporating Monitors in Reactive Synthesis Without Paying the Price",
"atva_2021_probabilistic": "Probabilistic Causes in Markov Chains",
"atva_2021_verification": "Verification by Gambling on Program Slices",
"atva_2022_optimistic": "Optimistic and Topological Value Iteration for Simple Stochastic Games",
"atva_2022_prioritizing": "Prioritizing Corners in OoD Detectors via Symbolic String Manipulation",
"atva_2022_reusable": "Reusable Contracts for Safe Integration of Reinforcement Learning in Hybrid Systems",
"atva_2023_learning": "Learning Provably Stabilizing Neural Controllers for Discrete-Time Stochastic Systems",
"atva_2023_tailoring": "Tailoring Stateless Model Checking for Event-Driven Multi-threaded Programs",
"atva_2023_using": "Using Counterexamples to Improve Robustness Verification in Neural Networks",
"avi_2020_are": "Are Thermal Attacks Ubiquitous?: When Non-Expert Attackers Use Off the shelf Thermal Cameras",
"avi_2020_delex:": "DELEX: a DEep Learning Emotive eXperience: Investigating empathic HCI",
"avi_2020_interactive": "Interactive Human Centered Artificial Intelligence: A Definition and Research Challenges",
"avi_2022_reflex": "ReFlex Framework: Rapid Prototyping for Elastic Displays",
"avi_2022_video": "Video augmentation to support video-based learning",
"avi_2022_visuo-haptic": "Visuo-Haptic Interaction",
"behaviourIT_2020_on": "On the search behaviour of users in the context of interactive social book search",
"behaviourIT_2020_play": "Play in the smart city context: exploring interactional, bodily, social and spatial aspects of situated media interfaces",
"behaviourIT_2020_social": "Social media in conflicts and crises",
"behaviourIT_2021_analyzing": "Analyzing individuals' grip force over short intervals in a joystick-controlled task with and without a stress manipulation",
"behaviourIT_2021_understanding": "Understanding influential factors behind lurking behaviour in online cancer communities",
"behaviourIT_2021_using": "Using smartwatches for fitness and health monitoring: the UTAUT2 combined with threat appraisal as moderators",
"behaviourIT_2022_autismguide:": "AutismGuide: a usability guidelines to design software solutions for users with autism spectrum disorder",
"behaviourIT_2022_emotion": "Emotion and memory model for social robots: a reinforcement learning based behaviour selection",
"behaviourIT_2022_the": "The influence of hardiness and habit on security behaviour intention",
"behaviourIT_2023_changing": "Changing users' health behaviour intentions through an embodied conversational agent delivering explanations based on users' beliefs and goals",
"behaviourIT_2023_seize": "Seize the moment: the role of scrub nurses' proactivity in microsurgical operating-room collaborations",
"behaviourIT_2023_studying": "Studying the effect of symmetry in team structures on collaborative tasks in virtual reality",
"bib_2020_computational/in": "Computational/in silico methods in drug target and lead prediction",
"bib_2020_delivering": "Delivering blended bioinformatics training in resource-limited settings: a case study on the University of Khartoum H3ABioNet node",
"bib_2020_the": "The application of Hadoop in structural bioinformatics",
"bib_2021_cell": "Cell fate conversion prediction by group sparse optimization method utilizing single-cell and bulk OMICs data",
"bib_2021_neuropred-frl:": "NeuroPred-FRL: an interpretable prediction model for identifying neuropeptide using feature representation learning",
"bib_2021_understanding": "Understanding structural malleability of the SARS-CoV-2 proteins and relation to the comorbidities",
"bib_2022_an": "An evidence-based lexical pattern approach for quality assurance of Gene Ontology relations",
"bib_2022_online": "Online in silico validation of disease and gene sets, clusterings or subnetworks with DIGEST",
"bib_2022_pathway": "Pathway integration and annotation: building a puzzle with non-matching pieces and no reference picture",
"bib_2023_qmatey:": "Qmatey: an automated pipeline for fast exact matching-based alignment and strain-level taxonomic binning and profiling of metagenomes",
"bib_2023_ultraliser:": "Ultraliser: a framework for creating multiscale, high-fidelity and geometrically realistic 3D models for in silico neuroscience",
"bib_2023_unmf:": "UNMF: a unified nonnegative matrix factorization for multi-dimensional omics data",
"bibm_2020_deepcovidexplainer:": "DeepCOVIDExplainer: Explainable COVID-19 Diagnosis from Chest X-ray Images",
"bibm_2020_j2*:": "J2*: A New Method for Alignment-free Sequence Similarity Measurement",
"bibm_2020_spatial-temporal": "Spatial-temporal Joint optimization Network on Covariance Manifolds of Electroencephalography for Fatigue Detection",
"bibm_2021_a": "A Deep Learning Model for 16S rRNA Classification with Taxonomic Tree Embedding",
"bibm_2021_joint": "Joint feature and task aware multi-task feature learning for Alzheimer's disease diagnosis",
"bibm_2021_temporal": "Temporal Graph Representation Learning for Autism spectrum disorder Brain Networks",
"bibm_2022_arrhythmia": "Arrhythmia Classification Using CGAN-Augmented ECG Signals",
"bibm_2022_network": "Network based Identification of Dementia Onsets Using Structural MRI Network Signature",
"bibm_2022_tc-6ma-pred:": "TC-6mA-Pred: Prediction of DNA N6-Methyladenine Sites Using CNN with Transformer",
"bigdataconf_2020_a": "A Simple Low Cost Parallel Architecture for Big Data Analytics",
"bigdataconf_2020_an": "An ER-Flow Diagram for Big Data",
"bigdataconf_2020_examining": "Examining Deep Learning Models with Multiple Data Sources for COVID-19 Forecasting",
"bigdataconf_2021_bench-ranking:": "Bench-Ranking: A First Step Towards Prescriptive Performance Analyses For Big Data Frameworks",
"bigdataconf_2021_improving": "Improving Brain Dysfunction Prediction by GAN: A Functional-Connectivity Generator Approach",
"bigdataconf_2021_scientific": "Scientific Formula Retrieval via Tree Embeddings",
"bigdataconf_2022_a": "A Resident Recognition Using Real and Thermal Image Pairs",
"bigdataconf_2022_deepagait:": "DeePaGait: Motor Assessment of Parkinson's Disease Using a Multi-Layer 1D Convolutional Neural Network on Smartphone Gait Data",
"bigdataconf_2022_matching": "Matching Attacks on Non-deterministic Algorithms for Cell Suppression Problem for Tabular Data",
"bigdataconf_2023_an": "An Adaptive Hierarchical Method for Anytime Set-wise Clustering of Variable and High-Speed Data Streams",
"bigdataconf_2023_how": "How Global Retailer ADEO Migrated to Google BigQuery with Database Virtualization",
"bigdataconf_2023_optimization": "Optimization of Dangerous Goods Stowage: A Hybrid Approach between Faster R-CNN and Coronavirus Metaheuristic",
"bioinformatics_2020_bioinformatics": "Bioinformatics pipeline using JUDI: Just Do It",
"bioinformatics_2020_hlppred-fuse:": "HLPpred-Fuse: improved and robust prediction of hemolytic peptide and its activity by fusing multiple feature representation",
"bioinformatics_2020_proactive": "Proactive visual and statistical analysis of genomic data in Epiviz",
"bioinformatics_2021_'single-subject": "'Single-subject studies'-derived analyses unveil altered biomechanisms between very small cohorts: implications for rare diseases",
"bioinformatics_2021_metaball": "Metaball skinning of synthetic astroglial morphologies into realistic mesh models for in silico simulations and visual analytics",
"bioinformatics_2021_mzrapp:": "mzRAPP: a tool for reliability assessment of data pre-processing in non-targeted metabolomics",
"bioinformatics_2022_ablooper:": "ABlooper: fast accurate antibody CDR loop structure prediction with accuracy estimation",
"bioinformatics_2022_drummer": "DRUMMER - rapid detection of RNA modifications through comparative nanopore sequencing",
"bioinformatics_2022_massnet:": "massNet: integrated processing and classification of spatially resolved mass spectrometry data using deep learning for rapid tumor delineation",
"bioinformatics_2023_bakdrive:": "Bakdrive: identifying a minimum set of bacterial species driving interactions across multiple microbial communities",
"bioinformatics_2023_gsel:": "GSEL: a fast, flexible python package for detecting signatures of diverse evolutionary forces on genomic regions",
"bioinformatics_2023_protein-ligand": "Protein-ligand binding affinity prediction exploiting sequence constituent homology",
"bmcbi_2020_convolutional": "Convolutional neural network for automated mass segmentation in mammography",
"bmcbi_2020_enhancing": "Enhancing fragment-based protein structure prediction by customising fragment cardinality according to local secondary structure",
"bmcbi_2020_model-based": "Model-based clustering for flow and mass cytometry data with clinical information",
"bmcbi_2021_application": "Application of network link prediction in drug discovery",
"bmcbi_2021_constructing": "Constructing and analysing dynamic models with modelbase v1.2.3: a software update",
"bmcbi_2021_malaria": "Malaria parasite detection in thick blood smear microscopic images using modified YOLOV3 and YOLOV4 models",
"bmcbi_2022_multiview": "Multiview clustering of multi-omics data integration by using a penalty model",
"bmcbi_2022_npgreat:": "NPGREAT: assembly of human subtelomere regions with the use of ultralong nanopore reads and linked-reads",
"bmcbi_2022_p\u03c8finder:": "P\u03a8Finder: a practical tool for the identification and visualization of novel pseudogenes in DNA sequencing data",
"bmcbi_2023_hiss:": "HISS: Snakemake-based workflows for performing SMRT-RenSeq assembly, AgRenSeq and dRenSeq for the discovery of novel plant disease resistance genes",
"bmcbi_2023_prediction": "Prediction of diabetes disease using an ensemble of machine learning multi-classifier models",
"bmcbi_2023_reconstructing": "Reconstructing B cell lineage trees with minimum spanning tree and genotype abundances",
"bmvc_2020_rodeo:": "RODEO: Replay for Online Object Detection",
"bmvc_2020_stratified": "Stratified Autocalibration of Cameras with Euclidean Image Plane",
"bmvc_2020_unsupervised": "Unsupervised Domain Adaptation for Spatio-Temporal Action Localization",
"bmvc_2021_aei:": "AEI: Actors-Environment Interaction with Adaptive Attention for Temporal Action Proposals Generation",
"bmvc_2021_spatiotemporal": "Spatiotemporal Deformable Scene Graphs for Complex Activity Detection",
"bmvc_2021_tensor": "Tensor Component Analysis for Interpreting the Latent Space of GANs",
"bmvc_2022_image-to-image": "Image-to-Image Translation with Text Guidance",
"bmvc_2022_memory-driven": "Memory-Driven Text-to-Image Generation",
"bmvc_2022_mutual": "Mutual Conditional Probability for Self-Supervised Learning",
"bmvc_2023_attributes-aware": "Attributes-Aware Network for Temporal Action Detection",
"bmvc_2023_sketch-based": "Sketch-based Video Object Segmentation: Benchmark and Analysis",
"bmvc_2023_video-adverb": "Video-adverb retrieval with compositional adverb-action embeddings",
"cade_2021_improving": "Improving ENIGMA-style Clause Selection while Learning From History",
"cade_2021_non-well-founded": "Non-well-founded Deduction for Induction and Coinduction",
"cade_2021_the": "The Fusemate Logic Programming System",
"cade_2023_certified": "Certified Core-Guided MaxSAT Solving",
"cade_2023_on": "On Incremental Pre-processing for SMT",
"cade_2023_superposition": "Superposition with Delayed Unification",
"cagd_2020_computing": "Computing the topology of a plane or space hyperelliptic curve",
"cagd_2020_interpolation": "Interpolation of G1 Hermite data by C1 cubic-like sparse Pythagorean hodograph splines",
"cagd_2020_spatial": "Spatial Pythagorean-Hodograph B-Spline curves and 3D point data interpolation",
"cagd_2021_a": "A property of parametric polynomial approximants of half circles",
"cagd_2021_computing": "Computing projective equivalences of planar curves birationally equivalent to elliptic and hyperelliptic curves",
"cagd_2021_isogeometric": "Isogeometric collocation method with intuitive derivative constraints for PDE-based analysis-suitable parameterizations",
"cagd_2022_approximate": "Approximate symmetries of perturbed planar discrete curves",
"cagd_2022_efficient": "Efficient reparametrization into standard form and algorithmic characterization of rational ruled surfaces",
"cagd_2022_hyperbolic": "Hyperbolic barycentric coordinates and applications",
"cagd_2023_computing": "Computing the topology of the image of a parametric planar curve under a birational transformation",
"cagd_2023_screw": "Screw rotor manufacturing via 5-axis flank CNC machining using conical tools",
"caise_2020_a": "A Multi-concern Method for Identifying Business Services: A Situational Method Engineering Study",
"caise_2020_an": "An Approach for Process Model Extraction by Multi-grained Text Classification",
"caise_2020_mining": "Mining User Opinions to Support Requirement Engineering: An Empirical Study",
"caise_2021_challenges": "Challenges and Perils of Testing Database Manipulation Code",
"caise_2021_declarative": "Declarative Osmotic Application Placement",
"caise_2021_evolution": "Evolution of an Adaptive Information System for Precision Medicine",
"caise_2022_analyzing": "Analyzing Enterprise Architecture Models by Means of the Meta Attack Language",
"caise_2022_digital": "Digital Twins Approach for Sustainable Industry",
"caise_2022_probabilistic": "Probabilistic and Non-deterministic Event Data in Process Mining: Embedding Uncertainty in Process Analysis Techniques",
"caise_2023_bintrawine": "BinTraWine - Blockchain, Tracking and Tracing solutions for Wine",
"caise_2023_bridging": "Bridging Research Fields: An Empirical Study on Joint, Neural Relation Extraction Techniques",
"caise_2023_enriching": "Enriching Enterprise Architecture Models with Healthcare Domain Knowledge",
"cas_2021_experience-based": "Experience-Based Product Inspection Planning for Industry 4.0",
"cases_2020_a": "A Lifelong Health Monitoring Framework in Processors: Work-in-Progress",
"cases_2020_towards": "Towards Quality-Driven Approximate Software Generation for Accurate Hardware: Work-in-Progress",
"cases_2020_work-in-process:": "Work-in-Process: Smart Migration for Reliability Enhancement of 3D TLC NAND Flash Storage Systems",
"cases_2021_fast": "Fast generation of optimized execution plans for parameterizable CNN accelerators: work-in-progress",
"cases_2021_multiple": "Multiple approximate instances in neural processing units for energy-efficient circuit synthesis: work-in-progress",
"cases_2022_work-in-progress:": "Work-in-Progress: SuperNAS: Fast Multi-Objective SuperNet Architecture Search for Semantic Segmentation",
"cases_2023_special": "Special Session - Non-Volatile Memories: Challenges and Opportunities for Embedded System Architectures with Focus on Machine Learning Applications",
"cases_2023_tutorial:": "Tutorial: Designing an Edge Inferencing Accelerator with High- Level Synthesis",
"cases_2023_work-in-progress:": "Work-in-Progress: Towards Evaluating CNNs Against Integrity Attacks on Multi-tenant Computation",
"cav_2020_end-to-end": "End-to-End Formal Verification of Ethereum 2.0 Deposit Smart Contract",
"cav_2020_metaval:": "MetaVal: Witness Validation via Verification",
"cav_2020_reachability": "Reachability Analysis Using Message Passing over Tree Decompositions",
"cav_2021_fast": "Fast Zone-Based Algorithms for Reachability in Pushdown Timed Automata",
"cav_2021_learning": "Learning Probabilistic Termination Proofs",
"cav_2021_stateless": "Stateless Model Checking Under a Reads-Value-From Equivalence",
"cav_2022_distilling": "Distilling Constraints in Zero-Knowledge Protocols",
"cav_2022_pac": "PAC Statistical Model Checking of Mean Payoff in Discrete- and Continuous-Time MDP",
"cav_2022_solcmc:": "SolCMC: Solidity Compiler's Model Checker",
"cav_2023_counterexample": "Counterexample Guided Knowledge Compilation for Boolean Functional Synthesis",
"cav_2023_mdps": "MDPs as Distribution Transformers: Affine Invariant Synthesis for Safety Objectives",
"cav_2023_overcoming": "Overcoming Memory Weakness with Unified Fairness - Systematic Verification of Liveness in Weak Memory Models",
"ccfthpc_2020_cacbr:": "CACBR: Congestion Aware Cluster Buffer base routing algorithm with minimal cost on NOC",
"ccfthpc_2020_freezing": "Freezing time emulating new and faster devices with virtual machines",
"ccfthpc_2020_interplay": "Interplay Bitwise Operation in Emerging MRAM for Efficient In-memory Computing",
"ccfthpc_2021_correction": "Correction to: VPC: Pruning connected components using vector-based path compression for Graph500",
"ccfthpc_2021_deployment": "Deployment and verification of machine learning tool-chain based on kubernetes distributed clusters",
"ccfthpc_2021_vpc:": "VPC: Pruning connected components using vector-based path compression for Graph500",
"ccfthpc_2022_an": "An efficient segmented quantization for graph neural networks",
"ccfthpc_2022_publisher": "Publisher Correction: Smart scheduler: an adaptive NVM-aware thread scheduling approach on NUMA systems",
"ccfthpc_2022_smart": "Smart scheduler: an adaptive NVM-aware thread scheduling approach on NUMA systems",
"ccfthpc_2023_a-tucker:": "a-Tucker: fast input-adaptive and matricization-free Tucker decomposition of higher-order tensors on GPUs",
"ccfthpc_2023_exasu:": "ExaSU: a mathematical model for selecting the structured or unstructured resource discovery mechanism in distributed exascale computing environments",
"ccfthpc_2023_improved": "Improved parallel matrix multiplication using Strassen and Urdhvatiryagbhyam method",
"ccgrid_2020_data": "Data Management in Erasure-Coded Distributed Storage Systems",
"ccgrid_2020_exploring": "Exploring Erasure Coding Techniques for High Availability of Intermediate Data",
"ccgrid_2020_trua:": "Trua: Efficient Task Replication for Flexible User-defined Availability in Scientific Grids",
"ccgrid_2021_a": "A Reinforcement Learning Approach to Reduce Serverless Function Cold Start Frequency",
"ccgrid_2021_from": "From Things into Clouds - and back",
"ccgrid_2021_hybrid": "Hybrid Workflow Provisioning and Scheduling on Cooperative Edge Cloud Computing",
"ccgrid_2022_dynamic": "Dynamic Service Placement Algorithm for Partitionable Applications in Mobile Edge Computing",
"ccgrid_2022_one": "One core dedicated to MPI nonblocking communication progression? A model to assess whether it is worth it",
"ccgrid_2022_towards": "Towards a Model-Based Serverless Platform for the Cloud-Edge-IoT Continuum",
"ccgrid_2023_optimizing": "Optimizing Decentralized Learning with Local Heterogeneity using Topology Morphing and Clustering",
"ccgrid_2023_query": "Query Latency Optimization by Resource-Aware Task Placement in Fog",
"ccgrid_2023_securing": "Securing Multi-IRS Aided mmWave Communications Against Eavesdropping and Jamming in Vehicular Cyber Physical Systems",
"ccs_2020_deepdyve:": "DeepDyve: Dynamic Verification for Deep Neural Networks",
"ccs_2020_estimating": "Estimating g-Leakage via Machine Learning",
"ccs_2020_freedom:": "FREEDOM: Engineering a State-of-the-Art DOM Fuzzer",
"ccs_2021_a": "A Security Framework for Distributed Ledgers",
"ccs_2021_continuous": "Continuous Release of Data Streams under both Centralized and Local Differential Privacy",
"ccs_2021_hardware": "Hardware Support to Improve Fuzzing Performance and Precision",
"ccs_2023_ccsw": "CCSW '23: Cloud Computing Security Workshop",
"ccs_2023_he3db:": "HE3DB: An Efficient and Elastic Encrypted Database Via Arithmetic-And-Logic Fully Homomorphic Encryption",
"ccs_2023_the": "The Effectiveness of Security Interventions on GitHub",
"cf_2020_building": "Building a portable deeply-nested implicit information flow tracking",
"cf_2020_management": "Management of container-based genetic algorithm workloads over cloud infrastructure",
"cf_2020_verified": "Verified instruction-level energy consumption measurement for NVIDIA GPUs",
"cf_2021_an": "An efficient fault tolerant cloud market mechanism for profit maximization",
"cf_2021_dynamic": "Dynamic row activation mechanism for multi-core systems",
"cf_2021_the": "The Italian research on HPC key technologies across EuroHPC",
"cf_2022_micro": "Micro BTB: a high performance and storage efficient last-level branch target buffer for servers",
"cf_2022_nttgen:": "NTTGen: a framework for generating low latency NTT implementations on FPGA",
"cf_2022_stiff:": "STIFF: thermally safe temperature effect inversion aware FinFET based multi-core",
"cf_2023_adaptgear:": "AdaptGear: Accelerating GNN Training via Adaptive Subgraph-Level Kernels on GPUs",
"cf_2023_adaptive": "Adaptive multi-tier intelligent data manager for Exascale",
"cf_2023_scalable": "Scalable Flow Simulations with the Lattice Boltzmann Method",
"cgf_2020_bombalytics:": "Bombalytics: Visualization of Competition and Collaboration Strategies of Players in a Bomb Laying Game",
"cgf_2020_physically": "Physically Based Simulation and Rendering of Urban Thermography",
"cgf_2020_set": "Set Streams: Visual Exploration of Dynamic Overlapping Sets",
"cgf_2021_a": "A Multiscale Microfacet Model Based on Inverse Bin Mapping",
"cgf_2021_fast": "Fast Ray Tracing of Scale-Invariant Integral Surfaces",
"cgf_2021_transfer": "Transfer Deep Learning for Reconfigurable Snapshot HDR Imaging Using Coded Masks",
"cgf_2022_generating": "Generating Upper-Body Motion for Real-Time Characters Making their Way through Dynamic Environments",
"cgf_2022_loops:": "LOOPS: LOcally Optimized Polygon Simplification",
"cgf_2022_state": "State of the Art in Computational Mould Design",
"cgf_2023_editorial": "Editorial",
"cgf_2023_face": "Face Editing Using Part-Based Optimization of the Latent Space",
"cgf_2023_visual": "Visual Exploration of Financial Data with Incremental Domain Knowledge",
"cgi_2020_application": "Application of the Transfer Matrix Method to Anti-reflective Coating Rendering",
"cgi_2020_optimal": "Optimal Parenthesizing of Geometric Algebra Products",
"cgi_2020_outline": "Outline of Tube Elbow Detection Based on GAC",
"cgi_2021_cecid": "Cecid Fly Defect Detection in Mangoes Using Object Detection Frameworks",
"cgi_2021_how": "How Much Do We Perceive Geometric Features, Personalities and Emotions in Avatars",
"cgi_2021_on": "On Explicit Formulas for Characteristic Polynomial Coefficients in Geometric Algebras",
"cgi_2022_ae-gan:": "AE-GAN: Attention Embedded GAN for Irregular and Large-Area Mask Face Image Inpainting",
"cgi_2022_automated": "Automated Diagnosis of Retinal Neovascularization Pathologies from Color Retinal Fundus Images",
"cgi_2022_few-shot": "Few-Shot Detection Based on an Enhanced Prototype for Outdoor Small Forbidden Objects",
"cgi_2023_an": "An Image Extraction Method for Traditional Dress Pattern Line Drawings Based on Improved CycleGAN",
"cgi_2023_camera": "Camera Motion Correction with PGA",
"cgi_2023_parametrization": "Parametrization of Measured BRDF for Flexible Material Editing",
"cgo_2020_atmem:": "ATMem: adaptive data placement in graph applications on heterogeneous memories",
"cgo_2020_automatic": "Automatic generation of high-performance quantized machine learning kernels",
"cgo_2020_type": "Type freezing: exploiting attribute type monomorphism in tracing JIT compilers",
"cgo_2021_cinnamon:": "Cinnamon: A Domain-Specific Language for Binary Profiling and Monitoring",
"cgo_2021_unit:": "UNIT: Unifying Tensorized Instruction Compilation",
"cgo_2021_yasksite:": "YaskSite: Stencil Optimization Techniques Applied to Explicit ODE Methods on Modern Architectures",
"cgo_2022_lambda": "Lambda the Ultimate SSA: Optimizing Functional Programs in SSA",
"cgo_2022_optimizing": "Optimizing GPU Deep Learning Operators with Polyhedral Scheduling Constraint Injection",
"cgo_2022_srtuner:": "SRTuner: Effective Compiler Optimization Customization by Exposing Synergistic Relations",
"cgo_2023_bridging": "Bridging Control-Centric and Data-Centric Optimization",
"cgo_2023_fast": "Fast Polynomial Evaluation for Correctly Rounded Elementary Functions using the RLIBM Approach",
"cgo_2023_looplets:": "Looplets: A Language for Structured Coiteration",
"chi_2020_bot": "Bot in the Bunch: Facilitating Group Chat Discussion by Improving Efficiency and Participation with a Chatbot",
"chi_2020_movevr:": "MoveVR: Enabling Multiform Force Feedback in Virtual Reality using Household Cleaning Robot",
"chi_2020_pedestrian": "Pedestrian Detection with Wearable Cameras for the Blind: A Two-way Perspective",
"chi_2021_evaluation": "Evaluation in Human-Computer Interaction - Beyond Lab Studies",
"chi_2021_introduction": "Introduction to Computational Design",
"chi_2021_physiological": "Physiological I/O",
"chi_2022_can't": "Can't Touch This: Rethinking Public Technology in a COVID-19 Era",
"chi_2022_faceori:": "FaceOri: Tracking Head Position and Orientation Using Ultrasonic Ranging on Earphones",
"chi_2022_there": "There Is No First- or Third-Person View in Virtual Reality: Understanding the Perspective Continuum",
"chi_2023_chi2023": "CHI2023 Course on How to Peer Review for CHI (and Beyond)",
"chi_2023_modeling": "Modeling the Trade-off of Privacy Preservation and Activity Recognition on Low-Resolution Images",
"chi_2023_the": "The Halting problem: Video analysis of self-driving cars in traffic",
"chinaf_2020_application": "Application of machine learning method in optical molecular imaging: a review",
"chinaf_2020_measuring": "Measuring quality of experience for 360-degree videos in virtual reality",
"chinaf_2020_topic-sensitive": "Topic-sensitive neural headline generation",
"chinaf_2021_fairness-improved": "Fairness-improved and QoS-guaranteed resource allocation for NOMA-based S-IoT network",
"chinaf_2021_optimal": "Optimal active-disturbance-rejection control for propulsion of anchor-hole drillers",
"chinaf_2021_parametric": "Parametric output regulation using observer-based PI controllers with applications in flexible spacecraft attitude control",
"chinaf_2022_example-guided": "Example-guided stylized response generation in zero-shot setting",
"chinaf_2022_how": "How does working from home affect developer productivity? - A case study of Baidu during the COVID-19 pandemic",
"chinaf_2022_modeling": "Modeling and analysis of an underwater biomimetic vehicle-manipulator system",
"chinaf_2023_argusdroid:": "ArgusDroid: detecting Android malware variants by mining permission-API knowledge graph",
"chinaf_2023_attack": "Attack detectability and stealthiness in distributed optimal coordination of cyber-physical systems",
"chinaf_2023_efficient": "Efficient charge transfer in WS2/WxMo1-xS2 heterostructure empowered by energy level hybridization",
"cidr_2020_anylog:": "AnyLog: a Grand Unification of the Internet of Things",
"cidr_2020_cafe:": "CAFE: Constraint-Aware Feature Extraction from Large Databases",
"cidr_2020_we": "We do not have Systems for Analysing IoT Big-Data",
"cidr_2021_cerebro:": "Cerebro: A Layered Data Platform for Scalable Deep Learning",
"cidr_2021_contention": "Contention and Space Management in B-Trees",
"cidr_2021_universal": "Universal Layout Emulation for Long-Term Database Archival",
"cidr_2022_a": "A Progress Report on DBOS: A Database-oriented Operating System",
"cidr_2022_amalur:": "Amalur: Next-generation Data Integration in Data Lakes",
"cidr_2022_compucache:": "CompuCache: Remote Computable Caching using Spot VMs",
"cidr_2023_analyzing": "Analyzing and Comparing Lakehouse Storage Systems",
"cidr_2023_data": "Data Pipes: Declarative Control over Data Movement",
"cidr_2023_is": "Is Scalable OLTP in the Cloud a Solved Problem",
"cikm_2020_a": "A Multidimensional Dataset Based on Crowdsourcing for Analyzing and Detecting News Bias",
"cikm_2020_minimal": "Minimal Edit-Based Diffs for Large Trees",
"cikm_2020_weaving": "Weaving Text into Tables",
"cikm_2021_a": "A Unified View on Graph Neural Networks as Graph Signal Denoising",
"cikm_2021_clasp": "ClaSP - Time Series Segmentation",
"cikm_2021_versachi:": "VerSaChI: Finding Statistically Significant Subgraph Matches using Chebyshev's Inequality",
"cikm_2022_approximate": "Approximate and Interactive Processing of Aggregate Queries on Knowledge Graphs: A Demonstration",
"cikm_2022_efficient": "Efficient Learning with Pseudo Labels for Query Cost Estimation",
"cikm_2022_hega:": "HeGA: Heterogeneous Graph Aggregation Network for Trajectory Prediction in High-Density Traffic",
"cikm_2023_fct-gan:": "FCT-GAN: Enhancing Global Correlation of Table Synthesis via Fourier Transform",
"cikm_2023_interpretable": "Interpretable Natural Language Understanding",
"cikm_2023_unleashing": "Unleashing the Power of Shared Label Structures for Human Activity Recognition",
"cisc_2020_an": "An Efficient Blind Signature Scheme Based on SM2 Signature Algorithm",
"cisc_2020_bagua:": "Bagua: A NFSR-Based Stream Cipher Constructed Following Confusion and Diffusion Principles",
"cisc_2020_distributed": "Distributed Key Generation for SM9-Based Systems",
"cisc_2021_a": "A New Approach for Finding Low-Weight Polynomial Multiples",
"cisc_2021_more": "More Accurate Division Property Propagations Based on Optimized Implementations of Linear Layers",
"cisc_2022_an": "An Experimentally Verified Attack on 820-Round Trivium",
"cisc_2022_new": "New Automatic Search Tool for Searching for Impossible Differentials Using Undisturbed Bits",
"cisc_2022_practical": "Practical Multi-party Private Set Intersection Cardinality and Intersection-Sum Under Arbitrary Collusion",
"cj_2020_combining": "Combining Watermarking and Hyper-Chaotic Map to Enhance the Security of Stored Biometric Templates",
"cj_2020_emotion": "Emotion Recognition by a Hybrid System Based on the Features of Distances and the Shapes of the Wrinkles",
"cj_2020_lookback-guess-next": "Lookback-Guess-Next Optimizer: Feedback-Guided Random Search Technique with Biased Mapping for Solving Unconstrained Optimization Problems",
"cj_2021_primary": "Primary Emotions and Recognition of Their Intensities",
"cj_2021_revisiting": "Revisiting the Performance of DNS Queries on a DNS Hierarchy Testbed over Dual-Stack",
"cj_2021_sentiment": "Sentiment Analysis of Fast Food Companies With Deep Learning Models",
"cj_2022_enabling": "Enabling Smart City With Intelligent Congestion Control Using Hops With a Hybrid Computational Approach",
"cj_2022_hybrid": "Hybrid Multi-Channel EEG Filtering Method for Ocular and Muscular Artifact Removal Based on the 3D Spline Interpolation Technique",
"cj_2022_model-driven": "Model-Driven Simulation of Elastic OCCI Cloud Resources",
"cj_2023_a": "A Novel Reduced Reference Image Quality Assessment Based on Formal Concept Analysis",
"cj_2023_impact": "Impact of COVID-19 on the Human Personality: An Analysis Based on Document Modeling Using Machine Learning Tools",
"cj_2023_lam:": "LAM: Scrutinizing Leading APIs For Detecting Suspicious Call Sequences",
"cloud_2020_finding": "Finding the right cloud configuration for analytics clusters",
"cloud_2020_semi-dynamic": "Semi-dynamic load balancing: efficient distributed learning in non-dedicated environments",
"cloud_2020_specializing": "Specializing the network for scatter-gather workloads",
"cloud_2021_cloud-scale": "Cloud-Scale Runtime Verification of Serverless Applications",
"cloud_2021_good": "Good Things Come to Those Who Wait: Optimizing Job Waiting in the Cloud",
"cloud_2021_showar:": "SHOWAR: Right-Sizing And Efficient Scheduling of Microservices",
"cloud_2022_cypress:": "Cypress: input size-sensitive container provisioning and request scheduling for serverless platforms",
"cloud_2022_escher:": "ESCHER: expressive scheduling with ephemeral resources",
"cloud_2022_network": "Network resource management as a database problem",
"cloud_2023_multivariate": "Multivariate Anomaly Detection with Domain Clustering",
"cloud_2023_not": "Not All Resources are Visible: Exploiting Fragmented Shadow Resources in Shared-State Scheduler Architecture",
"cloud_2023_tf.data": "tf.data service: A Case for Disaggregating ML Input Data Processing",
"clsr_2020_building": "Building up the \"Accountable Ulysses\" model. The impact of GDPR and national implementations, ethics, and health-data research: Comparative remarks",
"clsr_2020_platform": "Platform value(s): A multidimensional framework for online responsibility",
"clsr_2020_the": "The role of government regulations in the adoption of cloud computing: A case study of local government",
"clsr_2021_convention": "Convention 108 and the GDPR: Trends and perspectives in Latin America",
"clsr_2021_government": "Government procurement law and hacking technology: The role of public contracting in regulating an invisible market",
"clsr_2021_restitution": "Restitution of money spent on loot boxes in video games",
"clsr_2022_ai": "AI trading and the limits of EU law enforcement in deterring market manipulation",
"clsr_2022_contract": "Contract law revisited: Algorithmic pricing and the notion of contractual fairness",
"clsr_2022_shifting": "Shifting the digital paradigm: Towards a sui generis competition policy",
"clsr_2023_foreword": "FOREWORD",
"clsr_2023_promises": "Promises and limits of law for a human-centric artificial intelligence",
"clsr_2023_what": "What the Dickens: Post-mortem privacy and intergenerational trust",
"cluster_2020_exploring": "Exploring Non-Volatility of Non-Volatile Memory for High Performance Computing Under Failures",
"cluster_2020_ldms": "LDMS Monitoring of EDR InfiniBand Networks",
"cluster_2020_quantifying": "Quantifying the impact of network congestion on application performance and network metrics",
"cluster_2021_a": "A Deep Learning-Based Particle-in-Cell Method for Plasma Simulations",
"cluster_2021_amr-net:": "AMR-Net: Convolutional Neural Networks for Multi-resolution Steady Flow Prediction",
"cluster_2021_automatic": "Automatic Parallelisation of Sturctured Mesh Computations with SYCL",
"cluster_2022_albadross:": "ALBADross: Active Learning Based Anomaly Diagnosis for Production HPC Systems",
"cluster_2022_incprof:": "IncProf: Efficient Source-Oriented Phase Identification for Application Behavior Understanding",
"cluster_2022_the": "The Cost of Flexibility: Embedded versus Discrete Routers in CGRAs for HPC",
"cluster_2023_an": "An I/O Performance Evaluation of Varying CephFS Striping Patterns",
"cluster_2023_predictddl:": "PredictDDL: Reusable Workload Performance Prediction for Distributed Deep Learning",
"cluster_2023_vinarch:": "VINARCH: A Visual Analytics Interactive Tool for Neural Network Archaeology",
"coco_2020_algebraic": "Algebraic Hardness Versus Randomness in Low Characteristic",
"coco_2020_lower": "Lower Bounds for Matrix Factorization",
"coco_2020_quantum": "Quantum Query-To-Communication Simulation Needs a Logarithmic Overhead",
"coco_2021_a": "A Direct Product Theorem for One-Way Quantum Communication",
"coco_2021_robustly": "Robustly Self-Ordered Graphs: Constructions and Applications to Property Testing",
"coco_2022_extremely": "Extremely Efficient Constructions of Hash Functions, with Applications to Hardness Magnification and PRFs",
"coco_2022_influence": "Influence in Completely Bounded Block-Multilinear Forms and Classical Simulation of Quantum Algorithms",
"coco_2022_pseudorandom": "Pseudorandom Generators, Resolution and Heavy Width",
"coco_2023_an": "An Improved Trickle down Theorem for Partite Complexes",
"coco_2023_border": "Border Complexity of Symbolic Determinant Under Rank One Restriction",
"coco_2023_reducing": "Reducing Tarski to Unique Tarski (In the Black-Box Model)",
"cocoon_2020_a": "A Survey for Conditional Diagnosability of Alternating Group Networks",
"cocoon_2020_computational": "Computational Complexity Characterization of Protecting Elections from Bribery",
"cocoon_2020_on": "On Measures of Space over Real and Complex Numbers",
"cocoon_2021_constrained": "Constrained Hitting Set Problem with Intervals",
"cocoon_2021_minimum": "Minimum Color Spanning Circle in Imprecise Setup",
"cocoon_2021_sublinear-space": "Sublinear-Space Approximation Algorithms for Max r-SAT",
"cocoon_2022_a": "A Quantum Version of Pollard's Rho of Which Shor's Algorithm is a Particular Case",
"cocoon_2022_proper": "Proper Colorability of Segment Intersection Graphs",
"cocoon_2022_rotation": "Rotation Distance for Rank Bounded Trees",
"cocoon_2023_complexity": "Complexity and Enumeration in Models of Genome Rearrangement",
"cocoon_2023_efficiently-verifiable": "Efficiently-Verifiable Strong Uniquely Solvable Puzzles and Matrix Multiplication",
"cocoon_2023_shortest": "Shortest Longest-Path Graph Orientations",
"codesisss_2022_brain-inspired": "Brain-Inspired Hyperdimensional Computing for Ultra-Efficient Edge AI",
"codesisss_2022_industry": "Industry Paper: Surrogate Models for Testing Analog Designs under Limited Budget - a Bandgap Case Study",
"codesisss_2022_work-in-progress:": "Work-in-Progress: High-Performance Systolic Hardware Accelerator for RBLWE-based Post-Quantum Cryptography",
"codesisss_2023_special": "Special Session: Machine Learning for Embedded System Design",
"codesisss_2023_tutorial:": "Tutorial: MARS: A Framework for Runtime Monitoring, Modeling, and Management of Realtime Systems",
"codesisss_2023_work-in-progress:": "Work-in-Progress: A Generic Non-Intrusive Parallelization Approach for SystemC TlM-2.0-Based Virtual Platforms",
"cogsci_2020_a": "A New Approach to Testimonial Conditionals",
"cogsci_2020_cognitive": "Cognitive consequences of structured education in a connectionist model of analogical reasoning",
"cogsci_2020_food": "Food sharing gave birth to social networks",
"colcom_2020_a": "A Hybrid Collaborative Virtual Environment with Heterogeneous Representations for Architectural Planning",
"colcom_2020_cooperative": "Cooperative Pollution Source Exploration and Cleanup with a Bio-inspired Swarm Robot Aggregation",
"colcom_2020_self-organised": "Self-organised Flocking with Simulated Homogeneous Robotic Swarm",
"colcom_2021_energy-efficient": "Energy-Efficient Cooperative Offloading for Multi-AP MEC in IoT Networks",
"colcom_2021_mobile": "Mobile Encrypted Traffic Classification Based on Message Type Inference",
"colcom_2021_patr:": "PATR: A Novel Poisoning Attack Based on Triangle Relations Against Deep Learning-Based Recommender Systems",
"colcom_2022_an": "An Improved Dual-Subnet Lane Line Detection Model with a Channel Attention Mechanism for Complex Environments",
"colcom_2022_edge": "Edge Federated Learning for Social Profit Optimality: A Cooperative Game Approach",
"colcom_2022_knowledge": "Knowledge Graph Enhanced Web API Recommendation via Neighbor Information Propagation for Multi-service Application Development",
"coling_2020_cross-lingual": "Cross-lingual Semantic Representation for NLP with UCCA",
"coling_2020_semi-supervised": "Semi-supervised Multi-task Learning for Multi-label Fine-grained Sexism Classification",
"coling_2020_the": "The SADID Evaluation Datasets for Low-Resource Spoken Language Machine Translation of Arabic Dialects",
"coling_2021_interpretability": "Interpretability Analysis for Named Entity Recognition to Understand System Predictions and How They Can Improve",
"coling_2021_the": "The (Un)Suitability of Automatic Evaluation Metrics for Text Simplification",
"coling_2021_understanding": "Understanding Dialogue: Language Use and Social Interaction",
"coling_2022_information": "Information Theory-based Compositional Distributional Semantics",
"coling_2022_linear-time": "Linear-Time Calculation of the Expected Sum of Edge Lengths in Random Projective Linearizations of Trees",
"coling_2022_the": "The Impact of Edge Displacement Vaserstein Distance on UD Parsing Performance",
"coling_2023_cross-lingual": "Cross-Lingual Transfer with Language-Specific Subnetworks for Low-Resource Dependency Parsing",
"coling_2023_from": "From Word Types to Tokens and Back: A Survey of Approaches to Word Meaning Representation and Interpretation",
"coling_2023_grammatical": "Grammatical Error Correction: A Survey of the State of the Art",
"colt_2020_adaptive": "Adaptive Submodular Maximization under Stochastic Item Costs",
"colt_2020_conference": "Conference on Learning Theory 2020: Preface",
"colt_2020_private": "Private Mean Estimation of Heavy-Tailed Distributions",
"colt_2021_learning": "Learning to Stop with Surprisingly Few Samples",
"colt_2021_moment": "Moment Multicalibration for Uncertainty Estimation",
"colt_2021_towards": "Towards a Query-Optimal and Time-Efficient Algorithm for Clustering with a Faulty Oracle",
"colt_2022_robust": "Robust Estimation for Random Graphs",
"colt_2022_the": "The merged-staircase property: a necessary and nearly sufficient condition for SGD learning of sparse functions on two-layer neural networks",
"colt_2023_finite-sample": "Finite-Sample Symmetric Mean Estimation with Fisher Information Rate",
"colt_2023_from": "From high-dimensional & mean-field dynamics to dimensionless ODEs: A unifying approach to SGD in two-layers networks",
"colt_2023_testing": "Testing of Index-Invariant Properties in the Huge Object Model",
"comcom_2020_efficient": "Efficient resource management and workload allocation in fog-cloud computing paradigm in IoT using learning classifier systems",
"comcom_2020_high-performance": "High-performance flow classification using hybrid clusters in software defined mobile edge computing",
"comcom_2020_sir": "SIR analysis for non-uniform HetNets with joint decoupled association and interference management",
"comcom_2021_a": "A deep learning based non-intrusive household load identification for smart grid in China",
"comcom_2021_capacity": "Capacity analysis of public blockchain",
"comcom_2021_smart": "Smart stochastic routing for 6G-enabled massive Internet of Things",
"comcom_2022_evaluation": "Evaluation of HARQ for improved link efficiency within dense IEEE 802.11 networks",
"comcom_2022_priority": "Priority based dynamic spectrum management using Virtual Utility Functions in Cognitive Radio enabled Internet of Things",
"comcom_2022_resiliency-aware": "Resiliency-aware analysis of complex IoT process chains",
"comcom_2023_an": "An O-MAPPO scheme for joint computation offloading and resources allocation in UAV assisted MEC systems",
"comcom_2023_proxy": "Proxy smart contracts for zero trust architecture implementation in Decentralised Oracle Networks based applications",
"comcom_2023_rlcs:": "RLCS: Towards a robust and efficient mobile edge computing resource scheduling and task offloading system based on graph neural network",
"comgeo_2020_middle": "Middle curves based on discrete Fr\u00e9chet distance",
"comgeo_2020_output": "Output sensitive algorithms for approximate incidences and their applications",
"comgeo_2020_the": "The most-likely skyline problem for stochastic points",
"comgeo_2021_coloring": "Coloring Delaunay-edges and their generalizations",
"comgeo_2021_continuous": "Continuous flattening of all polyhedral manifolds using countably infinite creases",
"comgeo_2021_snipperclips:": "Snipperclips: Cutting tools into desired polygons using themselves",
"comgeo_2022_cgta": "CGTA Awards",
"comgeo_2022_rearranging": "Rearranging a sequence of points onto a line",
"comgeo_2022_\u03b4-greedy": "\u03b4-Greedy t-spanner",
"comgeo_2023_multi-robot": "Multi-robot motion planning for unit discs with revolving areas",
"comgeo_2023_piercing": "Piercing pairwise intersecting geodesic disks by five points",
"comgeo_2023_rectangle": "Rectangle stabbing and orthogonal range reporting lower bounds in moderate dimensions",
"compgeom_2020_a": "A Toroidal Maxwell-Cremona-Delaunay Correspondence",
"compgeom_2020_algorithms": "Algorithms for Subpath Convex Hull Queries and Ray-Shooting Among Segments",
"compgeom_2020_on": "On the Planar Two-Center Problem and Circular Hulls",
"compgeom_2021_an": "An Optimal Deterministic Algorithm for Geodesic Farthest-Point Voronoi Diagrams in Simple Polygons",
"compgeom_2021_classifying": "Classifying Convex Bodies by Their Contact and Intersection Graphs",
"compgeom_2021_on": "On Guillotine Separable Packings for the Two-Dimensional Geometric Knapsack Problem",
"compgeom_2022_gpu": "GPU Computation of the Euler Characteristic Curve for Imaging Data",
"compgeom_2022_point": "Point Separation and Obstacle Removal by Finding and Hitting Odd Cycles",
"compgeom_2022_visualizing": "Visualizing WSPDs and Their Applications (Media Exposition)",
"compgeom_2023_on": "On the Geometric Thickness of 2-Degenerate Graphs",
"compgeom_2023_online": "Online and Dynamic Algorithms for Geometric Set Cover and Hitting Set",
"compgeom_2023_the": "The Number of Edges in Maximal 2-Planar Graphs",
"compsac_2020_kiwifruit": "Kiwifruit Leaf Disease Identification Using Improved Deep Convolutional Neural Networks",
"compsac_2020_mining": "Mining Timing Constraints from Event Logs for Process Model",
"compsac_2020_smartphone": "Smartphone Sensors for Modeling Human-Computer Interaction: General Outlook and Research Datasets for User Authentication",
"compsac_2021_a": "A Data Science Solution for Supporting Social and Economic Analysis",
"compsac_2021_an": "An API for Dew Computing Services",
"compsac_2021_clacer:": "CLACER: A Deep Learning-based Compilation Error Classification Method for Novice Students' Programs",
"compsac_2022_csdleeg:": "CSDLEEG: Identifying Confused Students Based on EEG Using Multi-View Deep Learning",
"compsac_2022_instrumenting": "Instrumenting Microservices for Concurrent Audit Logging: Beyond Horn Clauses",
"compsac_2022_message": "Message from the Standing Committee Vice Chairs",
"compsac_2023_experimental": "Experimental Evaluation of Transmission Control Method based on Received Signal Strength for Spatio-Temporal Data Retention \u2217",
"compsac_2023_l2": "L2 Cache Access Pattern Analysis using Static Profiling of an Application",
"compsac_2023_usability": "Usability differences of telehealth technologies by Multi-linguistic and Multi-cultural users in UAE",
"compsec_2020_an": "An automated model to score the privacy of unstructured information - Social media case",
"compsec_2020_anitw:": "ANiTW: A Novel Intelligent Text Watermarking technique for forensic identification of spurious information on social media",
"compsec_2020_assessing": "Assessing country-level privacy risk for digital payment systems",
"compsec_2021_a": "A blockchain-based certificate revocation management and status verification system",
"compsec_2021_lattice": "Lattice based access control for protecting user data in cloud environments with hybrid security",
"compsec_2021_towards": "Towards a conceptual definition for IT assets through interrogating their nature and epistemic uncertainty",
"compsec_2022_an": "An analysis of zero-trust architecture and its cost-effectiveness for organizational security",
"compsec_2022_designing": "Designing effective masking strategies for cyberdefense through human experimentation and cognitive models",
"compsec_2022_modelling": "Modelling smart grid IT-OT dependencies for DDoS impact propagation",
"compsec_2023_an": "An omnidirectional approach to touch-based continuous authentication",
"compsec_2023_cascading": "Cascading information on best practice: Cyber security risk management in UK micro and small businesses and the role of IT companies",
"compsec_2023_common": "Common vulnerability scoring system prediction based on open source intelligence information sources",
"concur_2020_canonical": "Canonical Solutions to Recursive Equations and Completeness of Equational Axiomatisations",
"concur_2020_deciding": "Deciding the Existence of Cut-Off in Parameterized Rendez-Vous Networks",
"concur_2020_safe": "Safe Reinforcement Learning Using Probabilistic Shields (Invited Paper)",
"concur_2021_concur": "CONCUR Test-Of-Time Award 2021 (Invited Paper)",
"concur_2021_formally": "Formally Verified Simulations of State-Rich Processes Using Interaction Trees in Isabelle/HOL",
"concur_2021_separating": "Separating Sessions Smoothly",
"concur_2022_on": "On the Axiomatisation of Branching Bisimulation Congruence over CCS",
"concur_2022_propositional": "Propositional Dynamic Logic and Asynchronous Cascade Decompositions for Regular Trace Languages",
"concur_2022_simulations": "Simulations for Event-Clock Automata",
"concur_2023_computing": "Computing Minimal Distinguishing Hennessy-Milner Formulas is NP-Hard, but Variants are Tractable",
"concur_2023_concur": "CONCUR Test-Of-Time Award 2023 (Invited Paper)",
"concur_2023_monus": "Monus Semantics in Vector Addition Systems with States",
"concurrency_2020_divisible": "Divisible load scheduling of image processing applications on the heterogeneous star and tree networks using a new genetic algorithm",
"concurrency_2020_efficient": "Efficient algorithm for scheduling parallel applications on hybrid multicore machines with communications delays and energy constraint",
"concurrency_2020_performance": "Performance analysis of SDN vs OSPF in diverse network environments",
"concurrency_2021_a": "A comparative study of black-box optimization heuristics for online tuning of high performance computing I/O accelerators",
"concurrency_2021_high-performance": "High-performance SIMD modular arithmetic for polynomial evaluation",
"concurrency_2021_preliminary": "Preliminary study on the automatic parallelism optimization model for image enhancement algorithms based on Intel's\u00ae Xeon Phi",
"concurrency_2022_cyber": "Cyber situation perception for Internet of Things systems based on zero-day attack activities recognition within advanced persistent threat",
"concurrency_2022_efficient": "Efficient opportunistic routing with social context awareness for distributed mobile social networks",
"concurrency_2022_evaluating": "Evaluating intrusion sensitivity allocation with supervised learning in collaborative intrusion detection",
"concurrency_2023_a": "A lightweight model of wheel-rail force inversion for railway vehicles",
"concurrency_2023_evacuation": "Evacuation from various types of finite two-dimensional square grid fields by a metamorphic robotic system",
"concurrency_2023_noise": "Noise processing and multitask learning for far-field dialect classification",
"conext_2020_job": "Job scheduling for large-scale machine learning clusters",
"conext_2020_multiprotocol": "Multiprotocol backscatter for personal IoT sensors",
"conext_2020_optimizing": "Optimizing distributed training deployment in heterogeneous GPU clusters",
"conext_2021_burst-tolerant": "Burst-tolerant datacenter networks with Vertigo",
"conext_2021_congestion": "Congestion avoidance in data communication networks using software defined networking",
"conext_2021_doing": "Doing more by doing less: how structured partial backpropagation improves deep learning clusters",
"conext_2022_enabling": "Enabling emerging edge applications through a 5G control plane intervention",
"conext_2022_henna:": "Henna: hierarchical machine learning inference in programmable switches",
"conext_2022_r-mpls:": "R-MPLS: recursive protection for highly dependable MPLS networks",
"conext_2023_aggressive": "Aggressive Internet-Wide Scanners: Network Impact and Longitudinal Characterization",
"conext_2023_leo": "LEO Satellite vs. Cellular Networks: Exploring the Potential for Synergistic Integration",
"conext_2023_towards": "Towards Local Shortcutting of Fast Failover Routes",
"conll_2020_a": "A simple repair mechanism can alleviate computational demands of pragmatic reasoning: simulations and complexity analysis",
"conll_2020_drs": "DRS at MRP 2020: Dressing up Discourse Representation Structures as Graphs",
"conll_2020_on": "On the Frailty of Universal POS Tags for Neural UD Parsers",
"conll_2021_can": "Can Language Models Encode Perceptual Structure Without Grounding? A Case Study in Color",
"conll_2021_does": "Does referent predictability affect the choice of referential form? A computational approach using masked coreference resolution",
"conll_2021_tokenization": "Tokenization Repair in the Presence of Spelling Errors",
"conll_2022_characterizing": "Characterizing Verbatim Short-Term Memory in Neural Language Models",
"conll_2022_syntactic": "Syntactic Surprisal From Neural Models Predicts, But Underestimates, Human Processing Difficulty From Syntactic Ambiguities",
"conll_2022_visual": "Visual Semantic Parsing: From Images to Abstract Meaning Representation",
"conll_2023_archbert:": "ArchBERT: Bi-Modal Understanding of Neural Architectures and Natural Languages",
"conll_2023_how": "How Fragile is Relation Extraction under Entity Replacements",
"conll_2023_strategies": "Strategies to Improve Low-Resource Agglutinative Languages Morphological Inflection",
"connection_2020_cg-art:": "CG-Art: demystifying the anthropocentric bias of artistic creativity",
"connection_2020_content-based": "Content-based image retrieval using block truncation coding based on edge quantization",
"connection_2020_sexbots:": "Sexbots: a case for artificial ethical agents",
"connection_2021_a": "A formally verified authentication protocol in secure framework for mobile healthcare during COVID-19-like pandemic",
"connection_2021_an": "An improved multi-leader comprehensive learning particle swarm optimisation based on gravitational search algorithm",
"connection_2022_blockchain": "Blockchain application in P2P energy markets: social and legal aspects",
"connection_2022_deep": "Deep and hybrid learning of MRI diagnosis for early detection of the progression stages in Alzheimer's disease",
"connection_2022_research": "Research on the Uyghur morphological segmentation model with an attention mechanism",
"connection_2023_cpw-dice:": "CPW-DICE: a novel center and pixel-based weighting for damage segmentation",
"connection_2023_hdiea:": "HDIEA: high dimensional color image encryption architecture using five-dimensional Gauss-logistic and Lorenz system",
"connection_2023_ontology-based": "Ontology-based semantic data interestingness using BERT models",
"coopis_2022_data-imp:": "DATA-IMP: An Interactive Approach to Specify Data Imputation Transformations on Large Datasets",
"coopis_2022_relevance-based": "Relevance-Based Big Data Exploration for Smart Road Maintenance",
"coopis_2022_validating": "Validating Vector-Label Propagation for Graph Embedding",
"coopis_2023_discovery": "Discovery of Workflow Patterns - A Comparison of Process Discovery Algorithms",
"coopis_2023_opticlust4rec:": "OptiClust4Rec: Unsupervised Data-Driven Methodology for Quality of Life Recommendations During a Medical Therapy",
"coopis_2023_relating": "Relating Context and Self Awareness in the Internet of Things",
"corr_2020_learning": "Learning Numeral Embeddings",
"corr_2020_new": "New Competitive Analysis Results of Online List Scheduling Algorithm",
"corr_2020_quantum": "Quantum GestART: Identifying and Applying Correlations between Mathematics, Art, and Perceptual Organization",
"corr_2021_automatic-differentiated": "Automatic-differentiated Physics-Informed Echo State Network (API-ESN)",
"corr_2021_etat": "Etat de l'art sur l'application des bandits multi-bras",
"corr_2021_yet": "Yet another argument in favour of NP=CoNP",
"corr_2022_modeling": "Modeling Advection on Directed Graphs using Mat\u00e9rn Gaussian Processes for Traffic Flow",
"corr_2022_simulating": "Simulating local fields in carbon nanotube reinforced composites for infinite strip with voids",
"corr_2022_time-dependent": "Time-Dependent Duhamel Renormalization method with Multiple Conservation and Dissipation Laws",
"corr_2023_emotion": "Emotion in Cognitive Architecture: Emergent Properties from Interactions with Human Emotion",
"corr_2023_evaluating": "Evaluating Alternative Glyph Design for Showing Large-Magnitude-Range Quantum Spins",
"corr_2023_nftrig": "NFTrig",
"cosit_2022_i": "I Can Tell by Your Eyes! Continuous Gaze-Based Turn-Activity Prediction Reveals Spatial Familiarity",
"cosit_2022_spatial": "Spatial and Spatiotemporal Matching Framework for Causal Inference (Short Paper)",
"cosit_2022_what": "What Do You Mean You're in Trafalgar Square? Comparing Distance Thresholds for Geospatial Prepositions",
"cp_2020_combinatorial": "Combinatorial Search in CP-Based Iterated Belief Propagation",
"cp_2020_dashed": "Dashed Strings and the Replace(-all) Constraint",
"cp_2020_leveraging": "Leveraging Reinforcement Learning, Constraint Programming and Local Search: A Case Study in Car Manufacturing",
"cp_2021_building": "Building High Strength Mixed Covering Arrays with Constraints",
"cp_2021_combining": "Combining Monte Carlo Tree Search and Depth First Search Methods for a Car Manufacturing Workshop Scheduling Problem",
"cp_2021_vehicle": "Vehicle Dynamics in Pickup-And-Delivery Problems Using Electric Vehicles",
"cp_2022_a": "A Framework for Generating Informative Benchmark Instances",
"cp_2022_fixed-template": "Fixed-Template Promise Model Checking Problems",
"cp_2022_learning": "Learning Constraint Programming Models from Data Using Generate-And-Aggregate",
"cp_2023_assembly": "Assembly Line Preliminary Design Optimization for an Aircraft",
"cp_2023_large": "Large Neighborhood Beam Search for Domain-Independent Dynamic Programming",
"cp_2023_symmetries": "Symmetries for Cube-And-Conquer in Finite Model Finding",
"crypto_2020_a": "A Key-Recovery Timing Attack on Post-quantum Primitives Using the Fujisaki-Okamoto Transformation and Its Application on FrodoKEM",
"crypto_2020_improved": "Improved Primitives for MPC over Mixed Arithmetic-Binary Circuits",
"crypto_2020_overcoming": "Overcoming Impossibility Results in Composable Security Using Interval-Wise Guarantees",
"crypto_2021_deniable": "Deniable Fully Homomorphic Encryption from Learning with Errors",
"crypto_2021_multi-input": "Multi-input Quadratic Functional Encryption from Pairings",