SearcharxivSearch

arXiv subjects

Ying Xing

Publications and source records attributed to Ying Xing.

At least 19 recordsLinked to original sources

EAR: Enhancing Uni-Modal Representations for Weakly Supervised Audio-Visual Video Parsing

Weakly supervised Audio-Visual Video Parsing (AVVP) aims to recognize and temporally localize audio, visual, and audio-visual events in videos using only coarse-grained labels. Faced with the challenging task settings, existing research advances along two main paths: pre-training pseudo-label generators for fine-grained cross-modal semantic guidance, or refining AVVP model architectures to enhance audio-visual fusion. However, since audio and visual signals are typically unaligned, achieving accurate video parsing fundamentally relies on precise perception of uni-modal events. Yet these multi-modal focused strategies excessively emphasize multi-modal fusion while inadequately guiding and preserving uni-modal semantics, resulting in noisy pseudo-labels and sub-optimal video parsing performance. This paper proposes a novel framework that enhances uni-modal representations for both the pseudo-label generator and the AVVP model. Specifically, we introduce a similarity-based label migration approach to annotate pre-training data, thereby enabling the pseudo-label generator to better understand uni-modal events. We also employ a soft-constrained manner to refine modeling of uni-modal features in parallel with multi-modal fusion. These designs enable coordinated attention to both uni-modal and cross-modal representations, thus boosting the localization performance for events. Extensive experiments show that our method outperforms state-of-the-art methods in both pseudo-label and AVVP performance.

cs.CV

Sound of Touch: Active Acoustic Tactile Sensing via String Vibrations

Distributed tactile sensing remains difficult to scale over large areas: dense sensor arrays increase wiring, cost, and fragility, while many alternatives provide limited coverage or miss fast interaction dynamics. We present Sound of Touch, an active acoustic tactile-sensing methodology that uses vibrating tensioned strings as sensing elements. The string is continuously excited electromagnetically, and a small number of pickups (contact microphones) observe spectral changes induced by contact. From short-duration audio signals, our system estimates contact location and normal force, and detects slip. To guide design and interpret the sensing mechanism, we derive a physics-based string-vibration simulator that predicts how contact position and force shift vibration modes. Experiments demonstrate millimeter-scale localization, reliable force estimation, and real-time slip detection. Our contributions are: (i) a lightweight, scalable string-based tactile sensing hardware concept for instrumenting extended robot surfaces; (ii) a physics-grounded simulation and analysis tool for contact-induced spectral shifts; and (iii) a real-time inference pipeline that maps vibration measurements to contact state.

cs.RO

Clarifying NH2 + O(3P) Reaction Dynamics: A Full-Dimensional MRCI, Machine-Learned PES Unravels High-Temperature Kinetics

The NH2 + O reaction represents a critical oxidation pathway in ammonia and hydrazine combustion, yet significant discrepancies persist in reported kinetics. Here, we generate a full-dimensional ground-state potential energy surface (PES) for NH2O using high-level internally contracted multi-reference configuration interaction (ic-MRCI) calculations and the permutation invariant polynomial-neural network (PIP-NN) method. The PES encompasses all energetically accessible channels, including HNO + H, NH + OH, NO + H2, and HON + H. Quasi-classical trajectory calculations on this surface yield thermal rate coefficients and branching ratios over a wide temperature range, particularly extending into the high-temperature regime relevant to combustion. The results provide accurate first principles kinetic data essential for refining combustion models of nitrogen containing fuels.

physics.chem-ph

ESG-Net: Event-Aware Semantic Guided Network for Dense Audio-Visual Event Localization

