Search arXivSearch

arXiv subjects

Qin Zhou

Publications and source records attributed to Qin Zhou.

At least 19 recordsLinked to original sources

Convergence of finite element approximations for the one-dimensional stochastic Burgers equation with additive trace-class noise

This paper investigates finite element approximations of the one-dimensional viscous stochastic Burgers equation with additive trace-class noise. For the $P_2$ finite element spatial semi-discretization, we derive strong error estimates that are optimal with respect to regularity in \(L^p([0,T] \times \Omega;H_{D}^{\alpha,q})\) for \(p,q\in[2,\infty)\) and \(\alpha\in[-1,0]\), as well as an almost regularity-optimal estimate in \(L^p(\Omega;C([0,T];L^\infty(\mathcal{O})))\). Furthermore, we derive weak error estimates for moments of both terminal $L^q$-norms and space-time $L^p(0,T;L^q(\mathcal{O}))$-norms, with weak convergence rates (nearly) twice the corresponding strong ones. For the fully discrete scheme, which combines the \(P_2\) finite element method in space with a drift-implicit Euler--Maruyama scheme in time, we establish a strong temporal convergence rate of order \(\tau^{1/2-\varepsilon}\) in a discrete analogue of \(L^p(\Omega;C([0,T];L^\infty(\mathcal{O})))\), under the condition \(\tau \leqslant h^2\). Numerical experiments are presented to illustrate the theoretical convergence rates.

math.NA

On the Minimum Field Size of Network MDS Codes for Generalized Combination Networks

This paper investigates the minimum field size required for network maximum distance separable (MDS) codes, a critical parameter affecting computational complexity at network nodes. Focusing on generalized combination networks and Zosin Khuller networks, we develop a systematic framework for both scalar and vector network MDS codes. For scalar codes on generalized combination networks, we establish an equivalence between the minimum distance of network codes and the minimum Hamming distance of classical linear codes, converting network-level MDS constraints into coding theory conditions. This yields necessary and sufficient existence conditions linked to classical MDS codes and covering Grassmannian codes. Using refined greedy constructions and MRD code designs, we obtain improved bounds on the minimum field size, outperforming the prior universal bound. For vector network codes, we develop an analogous distance equivalence and characterize existence via covering Grassmannian codes, yielding bounds on the minimum effective field size. Notably, the gap between optimal scalar and vector MDS codes vanishes for several parameter regimes; we explicitly identify a family of such networks where vector coding offers no field size advantage over scalar coding. For Zosin Khuller networks, we derive lower bounds on the minimal effective field size of vector MDS codes using hypergraph homomorphisms and subset intersection arguments, strictly improving prior scalar bounds. We further provide a necessary and sufficient condition built upon hypergraph homomorphisms for vector MDS construction, yielding an upper bound on the minimum field size. Finally, we bound the MDS gap between optimal scalar and vector solutions.

cs.IT

Generation of strongly localized skin solitons in non-Hermitian waveguide arrays with the Kerr effect

We address two distinct nonlinear propagation problems in nonlinear optical waveguide arrays (WGAs) with non-reciprocal (non-Hermitian) couplings. First, we investigate the light propagation launched by initial excitations of two different types. The single-channel excitation creates stable solitons supported by the interplay of the Kerr nonlinearity and non-Hermitian skin effect (NHSE). In this case, we derive, by means of the symbolic-regression method, an analytical formula defining the soliton existence boundary. For the broad-pulse excitation, we produce perturbed soliton solutions analytically in the continuum approximation, which is accurately corroborated by numerical results. We thus conclude that NHSE accelerates the propagation of the broad soliton towards the boundary, ultimately causing tight localization at the edge, which is a hallmark of the NHSE in the continuum limit. Second, we identify stationary solitons in the system -- specifically, nonlinear bulk modes in the Hermitian regime and near-edge skin solitons in the non-Hermitian one. The nonlinear bulk modes are compressed toward the edge of the WGA under the action of the non-reciprocality, which is the nonlinear extension of NHSE.

