10,777 results on '"Aydin, P"'
Search Results
2. SHARPIE: A Modular Framework for Reinforcement Learning and Human-AI Interaction Experiments
- Author
-
Aydın, Hüseyin, Dubois-Godin, Kevin, Braz, Libio Goncalvez, Hengst, Floris den, Baraka, Kim, Çelikok, Mustafa Mert, Sauter, Andreas, Wang, Shihan, and Oliehoek, Frans A.
- Subjects
Computer Science - Artificial Intelligence ,Computer Science - Human-Computer Interaction - Abstract
Reinforcement learning (RL) offers a general approach for modeling and training AI agents, including human-AI interaction scenarios. In this paper, we propose SHARPIE (Shared Human-AI Reinforcement Learning Platform for Interactive Experiments) to address the need for a generic framework to support experiments with RL agents and humans. Its modular design consists of a versatile wrapper for RL environments and algorithm libraries, a participant-facing web interface, logging utilities, deployment on popular cloud and participant recruitment platforms. It empowers researchers to study a wide variety of research questions related to the interaction between humans and RL agents, including those related to interactive reward specification and learning, learning from human feedback, action delegation, preference elicitation, user-modeling, and human-AI teaming. The platform is based on a generic interface for human-RL interactions that aims to standardize the field of study on RL in human contexts.
- Published
- 2025
3. A two-stage stochastic MINLP model to design and operate a multi-energy microgrid by addressing carbon emission regulatory policies uncertainty
- Author
-
Akülker, Handan, Alakent, Burak, and Aydin, Erdal
- Subjects
Mathematics - Optimization and Control - Abstract
This study suggests a novel two-stage Mixed-Integer Nonlinear Programming model considering uncertainty related to implementation of carbon dioxide emission regulatory policies, which are carbon trading and emission taxing and can change over the years, for the purpose of optimal equipment selection from candidate equipment to design, size and operate a multi-energy microgrid. The uncertain sources are air temperature, wind speed, solar radiation, carbon dioxide trading price or tax, and natural gas price. Candidate equipment are wind turbines, PV arrays, a biomass-fired generator, biomass combined cycles, combined heat and power generators, conventional generators, an electricity storage unit, integrated gasification combined cycles, a heat pump, and a power-to-synthetic natural gas (P2G) system. Three case studies are investigated. In the first case, the model selects the optimal equipment for meeting the electricity and heat demands only. In the second case, the optimal equipment selections are determined to couple with the P2G system to meet the electricity, heat, and natural gas demands. In the third case, the model selects the optimal equipment to run with sustainable energy generators: wind turbines and solar panels. The optimal selections are compared between deterministic and stochastic forms of the optimization models.
- Published
- 2025
4. HyperZero: A Customized End-to-End Auto-Tuning System for Recommendation with Hourly Feedback
- Author
-
Cai, Xufeng, Guan, Ziwei, Yuan, Lei, Aydin, Ali Selman, Xu, Tengyu, Liu, Boying, Ren, Wenbo, Xiang, Renkai, He, Songyi, Yang, Haichuan, Li, Serena, Gao, Mingze, Weng, Yue, and Liu, Ji
- Subjects
Computer Science - Information Retrieval ,Computer Science - Machine Learning - Abstract
Modern recommendation systems can be broadly divided into two key stages: the ranking stage, where the system predicts various user engagements (e.g., click-through rate, like rate, follow rate, watch time), and the value model stage, which aggregates these predictive scores through a function (e.g., a linear combination defined by a weight vector) to measure the value of each content by a single numerical score. Both stages play roughly equally important roles in real industrial systems; however, how to optimize the model weights for the second stage still lacks systematic study. This paper focuses on optimizing the second stage through auto-tuning technology. Although general auto-tuning systems and solutions - both from established production practices and open-source solutions - can address this problem, they typically require weeks or even months to identify a feasible solution. Such prolonged tuning processes are unacceptable in production environments for recommendation systems, as suboptimal value models can severely degrade user experience. An effective auto-tuning solution is required to identify a viable model within 2-3 days, rather than the extended timelines typically associated with existing approaches. In this paper, we introduce a practical auto-tuning system named HyperZero that addresses these time constraints while effectively solving the unique challenges inherent in modern recommendation systems. Moreover, this framework has the potential to be expanded to broader tuning tasks within recommendation systems.
- Published
- 2025
- Full Text
- View/download PDF
5. EPOCH: Enabling Preemption Operation for Context Saving in Heterogeneous FPGA Systems
- Author
-
Malik, Arsalan Ali, Karabulut, Emre, and Aysu, Aydin
- Subjects
Computer Science - Distributed, Parallel, and Cluster Computing ,Computer Science - Hardware Architecture - Abstract
FPGAs are increasingly used in multi-tenant cloud environments to offload compute-intensive tasks from the main CPU. The operating system (OS) plays a vital role in identifying tasks suitable for offloading and coordinating between the CPU and FPGA for seamless task execution. The OS leverages preemption to manage CPU efficiently and balance CPU time; however, preempting tasks running on FPGAs without context loss remains challenging. Despite growing reliance on FPGAs, vendors have yet to deliver a solution that fully preserves and restores task context. This paper presents EPOCH, the first out-of-the-box framework to seamlessly preserve the state of tasks running on multi-tenant cloud FPGAs. EPOCH enables interrupting a tenant's execution at any arbitrary clock cycle, capturing its state, and saving this 'state snapshot' in off-chip memory with fine-grain granularity. Subsequently, when task resumption is required, EPOCH can resume execution from the saved 'state snapshot', eliminating the need to restart the task from scratch. EPOCH automates intricate processes, shields users from complexities, and synchronizes all underlying logic in a common clock domain, mitigating timing violations and ensuring seamless handling of interruptions. EPOCH proficiently captures the state of fundamental FPGA elements, such as look-up tables, flip-flops, block--RAMs, and digital signal processing units. On real hardware, ZynQ-XC7Z020 SoC, the proposed solution achieves context save and restore operations per frame in 62.2us and 67.4us, respectively., Comment: 13 Pages, 7 Figures, 3 Tables
- Published
- 2025
6. An Efficient Sparse Kernel Generator for O(3)-Equivariant Deep Networks
- Author
-
Bharadwaj, Vivek, Glover, Austin, Buluc, Aydin, and Demmel, James
- Subjects
Computer Science - Machine Learning ,Computer Science - Artificial Intelligence - Abstract
Rotation equivariant graph neural networks, i.e., networks designed to guarantee certain geometric relations between their inputs and outputs, yield state-of-the-art performance on spatial deep learning tasks. They exhibit high data efficiency during training and significantly reduced inference time for interatomic potential calculations compared to classical approaches. Key to these models is the Clebsch-Gordon (CG) tensor product, a kernel that contracts two dense feature vectors with a highly structured sparse tensor to produce a dense output vector. The operation, which may be repeated millions of times for typical equivariant models, is a costly and inefficient bottleneck. We introduce a GPU sparse kernel generator for the CG tensor product that provides significant speedup over the best existing open and closed-source implementations. Our implementation achieves high performance by carefully managing GPU shared memory through static analysis at model compile-time, minimizing reads and writes to global memory. We break the tensor product into a series of kernels with operands that fit entirely into registers, enabling us to emit long arithmetic instruction streams that maximize instruction-level parallelism. By fusing the CG tensor product with a subsequent graph convolution, we reduce both intermediate storage and global memory traffic over naive approaches that duplicate input data. We also provide optimized kernels for the gradient of the CG tensor product and a novel identity for the higher partial derivatives required to predict interatomic forces. Our fused kernels offer up to 4.5x speedup for the forward pass and 3x for the backward pass over NVIDIA cuEquivariance, as well as >10x speedup over the widely-used e3nn package. We offer up to 5.3x inference-time speedup for the MACE chemistry foundation model over the original unoptimized version., Comment: 12 pages, 9 figures, 3 tables
- Published
- 2025
7. A free boundary inviscid model of flow-structure interaction
- Author
-
Aydın, Mustafa Sencer, Kukavica, Igor, and Tuffaha, Amjad
- Subjects
Mathematics - Analysis of PDEs - Abstract
We address the existence and of solutions for the Euler-plate free-boundary system modeling an interaction of a three-dimensional inviscid fluid and an evolving plate. We prove the local existence and uniqueness of solutions for initial fluid and structural velocities belonging to $H^{2.5+}$ and $H^{2+}$, respectively. The results justify earlier a~priori estimates shown by two of the authors.
- Published
- 2025
8. Almost global existence for the stochastic Navier-Stokes equations with small $H^{1/2}$ data
- Author
-
Aydın, Mustafa Sencer, Kukavica, Igor, and Xu, Fanhui
- Subjects
Mathematics - Probability ,Mathematics - Analysis of PDEs - Abstract
We address the global existence of solutions to the stochastic Navier-Stokes equations with multiplicative noise and with initial data in $H^{1/2}(\mathbb{T}^{3})$. We prove that the solution exists globally in time with probability arbitrarily close to~$1$ if the initial data and noise are sufficiently small. If the noise is not assumed to be small, then the solution is global on a sufficiently small deterministic time interval with probability arbitrarily close to~$1$.
- Published
- 2025
9. Scalar fully-charm and bottom tetraquarks under extreme temperatures
- Author
-
Aydın, A., Sundu, H., Süngü, J. Y., and Veliev, E. Veli
- Subjects
High Energy Physics - Phenomenology - Abstract
Temperature dependences of masses and current couplings of the ground state of the fully heavy tetraquarks $T_{4c}$ and $T_{4b}$, composed of charm $(c)$ and bottom $(b)$ quarks and antiquarks with spin-parities $J^{PC} = 0^{++}$ are evaluated in the diquark antidiquark picture using Thermal QCD Sum Rules including vacuum condensates up to dimension four. The calculated values for $cc\bar{c}\bar{c}$ and $bb\bar{b}\bar{b}$ tetraquark states at $T=0$ align well with the experimental data on the broad structures. Based on the numerical analyses around the critical temperature, the mass of the $T_{4c}$ state decreases by $8\%$ compared to its vacuum state, while for its b partner, this percentage is approximately $3.3\%$. For the decay constants, the reductions are approximately $71\%$ and $66.6\%$, respectively. The precise exploration of tetraquark states awaits future scrutiny in upcoming experiments, including Belle II, Super-B, PANDA, and LHCb., Comment: 12 pages, 14 figures
- Published
- 2025
10. Code and Pixels: Multi-Modal Contrastive Pre-training for Enhanced Tabular Data Analysis
- Author
-
Roy, Kankana, Krämer, Lars, Domaschke, Sebastian, Haris, Malik, Aydin, Roland, Isensee, Fabian, and Held, Martin
- Subjects
Computer Science - Computer Vision and Pattern Recognition ,Computer Science - Machine Learning - Abstract
Learning from tabular data is of paramount importance, as it complements the conventional analysis of image and video data by providing a rich source of structured information that is often critical for comprehensive understanding and decision-making processes. We present Multi-task Contrastive Masked Tabular Modeling (MT-CMTM), a novel method aiming to enhance tabular models by leveraging the correlation between tabular data and corresponding images. MT-CMTM employs a dual strategy combining contrastive learning with masked tabular modeling, optimizing the synergy between these data modalities. Central to our approach is a 1D Convolutional Neural Network with residual connections and an attention mechanism (1D-ResNet-CBAM), designed to efficiently process tabular data without relying on images. This enables MT-CMTM to handle purely tabular data for downstream tasks, eliminating the need for potentially costly image acquisition and processing. We evaluated MT-CMTM on the DVM car dataset, which is uniquely suited for this particular scenario, and the newly developed HIPMP dataset, which connects membrane fabrication parameters with image data. Our MT-CMTM model outperforms the proposed tabular 1D-ResNet-CBAM, which is trained from scratch, achieving a relative 1.48% improvement in relative MSE on HIPMP and a 2.38% increase in absolute accuracy on DVM. These results demonstrate MT-CMTM's robustness and its potential to advance the field of multi-modal learning.
- Published
- 2025
11. OpenAI ChatGPT interprets Radiological Images: GPT-4 as a Medical Doctor for a Fast Check-Up
- Author
-
Aydin, Omer and Karaarslan, Enis
- Subjects
Computer Science - Computer Vision and Pattern Recognition - Abstract
OpenAI released version GPT-4 on March 14, 2023, following the success of ChatGPT, which was announced in November 2022. In addition to the existing GPT-3 features, GPT-4 has the ability to interpret images. To achieve this, the processing power and model have been significantly improved. The ability to process and interpret images goes far beyond the applications and effectiveness of artificial intelligence. In this study, we will first explore the interpretation of radiological images in healthcare using artificial intelligence (AI). Then, we will experiment with the image interpretation capability of the GPT-4. In this way, we will address the question of whether artificial intelligence (AI) can replace a healthcare professional (e.g., a medical doctor) or whether it can be used as a decision support tool that makes decisions easier and more reliable.
- Published
- 2025
12. Bayesian Optimization of Bilevel Problems
- Author
-
Ekmekcioglu, Omer, Aydin, Nursen, and Branke, Juergen
- Subjects
Computer Science - Machine Learning ,Mathematics - Optimization and Control - Abstract
Bilevel optimization, a hierarchical mathematical framework where one optimization problem is nested within another, has emerged as a powerful tool for modeling complex decision-making processes in various fields such as economics, engineering, and machine learning. This paper focuses on bilevel optimization where both upper-level and lower-level functions are black boxes and expensive to evaluate. We propose a Bayesian Optimization framework that models the upper and lower-level functions as Gaussian processes over the combined space of upper and lower-level decisions, allowing us to exploit knowledge transfer between different sub-problems. Additionally, we propose a novel acquisition function for this model. Our experimental results demonstrate that the proposed algorithm is highly sample-efficient and outperforms existing methods in finding high-quality solutions.
- Published
- 2024
13. Leveraging Weak Supervision for Cell Localization in Digital Pathology Using Multitask Learning and Consistency Loss
- Author
-
Cesur, Berke Levent, Karasayar, Ayse Humeyra Dur, Bulutay, Pinar, Kapucuoglu, Nilgun, Mericoz, Cisel Aydin, Eren, Handan, Dilbaz, Omer Faruk, Osmanli, Javidan, Yetkili, Burhan Soner, Kulac, Ibrahim, Koyuncu, Can Fahrettin, and Gunduz-Demir, Cigdem
- Subjects
Electrical Engineering and Systems Science - Image and Video Processing ,Computer Science - Computer Vision and Pattern Recognition - Abstract
Cell detection and segmentation are integral parts of automated systems in digital pathology. Encoder-decoder networks have emerged as a promising solution for these tasks. However, training of these networks has typically required full boundary annotations of cells, which are labor-intensive and difficult to obtain on a large scale. However, in many applications, such as cell counting, weaker forms of annotations--such as point annotations or approximate cell counts--can provide sufficient supervision for training. This study proposes a new mixed-supervision approach for training multitask networks in digital pathology by incorporating cell counts derived from the eyeballing process--a quick visual estimation method commonly used by pathologists. This study has two main contributions: (1) It proposes a mixed-supervision strategy for digital pathology that utilizes cell counts obtained by eyeballing as an auxiliary supervisory signal to train a multitask network for the first time. (2) This multitask network is designed to concurrently learn the tasks of cell counting and cell localization, and this study introduces a consistency loss that regularizes training by penalizing inconsistencies between the predictions of these two tasks. Our experiments on two datasets of hematoxylin-eosin stained tissue images demonstrate that the proposed approach effectively utilizes the weakest form of annotation, improving performance when stronger annotations are limited. These results highlight the potential of integrating eyeballing-derived ground truths into the network training, reducing the need for resource-intensive annotations.
- Published
- 2024
14. RIS-Aided Radar Imaging Utilizing the Virtual Source Principle
- Author
-
Ilgac, Furkan H., Bouabdellah, Mounia, and Sezgin, Aydin
- Subjects
Electrical Engineering and Systems Science - Signal Processing - Abstract
This paper investigates signle-antenna radar imaging with a reconfigurable intelligent surface (RIS). Configuring phase shifts in a RIS-aided radar system can be thought as synthetic aperture radar (SAR) imaging with a moving virtual source. With this perspective, the problem is modeled in the wavenumber domain and image forming algorithms are formulated for near and far field regions. Thus, a novel and intuitive perspective has been introduced to the RIS-aided radar imaging formation problem, opening a new avenue for adapting well-known SAR methods in the literature to these systems., Comment: 6 pages, 8 figures, submitted to ICC 2025
- Published
- 2024
15. Flagellar Swimming at Low Reynolds Numbers: Zoospore-Inspired Robotic Swimmers with Dual Flagella for High-Speed Locomotion
- Author
-
Chikere, Nnamdi C., Voticky, Sofia Lozano, Tran, Quang D., and Ozkan-Aydin, Yasemin
- Subjects
Computer Science - Robotics - Abstract
Traditional locomotion strategies become ineffective at low Reynolds numbers, where viscous forces predominate over inertial forces. To adapt, microorganisms have evolved specialized structures like cilia and flagella for efficient maneuvering in viscous environments. Among these organisms, Phytophthora zoospores demonstrate unique locomotion mechanisms that allow them to rapidly spread and attack new hosts while expending minimal energy. In this study, we present the design, fabrication, and testing of a zoospore-inspired robot, which leverages dual flexible flagella and oscillatory propulsion mechanisms to emulate the natural swimming behavior of zoospores. Our experiments and theoretical model reveal that both flagellar length and oscillation frequency strongly influence the robot's propulsion speed, with longer flagella and higher frequencies yielding enhanced performance. Additionally, the anterior flagellum, which generates a pulling force on the body, plays a dominant role in enhancing propulsion efficiency compared to the posterior flagellum's pushing force. This is a significant experimental finding, as it would be challenging to observe directly in biological zoospores, which spontaneously release the posterior flagellum when the anterior flagellum detaches. This work contributes to the development of advanced microscale robotic systems with potential applications in medical, environmental, and industrial fields. It also provides a valuable platform for studying biological zoospores and their unique locomotion strategies.
- Published
- 2024
16. Resilience and Criticality: Brothers in Arms for 6G
- Author
-
Reifert, Robert-Jeron, Karacora, Yasemin, Chaccour, Christina, Sezgin, Aydin, and Saad, Walid
- Subjects
Computer Science - Information Theory - Abstract
In this paper, we develop the first comprehensive tutorial on designing future 6G networks that synergistically integrate notions of resilience and criticality from the ground up. While resilience refers to the ability to absorb, adapt to, and recover from adversarial or challenging conditions, criticality indicates the degree of importance or urgency assigned to a particular service or component. Despite a spiking interest in designing resilient wireless networks, most prior works do not provide a unified resilience definition, nor harness the intricate interplay between resilience and criticality. In order to fill this gap, in this paper, we highlight the importance of a criticality-aware approach as a key enabler for providing reliable and resilient service functionality. Moreover, we delve into the unique challenges and opportunities of the envisioned 6G features pertaining to resilience and (mixed) criticality. After reviewing resilience definitions, we present a core resilience strategy, a unified resilience metric, different criteria for service criticality, and prioritization frameworks, that augment the 6G resilience prospects. Afterwards, we explore the opportunities presented by promising technologies that enable a resilient 6G network design from a radio access network protocol stack perspective. We briefly revisit state-of-the-art network architectures, establish a rough connection to the Open-RAN Alliance vision, and discuss opportunities, existing techniques, and promising enabling mechanisms for 6G at each layer. Finally, the article discusses important research directions and open problems concerning resilience and criticality in 6G., Comment: 23 pages, 7 figures. Submitted to IEEE for possible publication
- Published
- 2024
17. Event-Based Framework for Agile Resilience in Criticality-Aware Wireless Networks
- Author
-
Karacora, Yasemin, Chaccour, Christina, Sezgin, Aydin, and Saad, Walid
- Subjects
Computer Science - Information Theory - Abstract
As mission- and safety-critical wireless applications grow in complexity and diversity, next-generation wireless systems must meet increasingly stringent and multifaceted requirements. These systems demand resilience along with enhanced intelligence and adaptability to ensure reliable communication under diverse conditions. This paper proposes an event-based multi-stage resilience framework, offering a guideline for efficiently integrating a combination of error mitigation techniques. The framework is applied to a case study focusing on uplink transmission of mixed-criticality data in the presence of random link blockages. The proposed scheme combines multiple blockage mitigation strategies - rate-splitting multiple access (RSMA), one-sided access point cooperation, and central decoding - within an event-driven algorithm. Each method, increasing in effectiveness and complexity, is activated sequentially to systematically overcome blockages. We model a mixed-criticality queuing system and formulate two transmit power allocation problems, one for separate decoding and one for central decoding, to ensure queue stability and fairness. Simulations evaluate the delay performance under varying blockage durations and examine the cost tradeoffs among resilience mechanisms within the proposed framework. The results suggest that passive robustness strategies effectively handle frequent short-term fluctuations, while more complex adaptation becomes germane for rare and prolonged blockages. Additionally, the results emphasize the importance of criticality-awareness for resilient communication design., Comment: 13 pages, 8 figures, submitted to IEEE Transactions on Wireless Communications
- Published
- 2024
18. A Systematic Review of Green and Sustainable Chemistry Training Research with Pedagogical Content Knowledge Framework: Current Trends and Future Directions
- Author
-
Sevgi Aydin Gunbatar, Betul Ekiz Kiran, Yezdan Boz, and Elif Selcan Oztay
- Abstract
This study reviewed the green and sustainable chemistry education (GSCE) research that provided training at the tertiary level from 2000 to 2024. The Web of Science and ERIC databases were screened using title and abstract review. In total, 49 studies were analysed. The analysis instrument has two main parts, namely, general characteristics of the training, which was formed in light of the GSCE literature (i.e., chemistry sub-disciplines, type of implementation, and context), and analysis of the training through the lens of pedagogical content knowledge (PCK) construct that is the commonly-used framework for the analysis of training regarding orientation to teaching GSCE, learner, curriculum, assessment, and instructional strategies utilised. Results showed that organic chemistry (n = 15) is the most emphasised branch of chemistry in the articles. Regarding the learner component, the studies were inadequate, and very few studies provided information about the misconceptions and difficulties that students may encounter while learning GSC. Regarding the curriculum component, among the green chemistry principles, 'use of renewable feedstocks' was the most emphasised, while the least emphasised ones were 'reduce derivatives' and 'real-time pollution prevention'. Fourteen studies used subject-specific teaching strategies (e.g., cooperative teaching and project-based strategies). Although representations are not used in GSCE, most of the studies included laboratory studies (n = 31). Finally, regarding the assessment, very few studies focused on measuring students' skills (laboratory skills, discussion skills, etc.) and affective variables. In light of the findings, GSCE training should get more benefit from the literature on science/chemistry teaching strategies. Moreover, alternative assessment tools (e.g., rubrics and concept maps) should be utilized regarding the instruments utilized to assess the participants' GSC knowledge.
- Published
- 2025
- Full Text
- View/download PDF
19. Assessing the Satisfaction with School Life among Turkish Adolescents: Adapting the Academic Life Satisfaction Scale
- Author
-
Hatice Odaci, Feridun Kaya, Özge Kinik, and Fatih Aydin
- Abstract
Objective: The present study was conducted to test the validity and reliability of the Academic Life Satisfaction Scale (ALSS) on adolescents. Design: Two different samples were recruited for data collection. The first sample consisted of a total of 423 high school students, 272 (64.3%) females and 151 (35.7%) males, with a mean age of 15.97 (SD = 1.16). The second sample also comprised 360 high school students, 225 (62.5%) females, and 135 (37.5%) males, with a mean age of 16.44 (SD = 0.76). The Personal Information Form, the Academic Procrastination Scale, and the ALSS -- Adolescent Version (ALSS-AV) were utilised as data collection tools. Results: Confirmatory Factor Analysis (CFA) confirmed that the adolescent version has good structural validity. The factor analyses revealed that the scale had a two-factor structure and an acceptable fit to the data. The multiple-group CFA results regarding gender revealed that the structure of the scale had measurement invariance on both female and male students. Analyses also revealed that the scale had good convergent, discriminant, and criterion validity. Furthermore, the internal consistency and split-half reliability of the scale were found to be adequate. Conclusion: The ALSS-AV has good evidence of validity and reliability in a sample of adolescents. It can be used to assess academic life satisfaction among this group.
- Published
- 2025
- Full Text
- View/download PDF
20. Examining the Impact of Modified P3 Task Taxonomy-Enriched Educational Robotics PD Program on Teachers' STEM Content Knowledge
- Author
-
Salih Cepni, Mirac Aydin, Kubra Ada Yildiz, Salih Birisci, Cem Ozkan, and Cemal Yalabuk
- Abstract
The importance of integrating effective teaching strategies in Professional Development (PD) programs for Educational Robotics (ER)-based Science Technology Engineering and Mathematics (STEM) education is increasingly recognized. However, we need to add to the growing body of studies on comprehensive instructional approaches for teaching robotics to educators within PD STEM environments. This study investigates the effects of the modified P3 task taxonomy enriched ER-based STEM PD course on science, mathematics, and computer science teachers' STEM knowledge. The taxonomy denotes a strategy utilized to teach high school students ER. Twenty in-service teachers participated in the study, attended a 24-hour PD program in which they were taught how to use Arduino robotics kits, were assigned three tasks, and were engaged in creating lesson plans incorporating ER into their regular teaching practices. The one-group pre and post-test experimental design was adopted in the study. The instruments included a science, robotics, and mathematics content knowledge test administered before and after the PD program. Moreover, the variations in mean scores for both the pre-test and post-test, pertaining to knowledge in science, mathematics, and robotics, were demonstrated. Using a paired-sample t-test, we found that the P3 task taxonomy scaffolded PD program had statistically significant impacts with large effect sizes in robotics (2.08), science (1.49), and mathematics (0.92). These results hold important implications, suggesting that the P3 task taxonomy offers a new approach beyond learning by design, the 5E model, and project-based learning for scaffolding PD in ER settings.
- Published
- 2024
- Full Text
- View/download PDF
21. The Impact of Computer-Assisted and Direct Strategy Teaching on Reading Comprehension
- Author
-
Aydin Bulut and Mustafa Yildiz
- Abstract
Background: The use of computer-assisted reading comprehension is of critical importance in the context of promoting effective and engaging literacy education in the digital age. It provides students with the opportunity to work at their own pace and convenience, thereby facilitating self-directed learning and accommodating various learning preferences and schedules. Objectives: The objective of the study was to investigate the impact of computer-assisted and direct strategy teaching on reading comprehension, reading comprehension self-efficacy and reading comprehension metacognitive awareness. An experimental application based on the SQ4R strategy was conducted in the direct strategy teaching (DST) and computer-assisted strategy teaching (CAST) programmes. In the DST group, the implementation of the SQ4R strategy was conducted through direct strategy teaching, whereas in the CAST group, the same activities were carried out with the assistance of computer-based resources. The principal objective of the study was to evaluate the efficacy of computer-assisted strategy instruction. Methods: This study employed a combined sequential descriptive design, integrating qualitative and quantitative research models. The study was conducted with 61 fourth-grade students, enrolled in three classrooms of a public school situated in the central district of Kastamonu, Turkey, which is characterised by a moderate socioeconomic level. The quantitative component of the study was designed as a pre-test--post-test control group experimental study. The qualitative component of the study comprised focus group interviews and observation. Two experimental groups and one control group were established in the course of this study. In the quantitative dimension of the combined sequential descriptive model, the Reading Comprehension Test, Metacognitive Reading Comprehension Scale, and Reading Comprehension Self-Efficacy Scale were employed as data collection instruments. In order to collect data in the qualitative dimension, semi-structured interview and observation forms were employed. Furthermore, the researcher's diaries, maintained throughout the research process, were employed as a data source. The quantitative data were analysed using the following techniques: arithmetic mean, frequency, percentage, standard deviation, ANOVA and covariance analysis (ANCOVA). A descriptive analysis was employed for the evaluation of the qualitative data. Results and Conclusions: Upon examination of the post-test scores of the CAST, DST and control group students in the Reading Comprehension Test, it was observed that the CAST group exhibited the highest average. A statistically significant difference was also identified between the CAST group and the control group. Nevertheless, no statistically significant difference was identified between the DST group and the control group. Nevertheless, an examination of the mean scores reveals that the DST group exhibited considerably higher Reading Comprehension Test scores.
- Published
- 2024
- Full Text
- View/download PDF
22. Promoting Inclusion through Embedded Instruction: Enhancing Preschool Teachers' Implementation of Learning Opportunities for Children with Disabilities
- Author
-
Salih Rakap, Serife Balikci, Burak Aydin, and Sinan Kalkan
- Abstract
Embedded instruction facilitates individualized support and promotes meaningful participation for all children, irrespective of their abilities or disabilities, by integrating learning opportunities into the natural, everyday activities of inclusive preschool settings. This study aimed to investigate the impact of a coaching intervention on the fidelity of preschool teachers' implementation of embedded learning opportunities (ELOs) and child learning outcomes, using a multiple baseline across participants design. Four preschool teachers and four children with disabilities participated in the study. Findings showed that teachers' correct implementation of ELOs increased slightly after the introduction of the workshop training, but criterion level of performance was only achieved after practice-based coaching support. All four teachers sustained high levels of correct implementation during maintenance sessions conducted intermittently after the coaching intervention. As the accuracy of preschool teachers' implementation of ELOs increased, the percentage of children's correct responses regarding target behaviors also increased. The social validity data indicated that preschool teachers found embedded instruction practices and the coaching intervention effective, beneficial, and suitable. Overall, the study provides evidence supporting coaching as an effective professional development strategy for improving the implementation of ELOs and enhancing child learning outcomes in inclusive preschool classrooms. The study underscores the importance of ongoing coaching support to ensure sustained use of ELOs among preschool teachers, thereby facilitating the development and learning of preschool children with developmental disabilities in inclusive settings.
- Published
- 2024
- Full Text
- View/download PDF
23. The Power Card Strategy: Strength-Based Intervention against Bullying for Children with Autism Spectrum Disorder
- Author
-
Hatice Ulu Aydin, Ilknur Cifci Tekinarslan, and Yesim Gulec Aslan
- Abstract
The pattern of behaviors and abilities that reflect the core characteristics of students with autism spectrum disorder (ASD) and an environment that lacks the ability to understand individuals with ASD can make these students targets of bullying. Bullying is a serious problem for students with ASD, and practices against it are important in terms of improving students' coping strategies and overall well-being. In this study, we used a multiple probe model with an interprobe phase across participants to evaluate the effectiveness of the power card strategy to teach three students with ASD to respond to bullying. At baseline, the students gave few appropriate responses based on coping strategies for bullying after listening to stories about bullying. During the application of the power cards, the students read scenarios and power cards created for their favorite heroes or special interests, which included coping strategies for three different bullying situations (exclusion, being pushed, and being tickled). Then, they watched animations prepared for these bullying situations and were asked to answer questions about strategies to deal with bullying. The findings showed that all three students learned targeted strategies for coping with bullying in the context of the sessions using power cards. The students were able to generalize to different bullying situations (teasing, damaging one's belongings, being ignored) while retaining their strategies for coping with bullying in the context of the sessions held after the teaching was completed. The social validity findings of the power card strategy showed that one out of three students exhibited coping strategies for bullying in the school environment. The findings of the present study are discussed in the context of bullying and ASD, limitations, and recommendations.
- Published
- 2024
- Full Text
- View/download PDF
24. Mineral Scaling in 3D Interfacial Solar Evaporators─A Challenge for Brine Treatment and Lithium Recovery.
- Author
-
Eskafi, Aydin, De Finnda, Casey, Garcia, Christopher, and Mi, Baoxia
- Subjects
3D evaporator ,Interfacial solar evaporation ,divalent cation scaling ,graphene oxide ,lithium recovery ,solar desalination ,solar resource recovery ,Lithium ,Minerals ,Salts ,Sunlight - Abstract
In this work, we analyzed the effects of mineral scaling on the performance of a 3D interfacial solar evaporator, with a focus on the cations relevant to lithium recovery from brackish water. The field has been rapidly moving toward resource recovery applications from brines with higher cation concentrations. However, the potential complications caused by common minerals in these brines other than NaCl have been largely overlooked. Therefore, in this study, we thoroughly examined the effects of two common cations (calcium and magnesium) on the long-term solar evaporation performance of a 3D graphene oxide stalk. The 3D stalk can achieve an evaporation flux as high as 17.8 kg m-2 h-1 under one-sun illumination, and accumulation of NaCl on the stalk surface has no impact. However, the presence of CaCl2 and MgCl2 significantly reduces the evaporative flux even in solutions lacking scale-forming anions. A close examination of scale formation during long-term evaporation experiments revealed that CaCl2 and MgCl2 tend to precipitate out within the stalk, thus blocking water transport through the stalk and significantly dropping the evaporation rates. These findings imply that research attention is needed to modify and optimize the internal water transport channels for 3D evaporators. Additionally, we emphasize the importance of testing realistic mixtures─including prominent divalent cations─ and testing long-term operations in interfacial solar evaporation research and investigating approaches to mitigate the negative impacts of divalent cations.
- Published
- 2025
25. Heterozygous BTNL8 variants in individuals with multisystem inflammatory syndrome in children (MIS-C).
- Author
-
Bellos, Evangelos, Santillo, Dilys, Vantourout, Pierre, Jackson, Heather, Duret, Amedine, Hearn, Henry, Seeleuthner, Yoann, Talouarn, Estelle, Hodeib, Stephanie, Patel, Harsita, Powell, Oliver, Yeoh, Sophya, Mustafa, Sobia, Habgood-Coote, Dominic, Nichols, Samuel, Estramiana Elorrieta, Leire, DSouza, Giselle, Wright, Victoria, Estrada-Rivadeneyra, Diego, Tremoulet, Adriana, Dummer, Kirsten, Netea, Stejara, Condino-Neto, Antonio, Lau, Yu, Núñez Cuadros, Esmeralda, Toubiana, Julie, Holanda Pena, Marisol, Rieux-Laucat, Frédéric, Luyt, Charles-Edouard, Haerynck, Filomeen, Mège, Jean, Chakravorty, Samya, Haddad, Elie, Morin, Marie-Paule, Metin Akcan, Özge, Keles, Sevgi, Emiroglu, Melike, Alkan, Gulsum, Tüter Öz, Sadiye, Elmas Bozdemir, Sefika, Morelle, Guillaume, Volokha, Alla, Kendir-Demirkol, Yasemin, Sözeri, Betul, Coskuner, Taner, Yahsi, Aysun, Gulhan, Belgin, Kanik-Yuksek, Saliha, Bayhan, Gulsum, Ozkaya-Parlakay, Aslinur, Yesilbas, Osman, Hatipoglu, Nevin, Ozcelik, Tayfun, Belot, Alexandre, Chopin, Emilie, Barlogis, Vincent, Sevketoglu, Esra, Menentoglu, Emin, Gayretli Aydin, Zeynep, Bloomfield, Marketa, AlKhater, Suzan, Cyrus, Cyril, Stepanovskiy, Yuriy, Bondarenko, Anastasiia, Öz, Fatma, Polat, Meltem, Fremuth, Jiří, Lebl, Jan, Geraldo, Amyrath, Jouanguy, Emmanuelle, Carter, Michael, Wellman, Paul, Peters, Mark, Pérez de Diego, Rebeca, Edwards, Lindsey, Chiu, Christopher, Noursadeghi, Mahdad, Bolze, Alexandre, Shimizu, Chisato, Kaforou, Myrsini, Hamilton, Melissa, Herberg, Jethro, Schmitt, Erica, Rodriguez-Palmero, Agusti, Pujol, Aurora, Kim, Jihoon, Cobat, Aurélie, Abel, Laurent, Zhang, Shen-Ying, Casanova, Jean-Laurent, Kuijpers, Taco, Burns, Jane, Levin, Michael, Hayday, Adrian, and Sancho-Shimizu, Vanessa
- Subjects
Humans ,COVID-19 ,Child ,Systemic Inflammatory Response Syndrome ,Male ,Female ,Butyrophilins ,SARS-CoV-2 ,Child ,Preschool ,Heterozygote ,Adolescent ,Genetic Predisposition to Disease ,Infant - Abstract
Multisystem inflammatory syndrome in children (MIS-C) is a rare condition following SARS-CoV-2 infection associated with intestinal manifestations. Genetic predisposition, including inborn errors of the OAS-RNAseL pathway, has been reported. We sequenced 154 MIS-C patients and utilized a novel statistical framework of gene burden analysis, burdenMC, which identified an enrichment for rare predicted-deleterious variants in BTNL8 (OR = 4.2, 95% CI: 3.5-5.3, P < 10-6). BTNL8 encodes an intestinal epithelial regulator of Vγ4+γδ T cells implicated in regulating gut homeostasis. Enrichment was exclusive to MIS-C, being absent in patients with COVID-19 or bacterial disease. Using an available functional test for BTNL8, rare variants from a larger cohort of MIS-C patients (n = 835) were tested which identified eight variants in 18 patients (2.2%) with impaired engagement of Vγ4+γδ T cells. Most of these variants were in the B30.2 domain of BTNL8 implicated in sensing epithelial cell status. These findings were associated with altered intestinal permeability, suggesting a possible link between disrupted gut homeostasis and MIS-C-associated enteropathy triggered by SARS-CoV-2.
- Published
- 2024
26. Polaron formation within quantum acoustics
- Author
-
Aydin, Alhun, Keski-Rahkonen, Joonas, Graf, Anton M., Yuan, Shaobing, Ouyang, Xiao-Yu, Müstecaplıoğlu, Özgür E., and Heller, Eric J.
- Subjects
Condensed Matter - Mesoscale and Nanoscale Physics ,Condensed Matter - Strongly Correlated Electrons - Abstract
The quantum acoustic framework has recently emerged as a non-perturbative, coherent approach to electron-lattice interactions, uncovering rich physics often obscured by perturbative methods with incoherent scattering events. Here, we model the coupled dynamics of electrons and acoustic lattice vibrations within this framework, representing lattice vibrations as coherent states and electrons as quantum wavepackets. We derive and numerically implement electron backaction on the lattice, providing both visual and quantitative insights into electron wavepacket evolution, self-trapping, and the formation of small acoustic polarons. We investigate polaron binding energies across varying material parameters and compute key observables-including mean square displacement, kinetic energy, potential energy, and vibrational energy-over time. Our findings reveal the conditions that favor polaron formation, which is enhanced by low temperatures, high deformation potential constants, slow sound velocities, high effective masses, and small Fermi surfaces. Additionally, we explore the impact of external electric and magnetic fields, showing that while polaron formation remains robust under moderate fields, it is weakly suppressed at higher field strengths. These results deepen our understanding of polaron dynamics and pave the way for future studies into non-trivial transport behavior in quantum materials., Comment: 11 pages, 5 figures
- Published
- 2024
27. Large Scale Evaluation of Deep Learning-based Explainable Solar Flare Forecasting Models with Attribution-based Proximity Analysis
- Author
-
Adeyeha, Temitope, Pandey, Chetraj, and Aydin, Berkay
- Subjects
Computer Science - Machine Learning ,Astrophysics - Solar and Stellar Astrophysics ,Computer Science - Computer Vision and Pattern Recognition ,Statistics - Machine Learning - Abstract
Accurate and reliable predictions of solar flares are essential due to their potentially significant impact on Earth and space-based infrastructure. Although deep learning models have shown notable predictive capabilities in this domain, current evaluations often focus on accuracy while neglecting interpretability and reliability--factors that are especially critical in operational settings. To address this gap, we propose a novel proximity-based framework for analyzing post hoc explanations to assess the interpretability of deep learning models for solar flare prediction. Our study compares two models trained on full-disk line-of-sight (LoS) magnetogram images to predict $\geq$M-class solar flares within a 24-hour window. We employ the Guided Gradient-weighted Class Activation Mapping (Guided Grad-CAM) method to generate attribution maps from these models, which we then analyze to gain insights into their decision-making processes. To support the evaluation of explanations in operational systems, we introduce a proximity-based metric that quantitatively assesses the accuracy and relevance of local explanations when regions of interest are known. Our findings indicate that the models' predictions align with active region characteristics to varying degrees, offering valuable insights into their behavior. This framework enhances the evaluation of model interpretability in solar flare forecasting and supports the development of more transparent and reliable operational systems., Comment: This is a preprint accepted at IEEE International Conference on Big Data 2024( IEEE BigData 2024) Conference
- Published
- 2024
28. Planckian Diffusion: The Ghost of Anderson Localization
- Author
-
Zhang, Yubo, Graf, Anton M., Aydin, Alhun, Keski-Rahkonen, Joonas, and Heller, Eric J.
- Subjects
Quantum Physics ,Condensed Matter - Disordered Systems and Neural Networks - Abstract
We find that Anderson localization ceases to exist when a random medium begins to move, but another type of fundamental quantum effect, Planckian diffusion $D = \alpha\hbar/m$, rises to replace it, with $\alpha $ of order of unity. Planckian diffusion supercedes the Planckian speed limit $\tau= \alpha \hbar/k_B T,$ as it not only implies this relation in thermal systems but also applies more generally without requiring thermal equilibrium. Here we model a dynamic disordered system with thousands of itinerant impurities, having random initial positions and velocities. By incrementally increasing their speed from zero, we observe a transition from Anderson localization to Planckian diffusion, with $\alpha$ falling within the range of $0.5$ to $2$. Furthermore, we relate the breakdown of Anderson localization to three additional, distinctly different confirming cases that also exhibit Planckian diffusion $D\sim \hbar/m$, including one experiment on solid hydrogen. Our finding suggests that Planckian diffusion in dynamic disordered systems is as universal as Anderson localization in static disordered systems, which may shed light on quantum transport studies.
- Published
- 2024
29. Active partitioning: inverting the paradigm of active learning
- Author
-
Tacke, Marius, Busch, Matthias, Linka, Kevin, Cyron, Christian J., and Aydin, Roland C.
- Subjects
Computer Science - Machine Learning - Abstract
Datasets often incorporate various functional patterns related to different aspects or regimes, which are typically not equally present throughout the dataset. We propose a novel, general-purpose partitioning algorithm that utilizes competition between models to detect and separate these functional patterns. This competition is induced by multiple models iteratively submitting their predictions for the dataset, with the best prediction for each data point being rewarded with training on that data point. This reward mechanism amplifies each model's strengths and encourages specialization in different patterns. The specializations can then be translated into a partitioning scheme. The amplification of each model's strengths inverts the active learning paradigm: while active learning typically focuses the training of models on their weaknesses to minimize the number of required training data points, our concept reinforces the strengths of each model, thus specializing them. We validate our concept -- called active partitioning -- with various datasets with clearly distinct functional patterns, such as mechanical stress and strain data in a porous structure. The active partitioning algorithm produces valuable insights into the datasets' structure, which can serve various further applications. As a demonstration of one exemplary usage, we set up modular models consisting of multiple expert models, each learning a single partition, and compare their performance on more than twenty popular regression problems with single models learning all partitions simultaneously. Our results show significant improvements, with up to 54% loss reduction, confirming our partitioning algorithm's utility.
- Published
- 2024
30. Covertness in the Near Field: Maximizing the Covert Region with FDA
- Author
-
Lotfi, Fatemeh, Roth, Stefan, Chaaban, Anas, and Sezgin, Aydin
- Subjects
Electrical Engineering and Systems Science - Signal Processing - Abstract
Covert communication in wireless networks ensures that transmissions remain undetectable to adversaries, making it a potential enabler for privacy and security in sensitive applications. However, to meet the high performance and connectivity demands of sixth-generation (6G) networks, future wireless systems will require larger antenna arrays, higher operating frequencies, and advanced antenna architectures. This shift changes the propagation model from far-field planar-wave to near-field spherical-wave which necessitates a redesign of existing covert communication systems. Unlike far-field beamforming, which relies only on direction, near-field beamforming depends on both distance and direction, providing additional degrees of freedom for system design. In this paper, we aim to utilize those freedoms by proposing near-field Frequency Diverse Array (FDA)-based transmission strategies that manipulate the beampattern in both distance and angle, thereby establishing a non-covert region around the legitimate user. Our approach takes advantage of near-field properties and FDA technology to significantly reduce the area vulnerable to detection by adversaries while maintaining covert communication with the legitimate receiver. Numerical simulations show that our methods outperform conventional phased arrays by shrinking the non-covert region and allowing the covert region to expand as the number of antennas increases.
- Published
- 2024
31. Interface for Sparse Linear Algebra Operations
- Author
-
Abdelfattah, Ahmad, Ahrens, Willow, Anzt, Hartwig, Armstrong, Chris, Brock, Ben, Buluc, Aydin, Busato, Federico, Cojean, Terry, Davis, Tim, Demmel, Jim, Dinh, Grace, Gardener, David, Fiala, Jan, Gates, Mark, Haider, Azzam, Imamura, Toshiyuki, Lara, Pedro Valero, Moreira, Jose, Li, Sherry, Luszczek, Piotr, Melichenko, Max, Moeira, Jose, Mokwinski, Yvan, Murray, Riley, Patty, Spencer, Peles, Slaven, Ribizel, Tobias, Riedy, Jason, Rajamanickam, Siva, Sao, Piyush, Shantharam, Manu, Teranishi, Keita, Tomov, Stan, Tsai, Yu-Hsiang, and Weichelt, Heiko
- Subjects
Computer Science - Mathematical Software - Abstract
The standardization of an interface for dense linear algebra operations in the BLAS standard has enabled interoperability between different linear algebra libraries, thereby boosting the success of scientific computing, in particular in scientific HPC. Despite numerous efforts in the past, the community has not yet agreed on a standardization for sparse linear algebra operations due to numerous reasons. One is the fact that sparse linear algebra objects allow for many different storage formats, and different hardware may favor different storage formats. This makes the definition of a FORTRAN-style all-circumventing interface extremely challenging. Another reason is that opposed to dense linear algebra functionality, in sparse linear algebra, the size of the sparse data structure for the operation result is not always known prior to the information. Furthermore, as opposed to the standardization effort for dense linear algebra, we are late in the technology readiness cycle, and many production-ready software libraries using sparse linear algebra routines have implemented and committed to their own sparse BLAS interface. At the same time, there exists a demand for standardization that would improve interoperability, and sustainability, and allow for easier integration of building blocks. In an inclusive, cross-institutional effort involving numerous academic institutions, US National Labs, and industry, we spent two years designing a hardware-portable interface for basic sparse linear algebra functionality that serves the user needs and is compatible with the different interfaces currently used by different vendors. In this paper, we present a C++ API for sparse linear algebra functionality, discuss the design choices, and detail how software developers preserve a lot of freedom in terms of how to implement functionality behind this API., Comment: 43 pages
- Published
- 2024
32. Uncertainty Propagation and Minimization for Channel Estimation in UAV-mounted RIS Systems
- Author
-
Weinberger, Kevin, Müller, David, Mönnigmann, Martin, and Sezgin, Aydin
- Subjects
Electrical Engineering and Systems Science - Systems and Control - Abstract
Reconfigurable Intelligent Surfaces (RIS) are emerging as a key technology for sixth-generation (6G) wireless networks, leveraging adjustable reflecting elements to dynamically control electromagnetic wave propagation and optimize wireless connectivity. By positioning the RIS on an unmanned aerial vehicle (UAV), it can maintain line-of-sight and proximity to both the transmitter and receiver, critical factors that mitigate path loss and enhance signal strength. The lightweight, power-efficient nature of RIS makes UAV integration feasible, yet the setup faces significant disturbances from UAV motion, which can degrade RIS alignment and link performance. In this study, we address these challenges using both experimental measurements and analytical methods. Using an extended Kalman filter (EKF), we estimate the UAV's orientation in real time during experimental flights to capture real disturbance effects. The resulting orientation uncertainty is then propagated to the RIS's channel estimates by applying the Guide to the Expression of Uncertainty in Measurement (GUM) framework as well as complex-valued propagation techniques to accurately assess and minimize the impact of UAV orientation uncertainties on RIS performance. This method enables us to systematically trace and quantify how orientation uncertainties affect channel gain and phase stability in real-time. Through numerical simulations, we find that the uncertainty of the RIS channel link is influenced by the RIS's configuration. Furthermore, our results demonstrate that the uncertainty area is most accurately represented by an annular section, enabling a 58% reduction in the uncertainty area while maintaining a 95% coverage probability., Comment: 6 pages, 3 figures, submitted to IEEE International Conference on Communications 2025
- Published
- 2024
33. ITACLIP: Boosting Training-Free Semantic Segmentation with Image, Text, and Architectural Enhancements
- Author
-
Aydın, M. Arda, Çırpar, Efe Mert, Abdinli, Elvin, Unal, Gozde, and Sahin, Yusuf H.
- Subjects
Computer Science - Computer Vision and Pattern Recognition - Abstract
Recent advances in foundational Vision Language Models (VLMs) have reshaped the evaluation paradigm in computer vision tasks. These foundational models, especially CLIP, have accelerated research in open-vocabulary computer vision tasks, including Open-Vocabulary Semantic Segmentation (OVSS). Although the initial results are promising, the dense prediction capabilities of VLMs still require further improvement. In this study, we enhance the semantic segmentation performance of CLIP by introducing new modules and modifications: 1) architectural changes in the last layer of ViT and the incorporation of attention maps from the middle layers with the last layer, 2) Image Engineering: applying data augmentations to enrich input image representations, and 3) using Large Language Models (LLMs) to generate definitions and synonyms for each class name to leverage CLIP's open-vocabulary capabilities. Our training-free method, ITACLIP, outperforms current state-of-the-art approaches on segmentation benchmarks such as COCO-Stuff, COCO-Object, Pascal Context, and Pascal VOC. Our code is available at https://github.com/m-arda-aydn/ITACLIP.
- Published
- 2024
34. Robust Communication Design in RIS-Assisted THz Channels
- Author
-
Karacora, Yasemin, Umra, Adam, and Sezgin, Aydin
- Subjects
Computer Science - Information Theory ,Electrical Engineering and Systems Science - Signal Processing - Abstract
Terahertz (THz) communication offers the necessary bandwidth to meet the high data rate demands of next-generation wireless systems. However, it faces significant challenges, including severe path loss, dynamic blockages, and beam misalignment, which jeopardize communication reliability. Given that many 6G use cases require both high data rates and strong reliability, robust transmission schemes that achieve high throughput under these challenging conditions are essential for the effective use of high-frequency bands. In this context, we propose a novel mixed-criticality superposition coding scheme for reconfigurable intelligent surface (RIS)-assisted THz systems. This scheme leverages both the strong but intermittent direct line-of-sight link and the more reliable, yet weaker, RIS path to ensure robust delivery of high-criticality data while maintaining high overall throughput. We model a mixed-criticality queuing system and optimize transmit power to meet reliability and queue stability constraints. Simulation results show that our approach significantly reduces queuing delays for critical data while sustaining high overall throughput, outperforming conventional time-sharing methods. Additionally, we examine the impact of blockage, beam misalignment, and beamwidth adaptation on system performance. These results demonstrate that our scheme effectively balances reliability and throughput under challenging conditions, while also underscoring the need for robust beamforming techniques to mitigate the impact of misalignment in RIS-assisted channels., Comment: 12 pages, 10 figures. Invited paper, submitted to the IEEE Open Journal of the Communication Society (OJ-COMS)
- Published
- 2024
35. Double Media-Based Modulation Scheme for High-Rate Wireless Communication Systems
- Author
-
Ozden, Burak Ahmet, Aydin, Erdogan, and Cogen, Fatih
- Subjects
Electrical Engineering and Systems Science - Signal Processing - Abstract
Current wireless communication technologies are insufficient in the face of ever-increasing demands. Therefore, novel and high-performance communication systems are needed. In this paper, a novel high data rate and high-performance index modulation scheme called double media-based modulation (DMBM) is proposed. The DMBM system doubles the number of mirror activation patterns (MAPs) and the number of transmitted symbols compared to the traditional MBM system during the same symbol period. In this way, the spectral efficiency of the DMBM is doubled and the error performance improves as the number of bits carried in the indices increases. Performance analysis of the DMBM scheme is evaluated for $M$-ary quadrature amplitude modulation ($M$-QAM) on Rayleigh fading channels. The error performance of the proposed DMBM system is compared with spatial modulation (SM), quadrature SM (QSM), MBM, and double SM (DSM) techniques. Also, the throughput, complexity, energy efficiency, spectral efficiency, and capacity analyses for the proposed DMBM system and SM, QSM, MBM, and DSM systems are presented. All analysis results show that the proposed DMBM system is superior to the compared systems., Comment: 7 pages, 7 figures, 2 tables
- Published
- 2024
36. Leveraging Conversational Generative AI for Anomaly Detection in Digital Substations
- Author
-
Zaboli, Aydin, Choi, Seong Lok, and Hong, Junho
- Subjects
Electrical Engineering and Systems Science - Signal Processing ,Computer Science - Machine Learning ,Electrical Engineering and Systems Science - Systems and Control - Abstract
This study addresses critical challenges of cybersecurity in digital substations by proposing an innovative task-oriented dialogue (ToD) system for anomaly detection (AD) in multicast messages, specifically, generic object oriented substation event (GOOSE) and sampled value (SV) datasets. Leveraging generative artificial intelligence (GenAI) technology, the proposed framework demonstrates superior error reduction, scalability, and adaptability compared with traditional human-in-the-loop (HITL) processes. Notably, this methodology offers significant advantages over machine learning (ML) techniques in terms of efficiency and implementation speed when confronting novel and/or unknown cyber threats, while also maintaining model complexity and precision. The research employs advanced performance metrics to conduct a comparative assessment between the proposed AD and HITL-based AD frameworks, utilizing a hardware-in-the-loop (HIL) testbed for generating and extracting features of IEC61850 communication messages. This approach presents a promising solution for enhancing the reliability of power system operations in the face of evolving cybersecurity challenges., Comment: 5 pages, 4 figures, Submitted to 2025 IEEE Power and Energy Society General Meeting (PESGM 2025), Austin, TX
- Published
- 2024
37. Studying network of symmetric periodic orbit families of the Hill problem via symplectic invariants
- Author
-
Aydin, Cengiz and Batkhin, Alexander
- Subjects
Mathematics - Dynamical Systems ,Mathematics - Symplectic Geometry ,70G45, 70F07, 70H12 - Abstract
In the framework of the spatial circular Hill three-body problem we illustrate the application of symplectic invariants to analyze the network structure of symmetric periodic orbit families. The extensive collection of families within this problem constitutes a complex network, fundamentally comprising the so-called basic families of periodic solutions, including the orbits of the satellite $g$, $f$, the libration (Lyapunov) $a,c$, and collision $\mathcal B_0$ families. Since the Conley-Zehnder index leads to a grading on the local Floer homology and its Euler characteristics, a bifurcation invariant, the computation of those indices facilitates the construction of well-organized bifurcation graphs depicting the interconnectedness among families of periodic solutions. The critical importance of the symmetries of periodic solutions in comprehending the interaction among these families is demonstrated., Comment: 57 pages, 26 figures, 17 tables of data
- Published
- 2024
38. Wireless Localization with Space-Time Coded Reconfigurable Intelligent Surfaces
- Author
-
Gholami, Mehdi, Khajavi, Soheil, Neshat, Mohammad, Tewes, Simon, and Sezgin, Aydin
- Subjects
Electrical Engineering and Systems Science - Systems and Control - Abstract
In this paper, a novel approach for wireless localization is proposed and experimentally validated that leverages space-time coded reconfigurable intelligent surfaces (RIS). It is demonstrated that applying proper single-bit codes to each RIS element, enables accurate determination of the direction of arrival (AOA) at the receiver. Moreover, we introduce different scenarios that such technique can be used for localization. By incorporating RIS, a passive component, the method significantly reduces the complexity found in previous localization techniques. Additionally, the use of 1-bit codes minimizes hardware requirements, offering a reliable, low-cost solution for localization in advanced telecommunications networks.
- Published
- 2024
39. Realization of Reconfigurable Intelligent Surfaces with Space-Time Coded Metasurfaces
- Author
-
Gholami, Mehdi, Khajavi, Soheil, Neshat, Mohammad, Tewes, Simon, and Sezgin, Aydin
- Subjects
Electrical Engineering and Systems Science - Signal Processing - Abstract
This paper presents experimental realization of a reconfigurable intelligent surface (RIS) using space-time coding metasurfaces to enable concurrent beam steering and data modulation. The proposed approach harnesses the capabilities of metasurfaces, allowing precise temporal control over individual unit cells of the RIS. We show that by employing proper binary codes manipulating the state of unit cells, the RIS can act as a digital data modulator with beam steering capability. We describe the experimental setup and computational tools, followed by validation through harmonic generation and investigation of beam steering and data modulation. Additionally, four digital modulation schemes are evaluated. By implementing customized binary codes, constellations under varying conditions are compared, showcasing the potential for real-world applications. This study offers new insights into the practical implementation of RIS for advanced wireless communication systems.
- Published
- 2024
40. Almost Sure Convergence of Networked Policy Gradient over Time-Varying Networks in Markov Potential Games
- Author
-
Aydin, Sarper and Eksin, Ceyhun
- Subjects
Electrical Engineering and Systems Science - Systems and Control ,Mathematics - Optimization and Control - Abstract
We propose networked policy gradient play for solving Markov potential games including continuous action and state spaces. In the decentralized algorithm, agents sample their actions from parametrized and differentiable policies that depend on the current state and other agents' policy parameters. During training, agents estimate their gradient information through two consecutive episodes, generating unbiased estimators of reward and policy score functions. Using this information, agents compute the stochastic gradients of their policy functions and update their parameters accordingly. Additionally, they update their estimates of other agents' policy parameters based on the local estimates received through a time-varying communication network. In Markov potential games, there exists a potential value function among agents with gradients corresponding to the gradients of local value functions. Using this structure, we prove the almost sure convergence of joint policy parameters to stationary points of the potential value function. We also show that the convergence rate of the networked policy gradient algorithm is $\mathcal{O}(1/\epsilon^2)$. Numerical experiments on a dynamic multi-agent newsvendor problem verify the convergence of local beliefs and gradients. It further shows that networked policy gradient play converges as fast as independent policy gradient updates, while collecting higher rewards., Comment: 22 pages, journal version
- Published
- 2024
41. Interchangeable Token Embeddings for Extendable Vocabulary and Alpha-Equivalence
- Author
-
Işık, İlker, Cinbis, Ramazan Gokberk, and Gol, Ebru Aydin
- Subjects
Computer Science - Computation and Language ,Computer Science - Machine Learning ,Computer Science - Logic in Computer Science - Abstract
We propose a novel approach for learning interchangeable tokens in language models to obtain an extendable vocabulary that can generalize to new tokens. Our method addresses alpha-equivalence, the principle that renaming bound variables preserves semantics. This property arises in many formal languages such as temporal logics, where all proposition symbols represent the same concept but remain distinct. To handle such tokens, we develop a dual-part embedding approach. The first part is shared across all interchangeable tokens, enforcing that they represent the same core concept. The second part is randomly generated for each token, enabling distinguishability. As a baseline, we consider a simpler approach that uses alpha-renaming for data augmentation. We also present alpha-covariance, a metric for measuring robustness against alpha-conversions. When evaluated in a Transformer encoder-decoder model for solving linear temporal logic formulae and copying with extendable vocabulary, our method demonstrates promising generalization capabilities as well as a favorable inductive bias for alpha-equivalence., Comment: 17 pages, 5 figures; new baseline & experiments
- Published
- 2024
42. A Physics-Based Context-Aware Approach for Anomaly Detection in Teleoperated Driving Operations Under False Data Injection Attacks
- Author
-
Ghosh, Subhadip, Zaboli, Aydin, Hong, Junho, and Kwon, Jaerock
- Subjects
Electrical Engineering and Systems Science - Systems and Control - Abstract
Teleoperated driving (ToD) systems are a special type of cyber-physical system (CPS) where the operator remotely controls the steering, acceleration, and braking actions of the vehicle. Malicious actors may inject false data into communication channels to manipulate the teleoperator's driving commands to cause harm. Hence, protection of this communication is necessary for a safe operation of the target vehicle. However, according to the National Institute of Standards and Technology (NIST) cybersecurity framework, protection is not enough, and detecting an attack is necessary. Moreover, UN R155 mandates that vehicle fleets detect and log security incidents. Thus, the cyber-physical threats of ToD are modeled using the attack-centric approach in this paper. Then, an attack model with false data injection (FDI) on the steering control command is created from real vehicle data. A risk of this attack model is assessed for a last-mile delivery (LMD) application. Finally, a physics-based context-aware anomaly detection system (PCADS) is proposed to detect such false injection attacks, and preliminary experimental results are presented to validate the model., Comment: 27 pages, 14 figures, Submitted to IET Intelligent Transport Systems
- Published
- 2024
43. Elementary Constructions of Best Known Quantum Codes
- Author
-
Aydin, Nuh, Nguyen, Trang T. T., and Tran, Long B.
- Subjects
Computer Science - Information Theory ,Mathematics - Quantum Algebra - Abstract
Recently, many good quantum codes over various finite fields $F_q$ have been constructed from codes over extension rings or mixed alphabet rings via some version of a Gray map. We show that most of these codes can be obtained more directly from cyclic codes or their generalizations over $F_q$. Unless explicit benefits are demonstrated for the indirect approach, we believe that direct and more elementary methods should be preferred.
- Published
- 2024
44. A Structural Analysis of the User Behavior Dynamics for Environmentally Sustainable ICT
- Author
-
Roth, Stefan and Sezgin, Aydin
- Subjects
Computer Science - Information Theory ,Electrical Engineering and Systems Science - Signal Processing ,Electrical Engineering and Systems Science - Systems and Control - Abstract
The sector of information and communication technology (ICT) can contribute to the fulfillment of the Paris agreement and the sustainable development goals (SDGs) through the introduction of sustainability strategies. For environmental sustainability, such strategies should contain efficiency, sufficiency, and consistency measures. To propose such, a structural analysis of ICT is undertaken in this manuscript. Thereby, key mechanisms and dynamics behind the usage of ICT and the corresponding energy and resource use are analyzed by describing ICT as a complex system. The system contains data centers, communication networks, smartphone hardware, apps, and the behavior of the users as sub-systems, between which various Morinian interactions are present. Energy and non-energy resources can be seen as inputs of the system, while e-waste is an output. Based on the system description, we propose multiple measures for efficiency, sufficiency and consistency to reduce greenhouse gas emissions and other environmental impacts.
- Published
- 2024
45. Copula based joint regression models for correlated data: an analysis in the bivariate case
- Author
-
Sareff-Hibbert, Aydin and Heller, Gillian Z.
- Subjects
Statistics - Methodology ,Statistics - Applications - Abstract
Regression analysis of non-normal correlated data is commonly performed using generalized linear mixed models (GLMM) and generalized estimating equations (GEE). The recent development of generalized joint regression models (GJRM) presents an alternative to these approaches by using copulas to flexibly model response variables and their dependence structures. This paper provides a simulation study that compares the GJRM with alternative methods. We focus on the case of the marginal distributions having the same form, for example, in models for longitudinal data. We find that for the normal model with identity link, all models provide accurate estimates of the parameters of interest. However, for non-normal models and when a non-identity link function is used, GLMMs in general provide biased estimates of marginal model parameters with inaccurately low standard errors. GLMM bias is more pronounced when the marginal distributions are more skewed or highly correlated. However, in the case that a GLMM parameter is estimated independently of the random effect term, we show it is possible to extract accurate parameter estimates, shown for a longitudinal time parameter with a logarithmic link model. In contrast, we find that GJRM and GEE provide unbiased estimates for all parameters with accurate standard errors when using a logarithmic link. In addition, we show that GJRM provides a model fit comparable to GLMM. In a real-world study of doctor visits, we further demonstrate that the GJRM provides better model fits than a comparable GEE or GLM, due to its greater flexibility in choice of marginal distribution and copula fit to dependence structures. We conclude that the GJRM provides a superior approach to current popular models for analysis of non-normal correlated data.
- Published
- 2024
46. Assessing Privacy Policies with AI: Ethical, Legal, and Technical Challenges
- Author
-
Aydin, Irem, Diebel-Fischer, Hermann, Freiberger, Vincent, Möller-Klapperich, Julia, Buchmann, Erik, Färber, Michael, Lauber-Rönsberg, Anne, and Platow, Birte
- Subjects
Computer Science - Computers and Society - Abstract
The growing use of Machine Learning and Artificial Intelligence (AI), particularly Large Language Models (LLMs) like OpenAI's GPT series, leads to disruptive changes across organizations. At the same time, there is a growing concern about how organizations handle personal data. Thus, privacy policies are essential for transparency in data processing practices, enabling users to assess privacy risks. However, these policies are often long and complex. This might lead to user confusion and consent fatigue, where users accept data practices against their interests, and abusive or unfair practices might go unnoticed. LLMss can be used to assess privacy policies for users automatically. In this interdisciplinary work, we explore the challenges of this approach in three pillars, namely technical feasibility, ethical implications, and legal compatibility of using LLMs to assess privacy policies. Our findings aim to identify potential for future research, and to foster a discussion on the use of LLM technologies for enabling users to fulfil their important role as decision-makers in a constantly developing AI-driven digital economy., Comment: Published at AISyS 2024
- Published
- 2024
47. Optimizing Energy Efficiency with RSMA: Balancing Low and High QoS Requirements
- Author
-
Sivadevuni, Srivardhan, Weinberger, Kevin, and Sezgin, Aydin
- Subjects
Electrical Engineering and Systems Science - Signal Processing - Abstract
Future wireless systems are expected to deliver significantly higher quality-of-service (QoS) albeit with fewer energy resources for diverse, already existing and also novel wireless applications. The optimal resource allocation for a system in this regard could be investigated by reducing the overall power available at the expense of reduced QoS for the inefficient users. In other words, we maximize the system energy efficiency by achieving power saving through a minimal back-off in terms of QoS. In this paper, we investigate the energy efficiency vs. delivered QoS trade-off for the rate-splitting multiple access (RSMA) assisted downlink system. We first determine the user grouping with a normalised channel similarity metric so as to allow a large number of users with non-zero achievable private message rates. Through the private message removal (PMR) of these users, we aim to investigate the QoS vs. energy efficiency trade-off. Numerical results indicate a peak of ~$10\%$ increase in the network energy efficiency for the proposed normalised channel similarity metric based user grouping with scheduled PMR., Comment: 5 pages, 4 figures, IEEE SPAWC 2024 Conference version
- Published
- 2024
48. Class of codes correcting absorptions and emissions
- Author
-
Aydin, Arda and Barg, Alexander
- Subjects
Quantum Physics ,Computer Science - Information Theory - Abstract
We construct a general family of quantum codes that protect against all emission, absorption, dephasing, and raising/lowering errors up to an arbitrary fixed order. Such codes are known in the literature as absorption-emission (AE) codes. We derive simplified error correction conditions for a general AE code and show that any permutation-invariant code that corrects $\le t$ errors can be mapped to an AE code that corrects up to order-$t$ transitions. Carefully tuning the parameters of permutationally invariant codes, we construct several examples of efficient AE codes, hosted in systems with low total angular momentum. Our results also imply that spin codes can be mapped to AE codes, enabling us to characterize logical operators for certain subclasses of such codes.
- Published
- 2024
49. On Neural-Network Representation of Wireless Self-Interference for Inband Full-Duplex Communications
- Author
-
Enzner, Gerald, Chinaev, Aleksej, Voit, Svantje, and Sezgin, Aydin
- Subjects
Electrical Engineering and Systems Science - Signal Processing - Abstract
Neural network modeling is a key technology of science and research and a platform for deployment of algorithms to systems. In wireless communications, system modeling plays a pivotal role for interference cancellation with specifically high requirements of accuracy regarding the elimination of self-interference in full-duplex relays. This paper hence investigates the potential of identification and representation of the self-interference channel by neural network architectures. The approach is promising for its ability to cope with nonlinear representations, but the variability of channel characteristics is a first obstacle in straightforward application of data-driven neural networks. We therefore propose architectures with a touch of "adaptivity" to accomplish a successful training. For reproducibility of results and further investigations with possibly stronger models and enhanced performance, we document and share our data.
- Published
- 2024
50. AI Foundation Model for Heliophysics: Applications, Design, and Implementation
- Author
-
Roy, Sujit, Singh, Talwinder, Freitag, Marcus, Schmude, Johannes, Lal, Rohit, Hegde, Dinesha, Ranjan, Soumya, Lin, Amy, Gaur, Vishal, Vos, Etienne Eben, Ghosal, Rinki, Patro, Badri Narayana, Aydin, Berkay, Pogorelov, Nikolai, Moreno, Juan Bernabe, Maskey, Manil, and Ramachandran, Rahul
- Subjects
Astrophysics - Solar and Stellar Astrophysics ,Astrophysics - Instrumentation and Methods for Astrophysics ,Computer Science - Computer Vision and Pattern Recognition - Abstract
Deep learning-based methods have been widely researched in the areas of language and vision, demonstrating their capacity to understand long sequences of data and their usefulness in numerous helio-physics applications. Foundation models (FMs), which are pre-trained on a large-scale datasets, form the basis for a variety of downstream tasks. These models, especially those based on transformers in vision and language, show exceptional potential for adapting to a wide range of downstream applications. In this paper, we provide our perspective on the criteria for designing an FM for heliophysics and associated challenges and applications using the Solar Dynamics Observatory (SDO) dataset. We believe that this is the first study to design an FM in the domain of heliophysics., Comment: 31 Pages, 12 figures
- Published
- 2024
Catalog
Discovery Service for Jio Institute Digital Library
For full access to our library's resources, please sign in.