Dense audio-visual event localization (DAVE) aims to identify event categories and locate the temporal boundaries in untrimmed videos. Most studies only employ event-related semantic constraints on the final outputs, lacking cross-modal semantic bridging in intermediate layers. This causes modality semantic gap for further fusion, making it difficult to distinguish between event-related content and irrelevant background content. Moreover, they rarely consider the correlations between events, which limits the model to infer concurrent events among complex scenarios. In this paper, we incorporate multi-stage semantic guidance and multi-event relationship modeling, which respectively enable hierarchical semantic understanding of audio-visual events and adaptive extraction of event dependencies, thereby better focusing on event-related information. Specifically, our eventaware semantic guided network (ESG-Net) includes a early semantics interaction (ESI) module and a mixture of dependency experts (MoDE) module. ESI applys multi-stage semantic guidance to explicitly constrain the model in learning semantic information through multi-modal early fusion and several classification loss functions, ensuring hierarchical understanding of event-related content. MoDE promotes the extraction of multi-event dependencies through multiple serial mixture of experts with adaptive weight allocation. Extensive experiments demonstrate that our method significantly surpasses the state-of-the-art methods, while greatly reducing parameters and computational load. Our code will be released on https://github.com/uchiha99999/ESG-Net.

cs.MM

PATCH: Empowering Large Language Model with Programmer-Intent Guidance and Collaborative-Behavior Simulation for Automatic Bug Fixing

Bug fixing holds significant importance in software development and maintenance. Recent research has made substantial strides in exploring the potential of large language models (LLMs) for automatically resolving software bugs. However, a noticeable gap in existing approaches lies in the oversight of collaborative facets intrinsic to bug resolution, treating the process as a single-stage endeavor. Moreover, most approaches solely take the buggy code snippet as input for LLMs during the patch generation stage. To mitigate the aforementioned limitations, we introduce a novel stage-wise framework named PATCH. Specifically, we first augment the buggy code snippet with corresponding dependence context and intent information to better guide LLMs in generating the correct candidate patches. Additionally, by taking inspiration from bug management practices, we decompose the bug-fixing task into four distinct stages: bug reporting, bug diagnosis, patch generation, and patch verification. These stages are performed interactively by LLMs, aiming to simulate the collaborative behavior of programmers during the resolution of software bugs. By harnessing these collective contributions, PATCH effectively enhances the bug-fixing capability of LLMs. We implement PATCH by employing the powerful dialogue-based LLM ChatGPT. Our evaluation on the widely used bug-fixing benchmark BFP demonstrates that PATCH has achieved better performance than state-of-the-art LLMs.

cs.SE

Defect Category Prediction Based on Multi-Source Domain Adaptation

In recent years, defect prediction techniques based on deep learning have become a prominent research topic in the field of software engineering. These techniques can identify potential defects without executing the code. However, existing approaches mostly concentrate on determining the presence of defects at the method-level code, lacking the ability to precisely classify specific defect categories. Consequently, this undermines the efficiency of developers in locating and rectifying defects. Furthermore, in practical software development, new projects often lack sufficient defect data to train high-accuracy deep learning models. Models trained on historical data from existing projects frequently struggle to achieve satisfactory generalization performance on new projects. Hence, this paper initially reformulates the traditional binary defect prediction task into a multi-label classification problem, employing defect categories described in the Common Weakness Enumeration (CWE) as fine-grained predictive labels. To enhance the model performance in cross-project scenarios, this paper proposes a multi-source domain adaptation framework that integrates adversarial training and attention mechanisms. Specifically, the proposed framework employs adversarial training to mitigate domain (i.e., software projects) discrepancies, and further utilizes domain-invariant features to capture feature correlations between each source domain and the target domain. Simultaneously, the proposed framework employs a weighted maximum mean discrepancy as an attention mechanism to minimize the representation distance between source and target domain features, facilitating model in learning more domain-independent features. The experiments on 8 real-world open-source projects show that the proposed approach achieves significant performance improvements compared to state-of-the-art baselines.

cs.SE

STEAM: Simulating the InTeractive BEhavior of ProgrAMmers for Automatic Bug Fixing