physics.optics

Enhancing Reinforcement Learning for Radiology Report Generation with Evidence-aware Rewards and Self-correcting Preference Learning

Recent reinforcement learning (RL) approaches have advanced radiology report generation (RRG), yet two core limitations persist: (1) report-level rewards offer limited evidence-grounded guidance for clinical faithfulness; and (2) current methods lack an explicit self-improving mechanism to align with clinical preference. We introduce clinically aligned Evidence-aware Self-Correcting Reinforcement Learning (ESC-RL), comprising two key components. First, a Group-wise Evidence-aware Alignment Reward (GEAR) delivers group-wise, evidence-aware feedback. GEAR reinforces consistent grounding for true positives, recovers missed findings for false negatives, and suppresses unsupported content for false positives. Second, a Self-correcting Preference Learning (SPL) strategy automatically constructs a reliable, disease-aware preference dataset from multiple noisy observations and leverages an LLM to synthesize refined reports without human supervision. ESC-RL promotes clinically faithful, disease-aligned reward and supports continual self-improvement during training. Extensive experiments on two public chest X-ray datasets demonstrate consistent gains and state-of-the-art performance.

cs.LG

Secure Network Function Computation for General Target and Security Functions

Secure network function computation is a critical research direction in network coding, which aims to ensure that the target function is correctly computed at the sink node while preventing the wiretapper from obtaining any information about the security function. In this paper, we focus on the general secure network function computation model, where the target function f and the security function {\zeta} are arbitrary, and the wiretapper can eavesdrop on any subset of edges with size at most a given security level. Using information-theoretic techniques, we establish a nontrivial upper bound on the secure computing capacity, which is applicable to arbitrary networks, arbitrary target and security functions, and arbitrary security levels. This upper bound is shown to degenerate to the existing bounds in the literature when the target and security functions are specific forms. Furthermore, we consider two specific models: one where the target function is vector-linear and the security function is the identity function, and another where both functions are vector-linear. For the former, we derive a simplified form of the upper bound on the secure computing capacity via order-theoretic methods and propose an efficient algorithm to compute this bound with linear time complexity in the number of network edges. For the latter, we characterize the equivalent conditions for the computability and security of linear secure network codes, develop two constructive schemes for such codes, and derive an upper bound on the minimal finite field size required for the constructions, thereby obtaining a nontrivial lower bound on the secure computing capacity.

cs.IT

AIConfigurator: Lightning-Fast Configuration Optimization for Multi-Framework LLM Serving

Optimizing Large Language Model (LLM) inference in production systems is increasingly difficult due to dynamic workloads, stringent latency/throughput targets, and a rapidly expanding configuration space. This complexity spans not only distributed parallelism strategies (tensor/pipeline/expert) but also intricate framework-specific runtime parameters such as those concerning the enablement of CUDA graphs, available KV-cache memory fractions, and maximum token capacity, which drastically impact performance. The diversity of modern inference frameworks (e.g., TRT-LLM, vLLM, SGLang), each employing distinct kernels and execution policies, makes manual tuning both framework-specific and computationally prohibitive. We present AIConfigurator, a unified performance-modeling system that enables rapid, framework-agnostic inference configuration search without requiring GPU-based profiling. AIConfigurator combines (1) a methodology that decomposes inference into analytically modelable primitives - GEMM, attention, communication, and memory operations while capturing framework-specific scheduling dynamics; (2) a calibrated kernel-level performance database for these primitives across a wide range of hardware platforms and popular open-weights models (GPT-OSS, Qwen, DeepSeek, LLama, Mistral); and (3) an abstraction layer that automatically resolves optimal launch parameters for the target backend, seamlessly integrating into production-grade orchestration systems. Evaluation on production LLM serving workloads demonstrates that AIConfigurator identifies superior serving configurations that improve performance by up to 40% for dense models (e.g., Qwen3-32B) and 50% for MoE architectures (e.g., DeepSeek-V3), while completing searches within 30 seconds on average. Enabling the rapid exploration of vast design spaces - from cluster topology down to engine specific flags.

