SearcharxivSearch

arXiv subjects

Mengfei Zhao

Publications and source records attributed to Mengfei Zhao.

11 recordsLinked to original sources

Rectify Then Diffuse: Disentangling Concepts Before Denoising Trajectory Unfolds

Text-to-image diffusion models can generate individual concepts well, but they often omit or merge concepts incorrectly with multiple concepts. We trace these failures to an early coordination bottleneck: before denoising begins, prompt-conditioned attention may allocate different concepts to strongly overlapping spatial support, which can keep their attention coupled as denoising proceeds. This observation motivates treating compositional generation as a boundary-condition problem rather than repeatedly controlling the evolving trajectory. To this end, we propose Rectify-then-Diffuse (RTD), a training-free framework that rectifies the initial allocation once before standard denoising. Firstly, we propose Soft-Overlap Disentanglement (SOD), which converts normalized overlap between pilot concept maps into a differentiable and layout-agnostic separation objective. Secondly, we introduce Isotropic Gradient Rectification (IGR), which normalizes the SOD gradient and applies a bounded latent displacement with a consistent scale across prompts and initializations. Extensive experiments show that RTD achieves state-of-the-art compositional fidelity and robust gains. On the AE-Bench object pair subset, RTD improves BLIP-VQA by 45.8% and ImageReward by 19.6% over CO3 while running 2.3$\times$ faster. Code will be released at https://github.com/Z-yiwei/rectify-then-diffuse

cs.CV

One Knob to Rule Them All: A Unified Optimal Transport View of Cold-Start Active Learning

Cold-Start Active Learning (CSAL) aims to select a valuable subset from an unlabeled pool without any prior knowledge or human assistance. Existing methods take diverse routes based on typicality, coverage, or diversity. Each rests on its own inductive bias and therefore performs well on some tasks yet poorly on others. We argue that the real challenge is not to design yet another selection heuristic, but to make CSAL adapt automatically to the data and task at hand. To this end, we revisit CSAL through the lens of optimal transport. First, we propose a generalized transport selection framework that reveals the shared allocation structure of existing methods and exactly subsumes representative formulations. Second, we introduce a theoretical analysis that characterizes the trade-off controlled by entropic regularization and establishes a task-agnostic minimax bound for cold-start selection. These results provide a principled foundation for adapting the regularization strength to the unlabeled data. Third, we derive a data-adaptive regularization rule and present a novel Sinkhorn-based CSAL algorithm, termed $\epsilon$-Adaptive Selection ($\epsilon$-AS). Extensive experiments on six public datasets and multiple annotation budgets show that $\epsilon$-AS consistently achieves state-of-the-art performance. On ImageNet-1k, it improves the average accuracy over ActiveFT by 1.29% while reducing selection time by 56.2%. Code will be released at https://github.com/Z-yiwei/OT-CSAL

cs.AI

AXIS: A Growable Community-Driven Data Engine for Scalable Robot Manipulation

Learning effective robot manipulation policies requires diverse, high-quality demonstrations, yet existing data pipelines are often difficult to scale because they rely on specialized hardware, centralized operators, or fixed task suites. We present AXIS, a growable community-driven data engine and benchmark for scalable robot learning, which enables browser-based teleoperation for large-scale demonstration collection, automatically generates and validates new manipulation tasks, and transforms community-collected demonstrations into training-ready data through automated success checking, quality filtering, trajectory smoothing, and visual and physics-based augmentation. The AXIS dataset currently contains 207 diverse tasks and 50K+ trajectories. Meanwhile, AXIS organizes data into task snapshots and evaluates policies with a systematic held-out protocol. We compare vision-language-action (VLA) policies under a unified AXIS evaluation suite and analyze scaling behavior across different data volumes. Continual pretraining on AXIS substantially improves the overall success rate of $\pi_{0.5}$ by 5.8%, outperforms the model pretrained on RoboCasa365 by 37.3%, and exhibits consistent scaling with increasing data volume, with the largest gains observed under layout, sensor-noise, and camera perturbations.

cs.RO