Bug fixing holds significant importance in software development and maintenance. Recent research has made notable progress in exploring the potential of large language models (LLMs) for automatic bug fixing. However, existing studies often overlook the collaborative nature of bug resolution, treating it as a single-stage process. To overcome this limitation, we introduce a novel stage-wise framework named STEAM in this paper. The objective of STEAM is to simulate the interactive behavior of multiple programmers involved in various stages across the bug's life cycle. Taking inspiration from bug management practices, we decompose the bug fixing task into four distinct stages: bug reporting, bug diagnosis, patch generation, and patch verification. These stages are performed interactively by LLMs, aiming to imitate the collaborative abilities of programmers during the resolution of software bugs. By harnessing the collective contribution, STEAM effectively enhances the bug-fixing capabilities of LLMs. We implement STEAM by employing the powerful dialogue-based LLM -- ChatGPT. Our evaluation on the widely adopted bug-fixing benchmark demonstrates that STEAM has achieved a new state-of-the-art level of bug-fixing performance.

cs.SE

Automated Static Warning Identification via Path-based Semantic Representation

Despite their ability to aid developers in detecting potential defects early in the software development life cycle, static analysis tools often suffer from precision issues (i.e., high false positive rates of reported alarms). To improve the availability of these tools, many automated warning identification techniques have been proposed to assist developers in classifying false positive alarms. However, existing approaches mainly focus on using hand-engineered features or statement-level abstract syntax tree token sequences to represent the defective code, failing to capture semantics from the reported alarms. To overcome the limitations of traditional approaches, this paper employs deep neural networks' powerful feature extraction and representation abilities to generate code semantics from control flow graph paths for warning identification. The control flow graph abstractly represents the execution process of a given program. Thus, the generated path sequences of the control flow graph can guide the deep neural networks to learn semantic information about the potential defect more accurately. In this paper, we fine-tune the pre-trained language model to encode the path sequences and capture the semantic representations for model building. Finally, this paper conducts extensive experiments on eight open-source projects to verify the effectiveness of the proposed approach by comparing it with the state-of-the-art baselines.

cs.SE

SAGA: Summarization-Guided Assert Statement Generation

Generating meaningful assert statements is one of the key challenges in automated test case generation, which requires understanding the intended functionality of the tested code. Recently, deep learning-based models have shown promise in improving the performance of assert statement generation. However, existing models only rely on the test prefixes along with their corresponding focal methods, yet ignore the developer-written summarization. Based on our observations, the summarization contents usually express the intended program behavior or contain parameters that will appear directly in the assert statement. Such information will help existing models address their current inability to accurately predict assert statements. This paper presents a novel summarization-guided approach for automatically generating assert statements. To derive generic representations for natural language (i.e., summarization) and programming language (i.e., test prefixes and focal methods), we leverage a pre-trained language model as the reference architecture and fine-tune it on the task of assert statement generation. To the best of our knowledge, the proposed approach makes the first attempt to leverage the summarization of focal methods as the guidance for making the generated assert statements more accurate. We demonstrate the effectiveness of our approach on two real-world datasets when compared with state-of-the-art models.

cs.SE

Neural Program Repair with Program Dependence Analysis and Effective Filter Mechanism

Automated program repair is a crucial task for improving the efficiency of software developers. Recently, neural-based techniques have demonstrated significant promise in generating correct patches for buggy code snippets. However, most existing approaches arbitrarily treat the buggy context without any analysis to capture the semantic relationship between the buggy statement and its context. Additionally, we observe that existing neural models may output an unaltered patch consistent with the input buggy code snippet, which fails to be the correct human-written one for fixing the given bug. To address the aforementioned limitations, we present in this paper a novel neural program repair framework called \approach, which adapts the general pre-trained language model for fixing single-line Java bugs. We make the first attempt to use program slicing to extract contextual information directly related to the given buggy statement as repair ingredients from the corresponding program dependence graph and eliminate unaltered patches using an intuitive but effective filter mechanism. We demonstrate the effectiveness of \approach on five benchmarks when compared with state-of-the-art baselines.

cs.SE

The activated scaling behavior of quantum Griffiths singularity in two-dimensional superconductors