cs.LG

Numerical Analysis of 2D Stochastic Navier--Stokes Equations with Transport Noise: Regularity and Spatial Semidiscretization

This paper establishes strong convergence rates for the spatial finite element discretization of a two-dimensional stochastic Navier--Stokes system with transport noise and no-slip boundary conditions on a convex polygonal domain. The main challenge arises from the lack of spatial \(D(A)\)-regularity of the solution (where \(A\) is the Stokes operator), which prevents the application of standard error analysis techniques. Under a small-noise assumption, we prove that the weak solution satisfies \[ u \in L^2\bigl(\Omega; C([0,T]; \dot{H}_{\sigma}^{\varrho}) \cap L^2(0,T; \dot{H}_{\sigma}^{1+\varrho})\bigr) \] for some \(\varrho \in (0,\tfrac{1}{2})\). To address the low regularity in the numerical analysis, we introduce a novel smoothing operator \(J_{h,\alpha} = A_h^{\alpha}\mathcal{P}_h A^{-\alpha}\) with \(\alpha \in (0,1)\), where \(A_h\) is the discrete Stokes operator and \(\mathcal{P}_h\) the discrete Helmholtz projection. This tool enables a complete error analysis for a MINI-element spatial semidiscretization, yielding the mean-square convergence estimate \[ \|u - u_h\|_{L^2(\Omega; C([0,T]; L^2(\mathcal O;\mathbb{R}^2)))} + \|\nabla(u - u_h)\|_{L^2(\Omega \times (0,T); L^2(\mathcal{O};\mathbb{R}^{2\times2}))} \leqslant c\, h^{\varrho} \log\big(1 + \frac{1}{h}\big). \] The framework can be extended to broader stochastic fluid models with rough noise and Dirichlet boundary conditions.

math.NA

How do trout regulate patterns of muscle contraction to optimize propulsive efficiency during steady swimming

Understanding efficient fish locomotion offers insights for biomechanics, fluid dynamics, and engineering. Traditional studies often miss the link between neuromuscular control and whole-body movement. To explore energy transfer in carangiform swimming, we created a bio-inspired digital trout. This model combined multibody dynamics, Hill-type muscle modeling, and a high-fidelity fluid-structure interaction algorithm, accurately replicating a real trout's form and properties. Using deep reinforcement learning, the trout's neural system achieved hierarchical spatiotemporal control of muscle activation. We systematically examined how activation strategies affect speed and energy use. Results show that axial myomere coupling-with activation spanning over 0.5 body lengths-is crucial for stable body wave propagation. Moderate muscle contraction duration ([0.1,0.3] of a tail-beat cycle) lets the body and fluid act as a passive damping system, cutting energy use. Additionally, the activation phase lag of myomeres shapes the body wave; if too large, it causes antagonistic contractions that hinder thrust. These findings advance bio-inspired locomotion understanding and aid energy-efficient underwater system design.

physics.flu-dyn

Multi-pole solitons and breathers with spatially periodic modulation induced by the helicoidal spin-orbit coupling

We report analytical solutions for diverse multi-pole (MP) soliton and breather states in spatially inhomogeneous binary Bose-Einstein condensates (BECs) with the helicoidally shaped spin-orbit coupling (SOC), including MP stripe solitons on zero background, MP beating stripe solitons on a nonzero plane-wave background, as well as MP beating stripe solitons and MP breathers on periodic backgrounds. The results indicate that modulation effects produced by the helicoidal SOC not only induce stripe patterns in MP solitons, but also generate the spatially-periodic background for the MP beating stripe solitons and breathers. An asymptotic analysis reveals curved trajectories with a logarithmically increasing soliton/breather separation for these MP excitations, fundamentally distinguishing them from periodic trajectories of bound-state solitons/breathers or straight trajectories of conventional multi-soliton/breather sets. With complex periodic structures in individual components, the total density distribution is nonperiodic, due to their configurations which are out-of-phase with respect to the two components. We further examine several degenerate structures of MP solitons and breathers under varying SOC and spectral parameters. Numerical simulations validate the analytical results and demonstrate stability of these MP excitations. These findings may facilitate deeper understanding of soliton/breather interactions beyond conventional multi-soliton systems and bound-state complexes in SOC BEC.

