Search arXivSearch

arXiv subjects

Min He

Publications and source records attributed to Min He.

At least 19 recordsLinked to original sources

Laboratory-frame $T$-matrix and heavy quark drag in the quark-gluon plasma

Non-perturbative scattering $T$-matrix is a core input for the evaluation of transport phenomena in a strongly-coupled medium. Existing in-medium $T$-matrix calculations are typically formulated in the two-particle center-of-mass frame, where the scattering equation can be reduced to a lower-dimensional problem. However, a medium explicitly breaks Lorentz invariance and defines a preferred reference frame, entailing that physical observables be constructed from scattering amplitudes evaluated in the medium rest (laboratory) frame. In this work, by exploiting the rotational symmetry about the scattering-pair-momentum axis, we develop a practical framework for solving the in-medium two-body $T$-matrix directly in the laboratory frame while retaining the full dependence on the total pair-momentum and scattering geometry. We demonstrate that the resulting amplitudes differ significantly from conventional center-of-mass-frame results and, when applied to heavy-light quark scattering in the quark-gluon plasma (QGP), lead to 25-40% corrections to heavy-quark drag coefficients at low momenta, thereby removing a significant source of theoretical uncertainty in extracting the QGP transport properties with heavy-quark probes.

nucl-th

New Terms, New Toxicity: Consensus-based Chinese Neologism Toxicity Detection via Search-Augmented LLMs

Neologisms, emerging terms in meaning or form, can serve as new vehicles for toxic expression, like "country girl" as a stigmatizing label targeting feminism. Such toxic neologisms appear benign but have evolved into toxic usage in public consensus, posing challenges to moderation systems and remaining underexplored. In this paper, we investigate how to detect implicit toxicity expressed via neologisms. We first propose a taxonomy that captures the origins and consensus-verification criteria of toxic neologisms, followed by the construction of a lexicon spanning widely observed risk categories. To capture toxicity grounded in public consensus, we introduce SeTox, a search-augmented framework that enables static large language models (LLMs) to incorporate real-time web context for neologism toxicity detection. Experiments show that SeTox, even with 3B-scale models, outperforms recent large-scale models, demonstrating its scalability to incorporate real-world knowledge for toxic neologism detection. Disclaimer: this paper has offensive contents that may be disturbing to some readers.

cs.CL

X-rays breaking out of pre-explosion ejecta mark a supernova's first light

Massive stars die as core-collapse supernovae, whose optical light emerges days after the implosion. Theory predicts that the initial collapse-driven shock, upon breaking through the star and dense circumstellar medium, emits a brief thermal flash of soft X-rays and ultraviolet. Yet these elusive first signals have remained largely undetected, owing to limited wide-field soft X-ray monitoring. Here we report the discovery of a soft X-ray flash, EP260321a, followed days later by a broad-lined supernova from an envelope-stripped progenitor. Its X-ray spectrum, best modeled with blackbody, establishes it as the long-sought archetypal shock breakout. The burst's duration and energetics place the breakout at a radius of 300 solar radii, tracing a dense surrounding shell and revealing abrupt mass ejection within the final month before collapse.

astro-ph.HE

Calibrated Speculative Decoding: Frequency-Guided Candidate Selection for Efficient Inference

Speculative decoding accelerates autoregressive generation by letting draft tokens bypass full verification, but conventional frameworks suffer from frequent false rejections, particularly when draft models produce semantically correct but lexically divergent outputs. In this paper, we present Calibrated Speculative Decoding (CSD), a training-free framework that recovers valid tokens discarded by standard verification. Guided by the principle of "Frequency-Guided Candidate Selection and Probability-Guarded Acceptance," CSD incorporates two lightweight modules: Online Correction Memory, which aggregates historical rejections to propose recurring divergence patterns as rescue candidates, and Semantic Consistency Gating, which verifies candidate admissibility using probability ratios instead of exact token matching. Our evaluation across diverse large language models demonstrates that CSD outperforms existing methods, achieving a peak throughput speedup of 2.33x. CSD preserves model accuracy across all tasks while further boosting performance on complex reasoning datasets. These results establish CSD as a highly effective, lightweight solution for practical LLM deployments.

cs.CL

P^2O: Joint Policy and Prompt Optimization