Quantum Griffiths singularity is characterized by the divergence of the dynamical critical exponent with the activated scaling law and has been widely observed in various two-dimensional superconductors. Recently, the direct activated scaling analysis with the irrelevant correction has been proposed and successfully used to analyze the experimental data of crystalline PdTe2 and polycrystalline \b{eta}-W films, which provides new evidence of quantum Griffiths singularity. Here we show that the direct activated scaling analysis is applicable to the experimental data in different superconducting films, including tri-layer Ga films and LaAlO3/SrTiO3 interface superconductor. When taking the irrelevant correction into account, we calculate the corrected sheet resistance at ultralow temperatures. The scaling behavior of the corrected resistance in a comparably large temperature regime and the theoretical fitting of the phase boundary give unambiguous evidence of quantum Griffiths singularity. Compared to the previous method based on the finite size scaling, the direct activated scaling analysis represents a more direct and precise way to analyze the experimental data of quantum Griffiths singularity in diverse two-dimensional superconductors.

cond-mat.supr-con

Charge-4e and charge-6e flux quantization and higher charge superconductivity in kagome superconductor ring devices

The flux quantization is a key indication of electron pairing in superconductors. For example, the well-known h/2e flux quantization is considered strong evidence for the existence of the charge-2e, two-electron Cooper pairs. Here we report evidence for multi-charge flux quantization in mesoscopic ring devices fabricated using the transition-metal kagome superconductor CsV3Sb5. We perform systematic magneto-transport measurements and observe unprecedented quantization of magnetic flux in units of h/4e and h/6e in magnetoresistance oscillations. Specifically, at low temperatures, magnetoresistance oscillations with period h/2e are detected, as expected from the flux quantization for charge-2e superconductivity. We find that the h/2e oscillations are suppressed and replaced by resistance oscillations with h/4e periodicity when temperature is increased. Increasing the temperature further suppresses the h/4e oscillations and robust resistance oscillations with h/6e periodicity emerge as evidence for charge-6e flux quantization. Our observations provide the first experimental evidence for the existence of multi-charge flux quanta and emergent quantum matter exhibiting higher-charge superconductivity in the strongly fluctuating region above the charge-2e Cooper pair condensate, revealing new insights into the intertwined and vestigial electronic order in kagome superconductors.

cond-mat.supr-con

The observation of in-plane quantum Griffiths singularity in two-dimensional crystalline superconductors

Quantum Griffiths singularity (QGS) reveals the profound influence of quenched disorder on the quantum phase transitions, characterized by the divergence of the dynamical critical exponent at the boundary of the vortex glass-like phase, named as quantum Griffiths phase. However, in the absence of vortices, whether the QGS can exist under parallel magnetic field remains a puzzle. Here we study the magnetic field induced superconductor-metal transition in ultrathin crystalline PdTe2 films grown by molecular beam epitaxy. Remarkably, the QGS emerges under both perpendicular and parallel magnetic field in 4-monolayer PdTe2 films. The direct activated scaling analysis with a new irrelevant correction has been proposed, providing important evidence of QGS. With increasing film thickness to 6 monolayers, the QGS disappears under perpendicular field but persists under parallel field, and this discordance may originate from the differences in microscopic processes. Our work demonstrates the universality of parallel field induced QGS and can stimulate further investigations on novel quantum phase transitions under parallel magnetic field.

cond-mat.supr-con

Surface Superconductivity in the type II Weyl Semimetal TaIrTe4

The search for unconventional superconductivity in Weyl semimetal materials is currently an exciting pursuit, since such superconducting phases could potentially be topologically nontrivial and host exotic Majorana modes. The layered material TaIrTe4 is a newly predicted time-reversal invariant type II Weyl semimetal with minimum number of Weyl points. Here, we report the discovery of surface superconductivity in Weyl semimetal TaIrTe4. Our scanning tunneling microscopy/spectroscopy (STM/S) visualizes Fermi arc surface states of TaIrTe4 that are consistent with the previous angle-resolved photoemission spectroscopy (ARPES) results. By a systematic study based on STS at ultralow temperature, we observe uniform superconducting gaps on the sample surface. The superconductivity is further confirmed by electrical transport measurements at ultralow temperature, with an onset transition temperature (Tc) up to 1.54 K being observed. The normalized upper critical field h*(T/Tc) behavior and the stability of the superconductivity against the ferromagnet indicate that the discovered superconductivity is unconventional with the p-wave pairing. The systematic STS, thickness and angular dependent transport measurements reveal that the detected superconductivity is quasi-one-dimensional (quasi-1D) and occurs in the surface states. The discovery of the surface superconductivity in TaIrTe4 provides a new novel platform to explore topological superconductivity and Majorana modes.

