Open Access. Powered by Scholars. Published by Universities.®
- Discipline
-
- Engineering (44)
- Electrical and Computer Engineering (19)
- Databases and Information Systems (16)
- Other Computer Sciences (16)
- Systems Architecture (16)
-
- Mechanical Engineering (8)
- Mining Engineering (8)
- Aerospace Engineering (7)
- Operations Research, Systems Engineering and Industrial Engineering (6)
- Biology (4)
- Life Sciences (4)
- Mathematics (4)
- Statistics and Probability (4)
- Chemical Engineering (3)
- Psychology (3)
- Social and Behavioral Sciences (3)
- Chemistry (2)
- Computational Engineering (2)
- Computer Engineering (2)
- Architectural Engineering (1)
- Architecture (1)
- Artificial Intelligence and Robotics (1)
- Biochemical and Biomolecular Engineering (1)
- Civil and Environmental Engineering (1)
- Cognition and Perception (1)
- Cognitive Psychology (1)
- Keyword
-
- Security (21)
- Federated learning (15)
- Deep learning (12)
- Cloud computing (11)
- Edge computing (11)
-
- Internet (10)
- IoT (9)
- Sensor networks (9)
- Anomaly detection (8)
- Drone (8)
- Internet of Things (8)
- Routing (8)
- Wireless sensor networks (8)
- Crowdsourcing (7)
- Data Warehouses (7)
- Optimization (7)
- Privacy (7)
- Algorithms (6)
- Anomaly Detection (6)
- Big data (6)
- Deep Learning (6)
- Formal Specification (6)
- Information Resources (6)
- Large language models (6)
- Mobility (6)
- Parallel Algorithms (6)
- WHOWEDA (6)
- Approximation algorithms (5)
- Compression (5)
- Distributed (5)
- Publication Year
Articles 1 - 30 of 919
Full-Text Articles in Computer Sciences
Online Multidimensional Multiple Choice Knapsack Path Planner For Uavs, Manisha Wadhwa, Neelima Gupta, Sanjay Madria
Online Multidimensional Multiple Choice Knapsack Path Planner For Uavs, Manisha Wadhwa, Neelima Gupta, Sanjay Madria
Computer Science Faculty Research & Creative Works
The rapid proliferation of Unmanned Aerial Vehicles (UAVs) in safety–critical and time-sensitive applications such as disaster management, battlefield reconnaissance, urban surveillance and infrastructure inspection demands online path planning strategies. A fundamental requirement in such missions is generating flight paths that pass through some pre-specified waypoints while servicing dynamically requested spatio-temporal task points arriving randomly such as capturing aerial imagery. Existing UAV path planning approaches, including A* and its variants, meta-heuristic algorithms, and dynamic programming, find the shortest distance path from source to destination, but they are predominantly offline and assume complete prior environmental knowledge, thus, incur significantly higher computational cost …
Non-Uniform Mixing Of Quantum Walks On The Symmetric Group, Avah Banerjee
Non-Uniform Mixing Of Quantum Walks On The Symmetric Group, Avah Banerjee
Computer Science Faculty Research & Creative Works
It is well-known that classical random walks on regular graphs converge to the uniform distribution. Quantum walks, in their various forms, are quantization's of their corresponding classical random walk processes. Gerhardt and Watrous (2003) demonstrated that continuous-time quantum walks do not converge to the uniform distribution on certain Cayley graphs of the Symmetric group, which by definition are all regular. In this paper, we demonstrate that discrete-time quantum walks, in the sense of quantized Markov chains as introduced by Szegedy (2004), also do not converge to the uniform distribution. We analyze the spectra of the Szegedy walk operators using the …
Where Do Ai Coding Agents Fail? An Empirical Study Of Failed Agentic Pull Requests In Github, Ramtin Ehsani, Sakshi Pathak, Shriya Rawal, Abdullah Al Mujahid, Mia Mohammad Imran, Preetha Chatterjee
Where Do Ai Coding Agents Fail? An Empirical Study Of Failed Agentic Pull Requests In Github, Ramtin Ehsani, Sakshi Pathak, Shriya Rawal, Abdullah Al Mujahid, Mia Mohammad Imran, Preetha Chatterjee
Computer Science Faculty Research & Creative Works
AI coding agents are now submitting pull requests (PRs) to software projects, acting not just as assistants but as autonomous contributors. As these agentic contributions are rapidly increasing across real repositories, little is known about how they behave in practice and why many of them fail to be merged. In this paper, we conduct a large-scale study of 33k agent-authored PRs made by five coding agents across GitHub. (RQ1) We first quantitatively characterize merged and not-merged PRs along four broad dimensions: 1) merge outcomes across task types, 2) code changes, 3) CI build results, and 4) review dynamics. We observe …
Entity Labels Are Not Entity Signals: A Framework For Observable Relevance In Document Re-Ranking, Utshab Kumar Ghosh, Shubham Chatterjee
Entity Labels Are Not Entity Signals: A Framework For Observable Relevance In Document Re-Ranking, Utshab Kumar Ghosh, Shubham Chatterjee
Computer Science Faculty Research & Creative Works
Entity-aware document retrieval uses query-associated entities as ranking signals, assuming that semantically relevant entities are also useful retrieval signals. We show this assumption is insufficient - and explain why. Unlike terms, which are ground-truth observations, entity links are hypotheses produced by an imperfect linker: an entity can be topically central yet provide no discriminative signal if the linker fires indiscriminately across relevant and non-relevant documents. We formalize this as a distinction between Conceptual Entity Relevance (CER) - whether an entity is topically related to a query - and Observable Entity Relevance (OER) - whether its observed presence in a collection …
Reproduction Beyond Benchmarks: Constbert And Colbert-V2 Across Backends And Query Distributions, Utshab Kumar Ghosh, Ashish David, Shubham Chatterjee
Reproduction Beyond Benchmarks: Constbert And Colbert-V2 Across Backends And Query Distributions, Utshab Kumar Ghosh, Ashish David, Shubham Chatterjee
Computer Science Faculty Research & Creative Works
Reproducibility must validate architectural robustness, not just numerical accuracy. We evaluate ColBERT-v2 and ConstBERT across five dimensions, finding that while ConstBERT reproduces within 0.05% MRR@10 on MS-MARCO, both models show a drop of 86-97% on long, narrative queries (TREC ToT 2025). Ablations prove this failure is architectural: performance plateaus at 20 words because the MaxSim operator's uniform token weighting cannot distinguish signal from filler noise. Furthermore, undocumented backend parameters create an 8-point gap due to ConstBERT's sparse centroid coverage, and fine-tuning with 3x more data actually degrades performance by up to 29%. We conclude that architectural constraints in multi-vector retrieval …
Depro: Understanding The Role Of Llms In Debugging Competitive Programming Code, Nabiha Parvez, Md Tanvin Sarkar Pallab, Mia Mohammad Imran, Tarannum Shaila Zaman
Depro: Understanding The Role Of Llms In Debugging Competitive Programming Code, Nabiha Parvez, Md Tanvin Sarkar Pallab, Mia Mohammad Imran, Tarannum Shaila Zaman
Computer Science Faculty Research & Creative Works
Debugging consumes a substantial portion of the software development lifecycle, yet researchers do not yet understand well the effectiveness of Large Language Models (LLMs) in this task. Competitive programming offers a rich benchmark for such evaluation, given its diverse problem domains and strict efficiency requirements. We present an empirical study of LLM-based debugging on competitive programming problems and introduce DePro, a test-case-driven approach that assists programmers by correcting existing code rather than generating new solutions. DePro combines brute-force reference generation, stress testing, and iterative LLM-guided refinement to efficiently identify and resolve errors. Experiments on 13 faulty user submissions from Codeforces …
Llm-Enabled Open-Source Systems In The Wild: An Empirical Study Of Vulnerabilities In Github Security Advisories, Fariha Tanjim Shifat, Hariswar Baburaj, Ce Zhou, Jaydeb Sarker, Mia Mohammad Imran
Llm-Enabled Open-Source Systems In The Wild: An Empirical Study Of Vulnerabilities In Github Security Advisories, Fariha Tanjim Shifat, Hariswar Baburaj, Ce Zhou, Jaydeb Sarker, Mia Mohammad Imran
Computer Science Faculty Research & Creative Works
Large language models (LLMs) are increasingly embedded in open-source software (OSS) ecosystems, creating complex interactions among natural language prompts, probabilistic model outputs, and execution-capable components. However, it remains unclear whether traditional vulnerability disclosure frameworks adequately capture these model-mediated risks. To investigate this, we analyze 295 GitHub Security Advisories published between January 2025 and January 2026 that reference LLM-related components, and we manually annotate a sample of 100 advisories using the OWASP Top 10 for LLM Applications 2025.We find no evidence of new implementation-level weakness classes specific to LLM systems. Most advisories map to established CWEs, particularly injection and deserialization weaknesses. …
"Todo: Fix The Mess Gemini Created": Towards Understanding Genai-Induced Self-Admitted Technical Debt, Abdullah Al Mujahid, Mia Mohammad Imran
"Todo: Fix The Mess Gemini Created": Towards Understanding Genai-Induced Self-Admitted Technical Debt, Abdullah Al Mujahid, Mia Mohammad Imran
Computer Science Faculty Research & Creative Works
As large language models (LLMs) such as ChatGPT, Copilot, Claude, and Gemini become integrated into software development workflows, developers increasingly leave traces of AI involvement in their code comments. Among these, some comments explicitly acknowledge both the use of generative AI and the presence of technical shortcomings. Analyzing 6,540 LLM-referencing code comments from public Python and JavaScript-based GitHub repositories (November 2022-July 2025), we identified 81 that also self-admit technical debt (SATD). Developers most often describe postponed testing, incomplete adaptation, and limited understanding of AI-generated code, suggesting that AI assistance affects both when and why technical debt emerges. We term GenAI-Induced …
Challenges In Scaling R-Tree Spatial Search On Processing-In-Memory, Tasmia Jannat, Michael Gowanlock, Satish Puri
Challenges In Scaling R-Tree Spatial Search On Processing-In-Memory, Tasmia Jannat, Michael Gowanlock, Satish Puri
Computer Science Faculty Research & Creative Works
Spatial query processing is important in scientific, geospatial, and data-intensive applications. R-trees are widely used to index spatial objects, but their query-dependent traversal creates irregular work across different regions. This poster studies the challenges of scaling R-tree spatial search on a commercial Processing-in-Memory (PIM) system. Although PIM reduces CPU to memory data movement by executing search near memory, it does not remove full-pipeline overheads: the host still manages data placement, query batching, kernel launches, result retrieval, and aggregation. Our results show strong DPU-side search acceleration, with PIM kernel speedup ranging from about 20 x to 73 x, but end-to-end speedup …
Learning Programming In Informal Spaces: Using Emotion As A Lens To Understand Novice Struggles On R/Learnprogramming, Alif Al Hasan, Subarna Saha, Mia Mohammad Imran
Learning Programming In Informal Spaces: Using Emotion As A Lens To Understand Novice Struggles On R/Learnprogramming, Alif Al Hasan, Subarna Saha, Mia Mohammad Imran
Computer Science Faculty Research & Creative Works
Novice programmers experience emotional difficulties in informal online learning environments, where Confusion and Frustration can hinder motivation and learning outcomes. This study investigates novice programmers' emotional experiences in informal settings, identifies causes of emotional struggle, and explores design opportunities for affect-aware support systems. We manually annotated 1,500 posts from r/learnprogramming using the Learning-Centered Emotions framework, applying clustering, and axial coding. Confusion, Curiosity, and Frustration dominated emotional experiences, sometimes co-occurring and linked to early learning stages. Positive emotions were infrequent. The primary emotional triggers included ambiguous errors, unclear learning pathways, and misaligned resources. We identify five key areas where novice programmers …
Performance Evaluation Of Approximate Nearest Neighbor Search On Nvidia Bluefield-3 Dpu, Sophia Bhoria, Nathan Tibbetts, Arjun Kirubakaran, Alima Subedi, Satish Puri
Performance Evaluation Of Approximate Nearest Neighbor Search On Nvidia Bluefield-3 Dpu, Sophia Bhoria, Nathan Tibbetts, Arjun Kirubakaran, Alima Subedi, Satish Puri
Computer Science Faculty Research & Creative Works
Advanced SmartNICs known as Data Processing Units (DPU) enable in-network data analytics, being equipped with standard processors and accelerators capable of doing custom computation on-NIC. These SmartNICs are advantageous because the host CPU can delegate simpler data analytics tasks, like filtering, to the NIC where the data first arrives. Only data needing further refinement must be passed on to the host CPU. Our benchmarks focus on NVIDIA's commercially available Bluefield-3 DPU. Similarity search, particularly Approximate Nearest Neighbor (ANN) search, is an important domain with wide usage across numerous applications. We explore ANN search on SmartNICs, providing insight into the performance …
Dynlp: Parallel Dynamic Batch Update For Label Propagation In Graph-Based Semi-Supervised Learning, S. M. Shovan, Arindam Khanda, S. M. Ferdous, Sajal K. Das, Mahantesh Halappanavar
Dynlp: Parallel Dynamic Batch Update For Label Propagation In Graph-Based Semi-Supervised Learning, S. M. Shovan, Arindam Khanda, S. M. Ferdous, Sajal K. Das, Mahantesh Halappanavar
Computer Science Faculty Research & Creative Works
Semi-supervised learning aims to infer class labels using only a small fraction of labeled data. In graph-based semi-supervised learning, this is typically achieved through label propagation to predict labels of unlabeled nodes. However, in real-world applications, new data often arrives in batches, and stale data often becomes irrelevant. Each time a new batch appears, reapplying the traditional label propagation algorithm to recompute all labels is redundant, computationally intensive, and inefficient. To address the absence of an efficient label propagation update method, we propose DynLP, a novel GPU-centric Dynamic Batched Parallel Label Propagation algorithm that performs only the necessary updates, propagating …
Digital Twin-Assisted Optimization Of 6g Wireless Networks: Ensuring Deterministic Communication, Yingpu Nian, Bo Yi, Xingwei Wang, Sajal K. Das
Digital Twin-Assisted Optimization Of 6g Wireless Networks: Ensuring Deterministic Communication, Yingpu Nian, Bo Yi, Xingwei Wang, Sajal K. Das
Computer Science Faculty Research & Creative Works
With the rapid advancement of 6G technology and the increasing use of smart devices, Deterministic 6G Wireless Networks (D6WN) have emerged to meet the growing network transmission demands. In particular, applications such as autonomous vehicles, remote surgery, and industrial automation require extremely low transmission latency to function effectively, highlighting the critical need for D6WN in supporting these time-sensitive use cases. Yet, the conventional TCP/IP framework lacks effective unified traffic and congestion control scheduling, aggravating latency and uncertainty, posing a challenge to ensuring reliable real-time critical applications. To address the challenges of deterministic transmission in D6WN, this paper integrates Digital Twin …
Hsv-1 Us3 Hijacks Conserved Actin Regulatory Complexes To Drive F-Actin Remodeling, Md Imran Hossain, Md Arifuzzaman, Md Mehedi Hasan, Seung Jong Park, Leila Rahimian, Ojasvi Dutta, Vladimir Chouljenko, Harikrishnan Mohan, Reza Ghavimi, Konstantin G. Kousoulas
Hsv-1 Us3 Hijacks Conserved Actin Regulatory Complexes To Drive F-Actin Remodeling, Md Imran Hossain, Md Arifuzzaman, Md Mehedi Hasan, Seung Jong Park, Leila Rahimian, Ojasvi Dutta, Vladimir Chouljenko, Harikrishnan Mohan, Reza Ghavimi, Konstantin G. Kousoulas
Computer Science Faculty Research & Creative Works
The herpes simplex virus 1 (HSV-1) US3 is a multifunctional serine/threonine kinase that promotes HSV-1 replication and spread. But its role and the mechanisms by which US3 regulates actin cytoskeletal remodeling remain poorly defined. We combined flow cytometry, confocal microscopy, immunoprecipitation-mass spectrometry (IP-MS), protein complex mapping, and machine learning to characterize US3-mediated F-actin dynamics. Flow cytometry and confocal microscopy showed that wild-type HSV-1 induces significant F-actin remodeling, while the ΔUS3 mutant displays F-actin levels comparable to uninfected cells, identifying US3 as a key regulator. IP-MS identified 47 high-confidence US3 interactors enriched in conserved actin regulatory complexes, including Arp2/3 nucleation machinery, …
Label-Flip Attack Detection Via Trust-Weighted Aggregation In Federated Learning For Underground Mine Security, Md Sazedur Rahman, Sanjay Madria, Samuel Frimpong
Label-Flip Attack Detection Via Trust-Weighted Aggregation In Federated Learning For Underground Mine Security, Md Sazedur Rahman, Sanjay Madria, Samuel Frimpong
Computer Science Faculty Research & Creative Works
Underground mining operations are increasingly dependent on autonomous vehicles, robotic drilling systems, and intelligent inspection platforms operating in confined, GPS-denied tunnel environments. These systems rely on distributed perception models to interpret navigation cues, hazard warnings, and environmental signals in real time. While centralized deep learning can enhance model performance, transferring raw operational data across mining sites introduces serious confidentiality and security risks. Federated Learning (FL) offers a privacy-preserving alternative by enabling collaborative model training without sharing local datasets. However, deploying FL in underground mining introduces several critical challenges: (i) Training labels may be modified either maliciously by compromised clients or …
Olaf: Towards Robust Llm-Based Annotation Framework In Empirical Software Engineering, Mia Mohammad Imran, Tarannum Shaila Zaman
Olaf: Towards Robust Llm-Based Annotation Framework In Empirical Software Engineering, Mia Mohammad Imran, Tarannum Shaila Zaman
Computer Science Faculty Research & Creative Works
Large Language Models (LLMs) are increasingly used in empirical software engineering (ESE) to automate or assist annotation tasks such as labeling commits, issues, and qualitative artifacts. Yet the reliability and reproducibility of such annotations remain underexplored. Existing studies often lack standardized measures for reliability, calibration, and drift, and frequently omit essential configuration details. We argue that LLM-based annotation should be treated as a measurement process rather than a purely automated activity. In this position paper, we outline the Operationalization for LLM-based Annotation Framework (OLAF), a conceptual framework that organizes key constructs: reliability, calibration, drift, consensus, aggregation, and transparency. The paper …
Smart-Charge: Stable Matching Algorithm For Electric Vehicle Charging In Subscription-Based Models, Arindam Khanda, Anurag Satpathy, Sajal K. Das
Smart-Charge: Stable Matching Algorithm For Electric Vehicle Charging In Subscription-Based Models, Arindam Khanda, Anurag Satpathy, Sajal K. Das
Computer Science Faculty Research & Creative Works
The transition from internal combustion engine (ICE) to electric vehicles (EVs) introduces several challenges, including limited charging infrastructure, unpredictable charging wait times, and inefficient selection of charging points (CPs). To address these issues, we propose SMART-CHARGE, a framework that efficiently assigns EVs to CPs through an edge-level coordination mechanism within each service region, enforced by roadside units (RSUs). Operating under a novel subscription-based charging model, SMART-CHARGE enforces predefined charging time limits via service-level agreements (SLAs). The EV-CP assignment problem is formulated as a one-to-many matching game that captures EV user preferences. To construct bounded yet efficient EV coalitions at each …
Safepass: Efficient Emergency Vehicle Passage With Minimal Disruption To Traffic Flow, Osho Osho, Suchetana Chakraborty, Sajal K. Das
Safepass: Efficient Emergency Vehicle Passage With Minimal Disruption To Traffic Flow, Osho Osho, Suchetana Chakraborty, Sajal K. Das
Computer Science Faculty Research & Creative Works
Emergency vehicle passage in congested urban networks poses a dual challenge: ensuring rapid response while minimizing disruption to surrounding traffic. This study addresses this challenge in the context of Connected Autonomous Emergency Vehicles (CA-EVs), proposing SafePass , a lightweight distributed framework for seamless CA-EV passage through decentralized, cooperative maneuvering of surrounding Connected Autonomous Non-Emergency Vehicles (CA-NEVs). At its core, SafePass employs the Target Lane Potential (TLP), a novel utility-based metric combining lane-choice utility with probabilistic gap acceptance, augmented by a cascade-aware penalty that suppresses upstream shockwaves triggered by gap-creation maneuvers. Evaluated in Simulation of Urban Mobility (SUMO) using synthetic traffic …
Characterizing User-Reported Risks Across Llm Chatbots, Lingyao Li, Renkai Ma, Zhaoqian Xue, Junjie Xiong
Characterizing User-Reported Risks Across Llm Chatbots, Lingyao Li, Renkai Ma, Zhaoqian Xue, Junjie Xiong
Computer Science Faculty Research & Creative Works
As Large Language Models (LLMs) become increasingly integral to daily life, users are engaging with multiple LLM chatbots for various needs; however, prior research on LLM risks often remains lab-based or focuses on single LLMs like ChatGPT or singular risks like privacy. To gain a multi-risk, cross-chatbot understanding of user experiences, we analyze Reddit discussions around seven major LLM chatbots using the NIST AI Risk Management Framework. We find that user-reported risks are unevenly distributed and chatbot-specific: ChatGPT is associated with safety and fairness concerns, Gemini with privacy, and Claude with security and resilience. Less frequent risks, such as explainability …
A Survey On Heterogeneous Computing Using Smartnics And Emerging Data Processing Units, Nathan Tibbetts, Sifat Ibtisum, Satish Puri
A Survey On Heterogeneous Computing Using Smartnics And Emerging Data Processing Units, Nathan Tibbetts, Sifat Ibtisum, Satish Puri
Computer Science Faculty Research & Creative Works
The emergence of new, off-path smart network cards (SmartNICs), known generally as Data Processing Units (DPU), has opened a wide range of research opportunities. Of particular interest is the use of these and related devices in tandem with their host's CPU, creating a heterogeneous computing system with new properties and strengths to be explored, capable of accelerating a wide variety of workloads. This survey begins by providing the motivation and relevant background information for this new field, including its origins, a few current hardware offerings, major programming languages and frameworks for using them, and associated challenges. We then review and …
Stard-Net: Spatiotemporal Attention For Robust Detection Of Tiny Airborne Objects From Moving Drones, Hasibur Rahman, Sanjay Kumar Madria
Stard-Net: Spatiotemporal Attention For Robust Detection Of Tiny Airborne Objects From Moving Drones, Hasibur Rahman, Sanjay Kumar Madria
Computer Science Faculty Research & Creative Works
The rapid adoption of drones across various domains, alongside advancements in computer vision, has driven growing interest in vision-based airborne object detection from moving aerial platforms. However, this task remains challenging due to the small scale of objects, camouflage within cluttered backgrounds, and occlusions. To address these challenges, we introduce an end-to-end detection framework that integrates a Drone Receptive Field Block (DRFB) to extract multiscale and geometrically diverse features, specifically designed to enhance the detection of small and camouflaged airborne objects. To model motion patterns over time while preserving spatial structure, particularly for detecting camouflaged, cluttered and occluded objects with …
Pciafl: Personalized And Class Imbalance-Aware Federated Learning For Driver Behavior Classification, Osho Osho, Shubh Garg, Suchetana Chakraborty, Sajal K. Das
Pciafl: Personalized And Class Imbalance-Aware Federated Learning For Driver Behavior Classification, Osho Osho, Shubh Garg, Suchetana Chakraborty, Sajal K. Das
Computer Science Faculty Research & Creative Works
Automated understanding of driver behavior from vehicular kinematics is vital for safety-aware intelligent transportation systems. However, centralized cloud processing suffers from latency, scalability, and privacy issues. Federated Learning (FL) provides a decentralized alternative but faces two major challenges: (i) non-IID client data due to heterogeneous driving styles and sensors, and (ii) severe class imbalance, as risky behaviors are inherently rare. In this work, we propose a personalized FL framework that uses a shared CNN-LSTM backbone with client-adaptive classifiers and incorporates a cost-sensitive loss to address behavior skew. Evaluated on the UAH-DriveSet dataset, our method achieves 92.60% accuracy and 91.68% macro-F1, …
Datamut: Deterministic Algorithms For Time-Delay Attack Detection In Multi-Hop Uav Networks, Keiwan Soltani, Federico Corò, Punyasha Chatterjee, Sajal K. Das
Datamut: Deterministic Algorithms For Time-Delay Attack Detection In Multi-Hop Uav Networks, Keiwan Soltani, Federico Corò, Punyasha Chatterjee, Sajal K. Das
Computer Science Faculty Research & Creative Works
Unmanned Aerial Vehicles (UAVs), also known as drones, have gained popularity in various fields such as agriculture, emergency response, and search and rescue operations. UAV networks are susceptible to potential security threats, such as wormhole attacks, jamming, spoofing, and false data injection. Time-Delay Attack (TDA) is a unique attack in which malicious UAVs intentionally delay packet forwarding, posing significant threats, especially in time-sensitive applications. It is challenging to distinguish malicious delay from benign network delay due to the dynamic nature of UAV networks, intermittent wireless connectivity, or the Store-Carry-Forward (SCF) mechanism during multi-hop communication. Some existing works propose machine learning-based …
Rescue: Routing Under Evolving Stochastic Congestion And Uncertain Spread In Wildfire Emergencies, Sowjanya Tammali, Arindam Khanda, Anurag Satpathy, S. M. Shovan, Sajal K. Das
Rescue: Routing Under Evolving Stochastic Congestion And Uncertain Spread In Wildfire Emergencies, Sowjanya Tammali, Arindam Khanda, Anurag Satpathy, S. M. Shovan, Sajal K. Das
Computer Science Faculty Research & Creative Works
Wildfires cause unpredictable spread and panic-driven congestion, posing severe challenges to evacuation planning. We present RESCUE (Routing under Evolving Stochastic Congestion and Uncertain Spread in Wildfire Emergencies), a dynamic, risk-aware framework that models the road network as a time-varying weighted graph. RESCUE operates in two stages: (i) a preprocessing phase integrating fire forecasts, traffic density, and distance to assign edge weights, and (ii) a real-time routing phase that adaptively updates paths using a multi-granular strategy distinguishing macro-level disruptions (e.g., rapid spread) from micro-level changes (e.g., local congestion). Two stochastic edge-cost functions are introduced: the Edge-Fire Risk Function (EFRF), estimating road …
Explaining The Unseen: Multimodal Vision-Language Reasoning For Situational Awareness In Underground Mining Disasters, Mizanur Rahman Jewel, Mohamed Elmahallawy, Sanjay Kumar Madria, Samuel Frimpong
Explaining The Unseen: Multimodal Vision-Language Reasoning For Situational Awareness In Underground Mining Disasters, Mizanur Rahman Jewel, Mohamed Elmahallawy, Sanjay Kumar Madria, Samuel Frimpong
Computer Science Faculty Research & Creative Works
Underground mining disasters produce pervasive darkness, dust, and collapses that obscure vision and make situational awareness difficult for humans and conventional systems. To address this, we propose MDSE, Multimodal Disaster Situation Explainer, a novel vision-language framework that automatically generates detailed textual explanations of post-disaster underground scenes. MDSE has three-fold innovations: (i) Context-Aware Cross-Attention for robust alignment of visual and textual features even under severe degradation; (ii) Segmentation-aware dual pathway visual encoding that fuses global and region-specific embeddings; and (iii) Resource-Efficient Transformer-Based Language Model for expressive caption generation with minimal compute cost. To support this task, we present the Underground Mine …
Fairrfl: Fair And Robust Federated Learning In The Presence Of Selfish Clients, Andrea Augello, Ashish Gupta, Giuseppe Lo Re, Sajal K. Das
Fairrfl: Fair And Robust Federated Learning In The Presence Of Selfish Clients, Andrea Augello, Ashish Gupta, Giuseppe Lo Re, Sajal K. Das
Computer Science Faculty Research & Creative Works
Federated Learning (FL) is a paradigm that enables collaborative machine learning without disclosing the local data of the participants. However, in real-world FL deployment scenarios, some unscrupolous clients may alter the training process to skew the global model towards their local optimum, unfairly prioritizing their data distribution. Their influence can degrade overall model performance for normal clients and reduce fairness in the system. We call this novel category of misbehaving clients 'selfish'. This work proposes a Fair and Robust strategy for aggregation in the Federated Learning (FL) server to mitigate the effect of Selfish clients (FairRFL). FairRFL incorporates a novel …
Digital Twin Freshness Maximization In Edge Computing, Jing Li, Jianping Wang, Weifa Liang, Quan Chen, Sajal K. Das, Xiaohua Jia
Digital Twin Freshness Maximization In Edge Computing, Jing Li, Jianping Wang, Weifa Liang, Quan Chen, Sajal K. Das, Xiaohua Jia
Computer Science Faculty Research & Creative Works
Mobile Edge Computing (MEC) shifts powerful computing resource provisioning from remote powerful data centers to the edge of core networks. Meanwhile, Digital Twin (DT) has surfaced as a promising technology to provide comprehensive and dynamic descriptions of physical objects in cyberspace with bidirectional and real-time interactions. Moreover, Internet of Things (IoT) devices have contributed abundant, heterogeneous and continuous data from interconnected devices to the explosion of DTs. With technologies evolution, there is an increasing necessity to address the freshness of both DT states and DT data, through timely synchronizations between DTs and their objects in a highly dynamic IoT environment. …
On-Device Artificial Intelligence Solutions With Applications To Smart Environments, Fabrizio De Vita, Dario Bruneo, Sajal K. Das
On-Device Artificial Intelligence Solutions With Applications To Smart Environments, Fabrizio De Vita, Dario Bruneo, Sajal K. Das
Computer Science Faculty Research & Creative Works
Recent advances in Artificial Intelligence (AI) and the increasing availability of computational power have accelerated the diffusion of Intelligent Cyber-Physical Systems (ICPSs), enabling smart applications with reasoning capabilities. However, the limited resources of embedded and Edge devices significantly constrain the complexity of deep learning models that can be effectively deployed. Traditional approaches rely on cloud-based training and edge-only inference, a paradigm that becomes inadequate when low latency, privacy, security, and high customization are required. In this context, On-device AI is emerging as a new paradigm in which both training and inference are performed directly on the device, avoiding data transfer …
Pahina: Precision-Aware Hierarchical In-Network Aggregation For Edge Distributed Training, Yingpu Nian, Bo Yi, Qiang He, Xingwei Wang, Geyong Min, Keqin Li, Sajal K. Das
Pahina: Precision-Aware Hierarchical In-Network Aggregation For Edge Distributed Training, Yingpu Nian, Bo Yi, Qiang He, Xingwei Wang, Geyong Min, Keqin Li, Sajal K. Das
Computer Science Faculty Research & Creative Works
The rise of edge intelligence is driving distributed machine learning toward a new paradigm of edge-collaborative computing. To overcome the severe communication bottleneck in this paradigm, In-Network Aggregation is a critical enabling technology. However, its effectiveness is fundamentally undermined by the profound resource heterogeneity of edge networks. Specifically, edge devices, adapting to hardware constraints, operate at varying numerical precisions, leading to significant data inflation as gradients are aggregated. Compounding this, unevenly distributed network resources and traditional, precision-oblivious routing strategies often misallocate critical, high-precision gradients to low-quality paths. This mismatch creates severe network congestion, crippling the efficiency of distributed training. To …
Aim5b: Ai Integrated Semantic Framework For 5g And Beyond Network Management, Thanveer Sulthana, Ava Sharif Jourabchi, Venkat Rao Manavarthi, Jayadithya Nalajala, Ankitha Srirama Reddy, Baek Young Choi, Sejun Song
Aim5b: Ai Integrated Semantic Framework For 5g And Beyond Network Management, Thanveer Sulthana, Ava Sharif Jourabchi, Venkat Rao Manavarthi, Jayadithya Nalajala, Ankitha Srirama Reddy, Baek Young Choi, Sejun Song
Computer Science Faculty Research & Creative Works
Scalable, interpretable, and intelligent network monitoring and management are critical for 5 G and future networks. This paper introduces Aim5B, an AI-integrated semantic framework for 5 G and beyond network management to address these challenges. Aim5B processes unstructured logs from key 5G core network functions, and transforms them into a knowledge graph aligned with the semantic structure of control-plane events. Leveraging a large language model (LLM), Aim5B enables natural language queries to be translated into Cypher graph queries, facilitating precise log retrieval, event analysis, temporal correlation, and statistical summarization-without relying on static parsing rules or predefined dashboards. Integrated on a …