Reinforcement Learning with Verifiable Rewards (RLVR) enhances Large Language Model (LLM) reasoning but suffers from advantage collapse on ``hard samples'' where all rollouts fail. This lack of variance eliminates crucial learning signals. For these intractable samples, simply scaling up rollout budgets offers limited gains. We introduce Joint Policy and Prompt Optimization (P$^2$O) to mitigate this collapse by alternating continuous policy updates with discrete prompt evolution. P$^2$O leverages the GEPA algorithm to discover successful reasoning prompts for intractable instances. Via context distillation, the model internalizes these prompt-induced gains directly into its parameters, removing the need for inference-time prompting. Empirically, P$^2$O restores critical advantage signals, significantly outperforming standard GRPO and surpassing baselines with doubled rollout budgets, ultimately yielding strong out-of-distribution generalization and an up to $9.5\%$ performance improvement. Our findings expose the limits of standard exploration in sparse-reward environments, illuminating the potential of unifying evolutionary algorithms with reinforcement learning. This integration of discrete semantic search and continuous parameter updates establishes a self-reinforcing paradigm for autonomous LLM alignment.

cs.LG

OmniVLN: Omnidirectional 3D Perception and Token-Efficient LLM Reasoning for Visual-Language Navigation across Air and Ground Platforms

Language-guided embodied navigation requires an agent to interpret object-referential instructions, search across multiple rooms, localize the referenced target, and execute reliable motion toward it. Existing systems remain limited in real indoor environments because narrow field-of-view sensing exposes only a partial local scene at each step, often forcing repeated rotations, delaying target discovery, and producing fragmented spatial understanding; meanwhile, directly prompting LLMs with dense 3D maps or exhaustive object lists quickly exceeds the context budget. We present OmniVLN, a zero-shot visual-language navigation framework that couples omnidirectional 3D perception with token-efficient hierarchical reasoning for both aerial and ground robots. OmniVLN fuses a rotating LiDAR and panoramic vision into a hardware-agnostic mapping stack, incrementally constructs a five-layer Dynamic Scene Graph (DSG) from mesh geometry to room- and building-level structure, and stabilizes high-level topology through persistent-homology-based room partitioning and hybrid geometric/VLM relation verification. For navigation, the global DSG is transformed into an agent-centric 3D octant representation with multi-resolution spatial attention prompting, enabling the LLM to progressively filter candidate rooms, infer egocentric orientation, localize target objects, and emit executable navigation primitives while preserving fine local detail and compact long-range memory. Experiments show that the proposed hierarchical interface improves spatial referring accuracy from 77.27\% to 93.18\%, reduces cumulative prompt tokens by up to 61.7\% in cluttered multi-room settings, and improves navigation success by up to 11.68\% over a flat-list baseline. We will release the code and an omnidirectional multimodal dataset to support reproducible research.

cs.RO

Decoupling Reasoning and Confidence: Resurrecting Calibration in Reinforcement Learning from Verifiable Rewards

Reinforcement Learning from Verifiable Rewards (RLVR) significantly enhances large language models (LLMs) reasoning but severely suffers from calibration degeneration, where models become excessively over-confident in incorrect answers. Previous studies devote to directly incorporating calibration objective into existing optimization target. However, our theoretical analysis demonstrates that there exists a fundamental gradient conflict between the optimization for maximizing policy accuracy and minimizing calibration error. Building on this insight, we propose DCPO, a simple yet effective framework that systematically decouples reasoning and calibration objectives. Extensive experiments demonstrate that our DCPO not only preserves accuracy on par with GRPO but also achieves the best calibration performance and substantially mitigates the over-confidence issue. Our study provides valuable insights and practical solution for more reliable LLM deployment.

cs.LG

Root Cause Analysis Method Based on Large Language Models with Residual Connection Structures

Root cause localization remain challenging in complex and large-scale microservice architectures. The complex fault propagation among microservices and the high dimensionality of telemetry data, including metrics, logs, and traces, limit the effectiveness of existing root cause analysis (RCA) methods. In this paper, a residual-connection-based RCA method using large language model (LLM), named RC-LLM, is proposed. A residual-like hierarchical fusion structure is designed to integrate multi-source telemetry data, while the contextual reasoning capability of large language models is leveraged to model temporal and cross-microservice causal dependencies. Experimental results on CCF-AIOps microservice datasets demonstrate that RC-LLM achieves strong accuracy and efficiency in root cause analysis.