nlin.PS

"Give a Positive Review Only": An Early Investigation Into In-Paper Prompt Injection Attacks and Defenses for AI Reviewers

With the rapid advancement of AI models, their deployment across diverse tasks has become increasingly widespread. A notable emerging application is leveraging AI models to assist in reviewing scientific papers. However, recent reports have revealed that some papers contain hidden, injected prompts designed to manipulate AI reviewers into providing overly favorable evaluations. In this work, we present an early systematic investigation into this emerging threat. We propose two classes of attacks: (1) static attack, which employs a fixed injection prompt, and (2) iterative attack, which optimizes the injection prompt against a simulated reviewer model to maximize its effectiveness. Both attacks achieve striking performance, frequently inducing full evaluation scores when targeting frontier AI reviewers. Furthermore, we show that these attacks are robust across various settings. To counter this threat, we explore a simple detection-based defense. While it substantially reduces the attack success rate, we demonstrate that an adaptive attacker can partially circumvent this defense. Our findings underscore the need for greater attention and rigorous safeguards against prompt-injection threats in AI-assisted peer review.

cs.CL

GAS-MIL: Group-Aggregative Selection Multi-Instance Learning for Ensemble of Foundation Models in Digital Pathology Image Analysis

Foundation models (FMs) have transformed computational pathology by providing powerful, general-purpose feature extractors. However, adapting and benchmarking individual FMs for specific diagnostic tasks is often time-consuming and resource-intensive, especially given their scale and diversity. To address this challenge, we introduce Group-Aggregative Selection Multi-Instance Learning (GAS-MIL), a flexible ensemble framework that seamlessly integrates features from multiple FMs, preserving their complementary strengths without requiring manual feature selection or extensive task-specific fine-tuning. Across classification tasks in three cancer datasets-prostate (PANDA), ovarian (UBC-OCEAN), and breast (TCGA-BrCa)-GAS-MIL consistently achieves superior or on-par performance relative to individual FMs and established MIL methods, demonstrating its robustness and generalizability. By enabling efficient integration of heterogeneous FMs, GAS-MIL streamlines model deployment for pathology and provides a scalable foundation for future multimodal and precision oncology applications.

cs.CV

FreeCus: Free Lunch Subject-driven Customization in Diffusion Transformers

In light of recent breakthroughs in text-to-image (T2I) generation, particularly with diffusion transformers (DiT), subject-driven technologies are increasingly being employed for high-fidelity customized production that preserves subject identity from reference inputs, enabling thrilling design workflows and engaging entertainment. Existing alternatives typically require either per-subject optimization via trainable text embeddings or training specialized encoders for subject feature extraction on large-scale datasets. Such dependencies on training procedures fundamentally constrain their practical applications. More importantly, current methodologies fail to fully leverage the inherent zero-shot potential of modern diffusion transformers (e.g., the Flux series) for authentic subject-driven synthesis. To bridge this gap, we propose FreeCus, a genuinely training-free framework that activates DiT's capabilities through three key innovations: 1) We introduce a pivotal attention sharing mechanism that captures the subject's layout integrity while preserving crucial editing flexibility. 2) Through a straightforward analysis of DiT's dynamic shifting, we propose an upgraded variant that significantly improves fine-grained feature extraction. 3) We further integrate advanced Multimodal Large Language Models (MLLMs) to enrich cross-modal semantic representations. Extensive experiments reflect that our method successfully unlocks DiT's zero-shot ability for consistent subject synthesis across diverse contexts, achieving state-of-the-art or comparable results compared to approaches that require additional training. Notably, our framework demonstrates seamless compatibility with existing inpainting pipelines and control modules, facilitating more compelling experiences. Our code is available at: https://github.com/Monalissaa/FreeCus.