Study on the Cabibbo-favored ${\overline B}_{d,s}$ ${\to}$ $D_{d,s}^{(*)+}S^{-}$ weak decays in QCD factorization

Motivated by recent experimental progress and theoretical developments, we investigate the Cabibbo-favored $b\to c$ governed ${\overline B}_{d,s}$ ${\to}$ $D_{d,s}^{(*)+}S^{-}$~($S$$=$$K_0^*(1430)$, $a_0(1450)$) weak decays by considering the next-to-leading (NLO) contributions within QCDF framework. With the updated values of $B_{(s)}\to D_{(s)}^{(*)}$ transition form factors obtained from a covariant light-front quark model, branching ratios are estimated in two scenarios for scalar mesons. It is found that the branching ratios for ${\overline B}^0{\to}D^{+}{a_0^-}$ and ${\overline B}_{s}^0{\to}D_{s}^{+}{a_0^-}$ decays can reach up to the order of ${\cal O}(10^{-4})$ in scenario-2 by assuming that the scalar mesons are lowest-lying p-wave states, which deserve high-priority experimental searches and may be observed in the ongoing LHCb and SuperKEKB experiments.

hep-ph

APEX: Adaptive Policy Execution for Precise Manipulation

Modern imitation learning methods, including visuomotor and Vision-Language-Action (VLA) policies, typically output high-level action references that are executed by low-level controllers. However, the absence of higher-order reference signals, together with the policy's lack of awareness of the underlying low-level control dynamics during training, inevitably induces an execution gap. As a result, realized actions deviate systematically from policy-commanded ones, with a critical impact on precision-sensitive manipulation. Prior work either modifies the policy architecture or the low-level controller, both requiring intrusive changes to the pretrained policy or packaged controller. This raises a natural question: when the policy and controller are both treated as inaccessible black boxes, can we bridge the execution gap? We propose Adaptive Policy Execution (APEX), a plug-and-play framework inserted between the policy and the controller that reconstructs a dynamically feasible reference from policy outputs and adapts at test-time according to low-level state feedback, with a provable convergence guarantee. Extensive empirical studies show that APEX reduces controller-induced tracking error by 41.2% on demonstration replay and improves manipulation success by 4.8--25.8 percentage points across four visuomotor and VLA policy classes.

cs.RO

Ample groupoids that are neither almost finite nor purely infinite

We study a question of Matui and varations of it on minimal ample groupoids that are neither almost finite nor purely infinite. We first observe that there are already effective minimal ample transformation groupoids that are neither almost finite nor purely infinite. These groupoids can even be chosen to be amenable. Then we construct essentially principle ample groupoids that are neither almost finite nor purely infinite. These are based on the recent twisted topological groupoid construction of Palmer and Wu. In particular our new examples do not arise from transformation groupoids.

math.DS

TensorNEAT: A GPU-accelerated Library for NeuroEvolution of Augmenting Topologies

The NeuroEvolution of Augmenting Topologies (NEAT) algorithm has received considerable recognition in the field of neuroevolution. Its effectiveness is derived from initiating with simple networks and incrementally evolving both their topologies and weights. Although its capability across various challenges is evident, the algorithm's computational efficiency remains an impediment, limiting its scalability potential. To address these limitations, this paper introduces TensorNEAT, a GPU-accelerated library that applies tensorization to the NEAT algorithm. Tensorization reformulates NEAT's diverse network topologies and operations into uniformly shaped tensors, enabling efficient parallel execution across entire populations. TensorNEAT is built upon JAX, leveraging automatic function vectorization and hardware acceleration to significantly enhance computational efficiency. In addition to NEAT, the library supports variants such as CPPN and HyperNEAT, and integrates with benchmark environments like Gym, Brax, and gymnax. Experimental evaluations across various robotic control environments in Brax demonstrate that TensorNEAT delivers up to 500x speedups compared to existing implementations, such as NEAT-Python. The source code for TensorNEAT is publicly available at: https://github.com/EMI-Group/tensorneat.

cs.NE

Embedding groups into boundedly acyclic groups