cs.AI

SN 2024abfl: A Low-Luminosity Type IIP Supernova in NGC 2146 from a Low-Mass Red Supergiant Progenitor

Type IIP supernovae (SNe IIP) exhibit a significant diversity in their explosion properties, yet the physical mechanisms driving this diversity remain unknown. In this work, we present photometric and spectroscopic observations of SN 2024abfl, a SN IIP in NGC 2146 with a directly detected red supergiant (RSG) progenitor. We find it has a low plateau luminosity ($M_V \sim -15$ mag) and a relatively long plateau length ($\sim 126.5$ days). By fitting a semi-analytical model, we estimated a $^{56}$Ni mass of $\sim 0.009 M_\odot$, an initial kinetic energy of $\sim 0.42$ foe, an initial thermal energy of $\sim 0.03$ foe and an ejecta mass of $\sim 8.3 M_\odot$. The spectral evolution of SN 2024abfl is similar to those of other SNe IIP, except for much lower ejecta velocities at similar epochs. At later epochs, we find a relatively high-velocity H$\alpha$ absorption feature at $\sim -4000$ km s$^{-1}$, possibly due to a fast-moving plume of matter in the inner ejecta, and two emission features at $\pm 2000$ km s$^{-1}$, possibly caused by CSM interaction. We estimate the progenitor mass to be $\le 15 M_\odot$ based on nebular spectra. We conclude that SN 2024abfl is a low-luminosity SN IIP originating from a low-mass RSG progenitor.

astro-ph.HE

Adaptive Knowledge Transfer for Cross-Disciplinary Cold-Start Knowledge Tracing

Cross-Disciplinary Cold-start Knowledge Tracing (CDCKT) faces a critical challenge: insufficient student interaction data in the target discipline prevents effective knowledge state modeling and performance prediction. Existing cross-disciplinary methods rely on overlapping entities between disciplines for knowledge transfer through simple mapping functions, but suffer from two key limitations: (1) overlapping entities are scarce in real-world scenarios, and (2) simple mappings inadequately capture cross-disciplinary knowledge complexity. To overcome these challenges, we propose Mixed of Experts and Adversarial Generative Network-based Cross-disciplinary Cold-start Knowledge Tracing Framework. Our approach consists of three key components: First, we pre-train a source discipline model and cluster student knowledge states into K categories. Second, these cluster attributes guide a mixture-of-experts network through a gating mechanism, serving as a cross-domain mapping bridge. Third, an adversarial discriminator enforces feature separation by pulling same-attribute student features closer while pushing different-attribute features apart, effectively mitigating small-sample limitations. We validate our method's effectiveness across 20 extreme cross-disciplinary cold-start scenarios.

cs.IR

Taiji: A DPU Memory Elasticity Solution for In-production Cloud Environments

The growth of cloud computing drives data centers toward higher density and efficiency. Data processing units (DPUs) enhance server network and storage performance but face challenges such as long hardware upgrade cycles and limited resources. To address these, we propose Taiji, a resource-elasticity architecture for DPUs. Combining hybrid virtualization with parallel memory swapping, Taiji switches the DPU's operating system (OS) into a guest OS and inserts a lightweight virtualization layer, making nearly all DPU memory swappable. It achieves memory overcommitment for the switched guest OS via high-performance memory elasticity, fully transparent to upper-layer applications, and supports hot-switch and hot-upgrade to meet in-production cloud requirements. Experiments show that Taiji expands DPU memory resources by over 50%, maintains virtualization overhead around 5%, and ensures 90% of swap-ins complete within 10 microseconds. Taiji delivers an efficient, reliable, low-overhead elasticity solution for DPUs and is deployed in large-scale production systems across more than 30,000 servers.

cs.OS

Vmem: A Lightweight Hot-Upgradable Memory Management for In-production Cloud Environment