cs.CV

Learnable Retrieval Enhanced Visual-Text Alignment and Fusion for Radiology Report Generation

Automated radiology report generation is essential for improving diagnostic efficiency and reducing the workload of medical professionals. However, existing methods face significant challenges, such as disease class imbalance and insufficient cross-modal fusion. To address these issues, we propose the learnable Retrieval Enhanced Visual-Text Alignment and Fusion (REVTAF) framework, which effectively tackles both class imbalance and visual-text fusion in report generation. REVTAF incorporates two core components: (1) a Learnable Retrieval Enhancer (LRE) that utilizes semantic hierarchies from hyperbolic space and intra-batch context through a ranking-based metric. LRE adaptively retrieves the most relevant reference reports, enhancing image representations, particularly for underrepresented (tail) class inputs; and (2) a fine-grained visual-text alignment and fusion strategy that ensures consistency across multi-source cross-attention maps for precise alignment. This component further employs an optimal transport-based cross-attention mechanism to dynamically integrate task-relevant textual knowledge for improved report generation. By combining adaptive retrieval with multi-source alignment and fusion, REVTAF achieves fine-grained visual-text integration under weak image-report level supervision while effectively mitigating data imbalance issues. The experiments demonstrate that REVTAF outperforms state-of-the-art methods, achieving an average improvement of 7.4% on the MIMIC-CXR dataset and 2.9% on the IU X-Ray dataset. Comparisons with mainstream multimodal LLMs (e.g., GPT-series models), further highlight its superiority in radiology report generation https://github.com/banbooliang/REVTAF-RRG.

stat.ME

Semantic-guided Masked Mutual Learning for Multi-modal Brain Tumor Segmentation with Arbitrary Missing Modalities

Malignant brain tumors have become an aggressive and dangerous disease that leads to death worldwide.Multi-modal MRI data is crucial for accurate brain tumor segmentation, but missing modalities common in clinical practice can severely degrade the segmentation performance. While incomplete multi-modal learning methods attempt to address this, learning robust and discriminative features from arbitrary missing modalities remains challenging. To address this challenge, we propose a novel Semantic-guided Masked Mutual Learning (SMML) approach to distill robust and discriminative knowledge across diverse missing modality scenarios.Specifically, we propose a novel dual-branch masked mutual learning scheme guided by Hierarchical Consistency Constraints (HCC) to ensure multi-level consistency, thereby enhancing mutual learning in incomplete multi-modal scenarios. The HCC framework comprises a pixel-level constraint that selects and exchanges reliable knowledge to guide the mutual learning process. Additionally, it includes a feature-level constraint that uncovers robust inter-sample and inter-class relational knowledge within the latent feature space. To further enhance multi-modal learning from missing modality data, we integrate a refinement network into each student branch. This network leverages semantic priors from the Segment Anything Model (SAM) to provide supplementary information, effectively complementing the masked mutual learning strategy in capturing auxiliary discriminative knowledge. Extensive experiments on three challenging brain tumor segmentation datasets demonstrate that our method significantly improves performance over state-of-the-art methods in diverse missing modality settings.

stat.ME

Advancing Medical Image Segmentation via Self-supervised Instance-adaptive Prototype Learning