We show that the \s{\phi}-labeled Thompson groups and the twisted Brin--Thompson groups are boundedly acyclic. This allows us to prove several new embedding results for groups. First, every group of type $F_n$ embeds quasi-isometrically into a boundedly acyclic group of type $F_n$ that has no proper finite index subgroups. This improves a result of Bridson and a theorem of Fournier-Facio--L\"oh--Moraschini. Second, every group of type $F_n$ embeds quasi-isometrically into a $5$-uniformly perfect group of type $F_n$. Third, using Belk--Zaremsky's construction of twisted Brin--Thompson groups, we show that every finitely generated group embeds quasi-isometrically into a finitely generated boundedly acyclic simple group. We also partially answer some questions of Brothier and Tanushevski regarding the finiteness property of $\phi$-labeled Thompson group $V_\phi(G)$ and $F_\phi(G)$.

math.GR

Tensorized NeuroEvolution of Augmenting Topologies for GPU Acceleration

The NeuroEvolution of Augmenting Topologies (NEAT) algorithm has received considerable recognition in the field of neuroevolution. Its effectiveness is derived from initiating with simple networks and incrementally evolving both their topologies and weights. Although its capability across various challenges is evident, the algorithm's computational efficiency remains an impediment, limiting its scalability potential. In response, this paper introduces a tensorization method for the NEAT algorithm, enabling the transformation of its diverse network topologies and associated operations into uniformly shaped tensors for computation. This advancement facilitates the execution of the NEAT algorithm in a parallelized manner across the entire population. Furthermore, we develop TensorNEAT, a library that implements the tensorized NEAT algorithm and its variants, such as CPPN and HyperNEAT. Building upon JAX, TensorNEAT promotes efficient parallel computations via automated function vectorization and hardware acceleration. Moreover, the TensorNEAT library supports various benchmark environments including Gym, Brax, and gymnax. Through evaluations across a spectrum of robotics control environments in Brax, TensorNEAT achieves up to 500x speedups compared to the existing implementations such as NEAT-Python. Source codes are available at: https://github.com/EMI-Group/tensorneat.

cs.NE

Study of the nonleptonic charmless $B$ ${\to}$ $SS$ decays with the QCD factorization approach

Inspired by the brilliant prospects of the ongoing $B$ meson experiments, the hadronic charmless $B$ ${\to}$ $SS$ decays are studied by considering the next-to-leading (NLO) contributions with the QCD factorization approach, where $S$ denotes the scalar mesons $K_{0}^{\ast}(1430)$ and $a_{0}(1450)$. Branching ratios and $CP$ violating asymmetries are estimated with the updated values of hadronic parameters obtained from a covariant light-front quark model, for two scenarios where the scalar mesons are the $1^{3}P_{0}$ and $2^{3}P_{0}$ states. It is found that the NLO contributions are very important for the $B$ ${\to}$ $SS$ decays; For the $B$ ${\to}$ $a_{0}(1450)K_{0}^{\ast}(1430)$ and $B_{s}$ ${\to}$ $K_{0}^{\ast}(1430)\overline{K}_{0}^{\ast}(1430)$ decays, branching ratios can reach up to the order of ${\cal O}(10^{-5})$ by assuming that the scalar mesons are the $1P$ states, and should first be investigated in the future experiments.

hep-ph

Study of $ B_{u,d,s} \to K_0^*(1430) P $ and $K_0^*(1430) V$ decays within QCD factorization

We study the nonleptonic charmless $B_{u,d,s} \to K_0^*(1430)P$ $(P=K\,, π)$ and $ K_0^*(1430)V$ $ (V=K^*\,, ρ\,, ω\,, ϕ)$ decays. The amplitudes are calculated within the QCD factorization, and the non-perturbative quantities are evaluated by using a covariant light-front approach. The branching fractions and CP asymmetries of theses decay modes are calculated, some decay modes are first predicted, and some useful relations based on $SU(3)$ flavor symmetry are discussed. Comparing the theoretical results with the current available experimental data, it is found that $K_0^*(1430)$ can be described as the lowest-lying p-wave $(s,u/d)$ state rather than the first excited one.

hep-ph