Traditional memory management suffers from metadata overhead, architectural complexity, and stability degradation, problems intensified in cloud environments. Existing software/hardware optimizations are insufficient for cloud computing's dual demands of flexibility and low overhead. This paper presents Vmem, a memory management architecture for in-production cloud environments that enables flexible, efficient cloud server memory utilization through lightweight reserved memory management. Vmem is the first such architecture to support online upgrades, meeting cloud requirements for high stability and rapid iterative evolution. Experiments show Vmem increases sellable memory rate by about 2%, delivers extreme elasticity and performance, achieves over 3x faster boot time for VFIO-based virtual machines (VMs), and improves network performance by about 10% for DPU-accelerated VMs. Vmem has been deployed at large scale for seven years, demonstrating efficiency and stability on over 300,000 cloud servers supporting hundreds of millions of VMs.

cs.OS

UniVector: Unified Vector Extraction via Instance-Geometry Interaction

Vector extraction retrieves structured vector geometry from raster images, offering high-fidelity representation and broad applicability. Existing methods, however, are usually tailored to a single vector type (e.g., polygons, polylines, line segments), requiring separate models for different structures. This stems from treating instance attributes (category, structure) and geometric attributes (point coordinates, connections) independently, limiting the ability to capture complex structures. Inspired by the human brain's simultaneous use of semantic and spatial interactions in visual perception, we propose UniVector, a unified VE framework that leverages instance-geometry interaction to extract multiple vector types within a single model. UniVector encodes vectors as structured queries containing both instance- and geometry-level information, and iteratively updates them through an interaction module for cross-level context exchange. A dynamic shape constraint further refines global structures and key points. To benchmark multi-structure scenarios, we introduce the Multi-Vector dataset with diverse polygons, polylines, and line segments. Experiments show UniVector sets a new state of the art on both single- and multi-structure VE tasks. Code and dataset will be released at https://github.com/yyyyll0ss/UniVector.

cs.CV

SN 2024aecx: a fast-evolving Type IIb supernova with a prominent shock-cooling peak

SN 2024aecx is a nearby ($\sim$11 Mpc) Type IIb SN discovered within $\sim$1 d after explosion. In this paper we report high-cadence photometric (typically 0.5$\sim$1 day) and spectroscopic follow-up observations, conducted from as early as 0.27 d post discovery out to the nebular phase at 158.4 d. We analyze the environment of SN 2024aecx and derive a new distance (11.3$\pm$1.1 Mpc), metallicity and host extinction. The light curve exhibits a hot and luminous shock-cooling peak at the first few days, followed by a main peak with very rapid post-maximum decline. The earliest spectra are blue and featureless, while from 2.3 d after discovery prominent P-Cygni profiles emerge. At nebular phase, the emission lines exhibit asymmetric and double-peaked profiles, indicating asphericity and/or early dust formation in the ejecta. Nebular spectral modelling indicates a blueshifted O-rich clump moving toward observer, and the $[\text{OI}]/[\text{CaII}]$ line ratio suggests an intermediate-mass progenitor. We simulated the progenitor and explosion using a two-component model of shock cooling and radioactive $^{56}$Ni heating; our model favors an extended, low-mass H-rich envelope with $M_{\mathrm{e}} = 0.04\pm{0.01} M_{\odot}$ and a low ejecta mass of$M_{\mathrm{ej}} = 1.55^{+0.18}_{-0.14} M_{\odot}$. And the nebular-phase spectra and light-curve modelling both suggest that it most likely originated from an intermediate-mass binary progenitor system. The comprehensive monitoring of SN 2024aecx, coupled with the detailed characterization of its local environment, establishes it as a benchmark event for probing the progenitors and explosion mechanisms of Type IIb SNe.

astro-ph.SR

In-medium heavy quark-antiquark $T$-matrix without partial wave expansion

The T-matrix of the heavy quark-antiquark ($Q\bar{Q}$) pair interacting through a screened Cornell potential in the quark-gluon plasma (QGP) is computed without employing the partial wave expansion. This is compared with the results obtained using the conventional method of partial wave expansion. Through a comprehensive survey over a range of screening mass and center-of-mass energy, which, when combined, determine the orbital angular momentum involved in the scattering through the associated force range and incident momentum, it is demonstrated that a substantial number of partial wave terms are necessary to precisely match the full scattering amplitude directly obtained from the method without partial wave expansion. For moderate screening masses (corresponding to one to two times the crossover transition temperature) and center-of-mass energy, the number of partial waves required for satisfactory matching turns out as large as 10-20, substantially larger than what one would expect based on simply measuring the magnitudes of the first few partial wave amplitudes. This highlights the efficiency of the new method in directly obtaining the full scattering amplitude needed for further computation of phenomenological observables. We also employ the new method to calculate the T-matrix at center-of-mass energies below the $Q\bar{Q}$ mass threshold, and demonstrate the presence of bound states of different orbital quantum numbers simultaneously in a single energy scan.