cond-mat.supr-con

Extrinsic and Intrinsic Anomalous Metallic States in Transition Metal Dichalcogenide Ising Superconductors

The metallic ground state in two-dimensional (2D) superconductors has attracted much attention but is still under intense scrutiny. Especially, the measurements in ultralow temperature region are challenging for 2D superconductors due to the sensitivity to external perturbations. In this work, the resistance saturation induced by external noise, named as "extrinsic anomalous metallic state", is observed in 2D transition metal dichalcogenide (TMD) superconductor 4Ha-TaSe2 nanodevices. However, with further decreasing temperature, credible evidence of intrinsic anomalous metallic state is obtained by adequately filtering external radiation. Our work indicates that at ultralow temperatures the anomalous metallic state can be experimentally revealed as the quantum ground state in 2D crystalline TMD superconductors. Besides, Ising superconductivity revealed by ultrahigh in-plane critical field (Bc2//) going beyond the Pauli paramagnetic limit (Bp) is detected in 4Ha-TaSe2, from one-unit-cell device to bulk situation, which might be due to the weak coupling between the TaSe2 sub-monolayers.

cond-mat.supr-con

Unconventional Hall Effect induced by Berry Curvature

Berry phase and Berry curvature play a key role in the development of topology in physics and do contribute to the transport properties in solid state systems. In this paper, we report the finding of novel nonzero Hall effect in topological material ZrTe5 flakes when in-plane magnetic field is parallel and perpendicular to the current. Surprisingly, both symmetric and antisymmetric components with respect to magnetic field are detected in the in-plane Hall resistivity. Further theoretical analysis suggests that the magnetotransport properties originate from the anomalous velocity induced by Berry curvature in a tilted Weyl semimetal. Our work not only enriches the Hall family but also provides new insights into the Berry phase effect in topological materials.

cond-mat.mes-hall

Eightfold Fermionic Excitation in a Charge Density Wave Compound

Unconventional quasiparticle excitations in condensed matter systems have become one of the most important research frontiers. Beyond two- and fourfold degenerate Weyl and Dirac fermions, three-, six- and eightfold symmetry protected degeneracies have been predicted however remain challenging to realize in solid state materials. Here, charge density wave compound TaTe4 is proposed to hold eightfold fermionic excitation and Dirac point in energy bands. High quality TaTe4 single crystals are prepared, where the charge density wave is revealed by directly imaging the atomic structure and a pseudogap of about 45 meV on the surface. Shubnikov de-Haas oscillations of TaTe4 are consistent with band structure calculation. Scanning tunneling microscopy reveals atomic step edge states on the surface of TaTe4. This work uncovers that charge density wave is able to induce new topological phases and sheds new light on the novel excitations in condensed matter materials.

cond-mat.mtrl-sci

Disorder induced multifractal superconductivity in monolayer niobium dichalcogenides

The interplay between disorder and superconductivity is a subtle and fascinating phenomenon in quantum many body physics. The conventional superconductors are insensitive to dilute nonmagnetic impurities, known as the Anderson's theorem. Destruction of superconductivity and even superconductor-insulator transitions occur in the regime of strong disorder. Hence disorder-enhanced superconductivity is rare and has only been observed in some alloys or granular states. Because of the entanglement of various effects, the mechanism of enhancement is still under debate. Here we report well-controlled disorder effect in the recently discovered monolayer NbSe$_2$ superconductor. The superconducting transition temperatures of NbSe$_2$ monolayers are substantially increased by disorder. Realistic theoretical modeling shows that the unusual enhancement possibly arises from the multifractality of electron wave functions. This work provides the first experimental evidence of the multifractal superconducting state.

cond-mat.supr-con