Medical Image Segmentation (MIS) plays a crucial role in medical therapy planning and robot navigation. Prototype learning methods in MIS focus on generating segmentation masks through pixel-to-prototype comparison. However, current approaches often overlook sample diversity by using a fixed prototype per semantic class and neglect intra-class variation within each input. In this paper, we propose to generate instance-adaptive prototypes for MIS, which integrates a common prototype proposal (CPP) capturing common visual patterns and an instance-specific prototype proposal (IPP) tailored to each input. To further account for the intra-class variation, we propose to guide the IPP generation by re-weighting the intermediate feature map according to their confidence scores. These confidence scores are hierarchically generated using a transformer decoder. Additionally we introduce a novel self-supervised filtering strategy to prioritize the foreground pixels during the training of the transformer decoder. Extensive experiments demonstrate favorable performance of our method.

stat.ME

ELBO-T2IAlign: A Generic ELBO-Based Method for Calibrating Pixel-level Text-Image Alignment in Diffusion Models

Diffusion models excel at image generation. Recent studies have shown that these models not only generate high-quality images but also encode text-image alignment information through attention maps or loss functions. This information is valuable for various downstream tasks, including segmentation, text-guided image editing, and compositional image generation. However, current methods heavily rely on the assumption of perfect text-image alignment in diffusion models, which is not the case. In this paper, we propose using zero-shot referring image segmentation as a proxy task to evaluate the pixel-level image and class-level text alignment of popular diffusion models. We conduct an in-depth analysis of pixel-text misalignment in diffusion models from the perspective of training data bias. We find that misalignment occurs in images with small-sized, occluded, or rare object classes. Therefore, we propose ELBO-T2IAlign--a simple yet effective method to calibrate pixel-text alignment in diffusion models based on the evidence lower bound (ELBO) of likelihood. ELBO-T2IAlign is training-free and generic: it requires no additional annotations, model retraining, or architectural modifications, and it can be directly applied to different diffusion backbones. Extensive experiments on zero-shot referring image segmentation, text-guided image editing, and compositional image generation verify that the proposed calibration improves pixel-text alignment across complementary downstream tasks.

cs.CV

Hua-Chen New Theory of Economic Optimization

Between 1957-1985, Chinese mathematician Loo-Keng Hua pioneered economic optimization theory through three key contributions: establishing economic stability's fundamental theorem, proving the uniqueness of equilibrium solutions in economic systems, and developing a consumption-integrated model 50 days before his death. Since 1988, Mu-Fa Chen has been working on Hua's theory. He introduced stochastics, namely Markov chains, to economic optimization theory. He updated and developed Hua's model and came up with a new model (Chen's model) which has become the starting point of a new economic optimization theory. Chen's theory can be applied to economic stability test, bankruptcy prediction, product ranking and classification, economic prediction and adjustment, economic structure optimization. Chen's theory can also provide efficient algorithms that are programmable and intelligent. {Stochastics} is the cornerstone of Chen's theory. There is no overlap between Chen's theory, and the existing mathematical economy theory and the economics developments that were awarded Nobel Prizes in Economics between 1969 and 2024. The distinguished features of Chen's theory from the existing theories are quantitative, calculable, predictable, optimizable, programmable and can be intelligent. This survey provides a theoretical overview of the newly published monograph \cite{5rw24}. Specifically, the invariant of the economic structure matrix, also known as the Chen's invariant, was first published in this survey.

econ.TH

Beating stripe solitons arising from helicoidal spin-orbit coupling in Bose-Einstein condensates

We demonstrate that the model of a spatially non-uniform two-component Bose-Einstein condensate (BEC) featuring the helicoidal spin-orbit coupling (SOC), gives rise to dark-bright soliton complexes characterized by spatiotemporal periodic oscillations in each component. These solitons are formed by the superposition of dark and bright ones, and exhibit a beating state over time and a striped state across space, earning them the designation of beating stripe solitons. Our analysis demonstrates that helicoidal SOC significantly affects the formation and dynamical properties of these solitons, also serving as the primary driver for spin oscillations. Through the nonlinear superposition of the beating stripe solitons, a range of intricate scenarios of the interaction between multiple solitons emerges, including head-on collisions, bound states, and parallel states.

cond-mat.quant-gas