hep-ph

Simulation of heavy quarkonium equilibration in the quark-gluon plasma

We simulate the heavy quarkonium equilibration through transport in a static and homogeneous quark-gluon plasma (QGP) box within the semi-classical Boltzmann approach incorporating both the leading-order and next-to-leading-order dissociation and regeneration reactions. The scattering amplitudes involved are taken from perturbative computations based on effective color-electric dipole coupling of the heavy quarkonium with thermal gluons. By coupling the Langevin simulation of single heavy quark diffusion and the Boltzmann transport of the heavy quarkonium in a real-time fashion, we demonstrate how the kinetic and chemical equilibrium of heavy quarkonium with single heavy quarks in the medium is achieved in terms of both the bound state's yields and momentum distributions. The pertinent equilibration time turns out to be comparable to the lifetime of the QGP created in the most central heavy-ion collisions at the LHC energies. The role of the intricate interplay between the open and hidden heavy sector in the process of equilibration is highlighted. This work provides a dynamical way of understanding the phenomenological success of statistical hadronization model for charmonium production in relativistic heavy-ion collisions, and also paves the way for realistic phenomenological applications to heavy quarkonium transport.

hep-ph

FUAS-Agents: Autonomous Multi-Modal LLM Agents for Treatment Planning in Focused Ultrasound Ablation Surgery

Focused Ultrasound Ablation Surgery (FUAS) has emerged as a promising non-invasive therapeutic modality, valued for its safety and precision. Nevertheless, its clinical implementation entails intricate tasks such as multimodal image interpretation, personalized dose planning, and real-time intraoperative decision-making processes that demand intelligent assistance to improve efficiency and reliability. We introduce FUAS-Agents, an autonomous agent system that leverages the multimodal understanding and tool-using capabilities of large language models (LLMs). The system was developed using a large-scale, multicenter, multimodal clinical dataset of over 3000 cases from three medical institutions. By integrating patient profiles and MRI data, FUAS-Agents orchestrates a suite of specialized medical AI tools, including segmentation, treatment dose prediction, and clinical guideline retrieval, to generate personalized treatment plans comprising MRI image, dose parameters, and therapeutic strategies. The system also incorporates an internal quality control and reflection mechanism, ensuring consistency and robustness of the outputs. We evaluate the system in a uterine fibroid treatment scenario. Human assessment by four senior FUAS experts indicates that 82.5\%, 82.5\%, 87.5\%, and 97.5\% of the generated plans were rated 4 or above (on a 5-point scale) in terms of completeness, accuracy, fluency, and clinical compliance, respectively. In addition, we have conducted ablation studies to systematically examine the contribution of each component to the overall performance. These results demonstrate the potential of LLM-driven agents in enhancing decision-making across complex clinical workflows, and exemplify a translational paradigm that combines general-purpose models with specialized expert systems to solve practical challenges in vertical healthcare domains.

cs.MA

The Mini-SiTian Array: White Paper

This paper outlines the scientific goals and observational strategies of the Mini-SiTian array. Mounted at Xinglong Observatory, the Mini-SiTian array consists of three 30 cm telescopes and has been in operation since 2022. The large field of view, combined with the capability for multi-band photometric observations, enables the Mini-SiTian array to perform rapid follow-up observations to identify optical counterparts of gravitational waves, capture the early light curves of tidal disruption events and supernovae, and monitor stellar flares, Be star outbursts, and cataclysmic variable stars, although its limiting magnitude is not very deep. By collaborating with the Xinglong 2.16-m telescope and leveraging a real-time image processing pipeline, simultaneous photometric and spectroscopic observations could be performed to reveal their underlying physical mechanisms. The observational and research experience provide critical guidance for the implementation of the full-scale SiTian project in the future.

astro-ph.IM