Source author record

Zhen Fang

Zhen Fang appears in the imported research catalog. Authorship, coauthor and topic links are available while profile ownership is still unclaimed.

ResearcherUnclaimed source record

Catalog footprint

What is connected

23works
12topics
4close collaborators

Actions

Connect this record

Log in to claim

Research graph

See the researcher in context

Open full explorer

Inspect adjacent papers, topics, institutions and collaborators without losing the researcher page.

Building this map preview

BZPEER is loading the nearby papers, people, topics and institutions for this page.

Published work

23 published item(s)

preprint2026arXiv

Flow-OPD: On-Policy Distillation for Flow Matching Models

Existing Flow Matching (FM) text-to-image models suffer from two critical bottlenecks under multi-task alignment: the reward sparsity induced by scalar-valued rewards, and the gradient interference arising from jointly optimizing heterogeneous objectives, which together give rise to a 'seesaw effect' of competing metrics and pervasive reward hacking. Inspired by the success of On-Policy Distillation (OPD) in the large language model community, we propose Flow-OPD, the first unified post-training framework that integrates on-policy distillation into Flow Matching models. Flow-OPD adopts a two-stage alignment strategy: it first cultivates domain-specialized teacher models via single-reward GRPO fine-tuning, allowing each expert to reach its performance ceiling in isolation; it then establishes a robust initial policy through a Flow-based Cold-Start scheme and seamlessly consolidates heterogeneous expertise into a single student via a three-step orchestration of on-policy sampling, task-routing labeling, and dense trajectory-level supervision. We further introduce Manifold Anchor Regularization (MAR), which leverages a task-agnostic teacher to provide full-data supervision that anchors generation to a high-quality manifold, effectively mitigating the aesthetic degradation commonly observed in purely RL-driven alignment. Built upon Stable Diffusion 3.5 Medium, Flow-OPD raises the GenEval score from 63 to 92 and the OCR accuracy from 59 to 94, yielding an overall improvement of roughly 10 points over vanilla GRPO, while preserving image fidelity and human-preference alignment and exhibiting an emergent 'teacher-surpassing' effect. These results establish Flow-OPD as a scalable alignment paradigm for building generalist text-to-image models. The codes and weights will be released in: https://github.com/CostaliyA/Flow-OPD .

preprint2026arXiv

SaaSBench: Exploring the Boundaries of Coding Agents in Long-Horizon Enterprise SaaS Engineering

As autonomous coding agents become capable of handling increasingly long-horizon tasks, they have gradually demonstrated the potential to complete end-to-end software development. Although existing benchmarks have recently evolved from localized code editing to from-scratch project generation, they remain confined to structurally simplified, single-stack applications. Consequently, they fail to capture the heterogeneous environments, full-stack orchestration, and system-level complexity of real enterprise Software as a Service (SaaS) systems, leaving a critical gap in assessing agents under realistic engineering constraints. To fill this gap, we introduce SaaSBench, the first benchmark designed to explore the boundaries of AI agents in enterprise SaaS engineering. Spanning 30 complex tasks across 6 SaaS domains with 5,370 validation nodes, it incorporates 8 programming languages, 6 databases, and 13 frameworks to meticulously mirror real-world software heterogeneity. Furthermore, we design a dependency-aware hybrid evaluation paradigm tailored for complex systems with long horizons and multi-component coupling, enabling fine-grained, reproducible assessment. Crucially, our extensive experiments reveal a striking insight: the primary bottleneck for state-of-the-art agents is not generating isolated code logic, but successfully configuring and integrating a multi-component system. Over 95\% of task failures occur before agents even reach deep business logic, with models often falling victim to overconfidence and prematurely halting during foundational system setup, or getting trapped in ineffective debugging loops. We hope SaaSBench serves as a practical and challenging testbed to drive the evolution of reliable, system-level coding agents. The code is available at \url{https://github.com/ShadeCloak/SaaSbench}.

preprint2026arXiv

SCOPE: Structured Decomposition and Conditional Skill Orchestration for Complex Image Generation

While text-to-image models have made strong progress in visual fidelity, faithfully realizing complex visual intents remains challenging because many requirements must be tracked across grounding, generation, and verification. We refer to these requirements as semantic commitments and formalize their lifecycle discontinuity as the Conceptual Rift, where commitments may be locally resolved or checked but fail to remain identifiable as the same operational units throughout the generation lifecycle. To address this, we propose SCOPE, a specification-guided skill orchestration framework that maintains semantic commitments in an evolving structured specification and conditionally invokes retrieval, reasoning, and repair skills around unresolved or violated commitments. To evaluate commitment-level intent realization, we introduce Gen-Arena, a human-annotated benchmark with entity- and constraint-level specifications, together with Entity-Gated Intent Pass Rate (EGIP), a strict entity-first pass criterion. SCOPE substantially outperforms all evaluated baselines on Gen-Arena, achieving 0.60 EGIP, and further achieves strong results on WISE-V (0.907) and MindBench (0.61), demonstrating the effectiveness of persistent commitment tracking for complex image generation.

preprint2026arXiv

UniCorn: Towards Self-Improving Unified Multimodal Models through Self-Generated Supervision

While Unified Multimodal Models (UMMs) have achieved remarkable success in cross-modal comprehension, a significant gap persists in their ability to leverage such internal knowledge for high-quality generation. We formalize this discrepancy as Conduction Aphasia, a phenomenon where models accurately interpret multimodal inputs but struggle to translate that understanding into faithful and controllable synthesis. To address this, we propose UniCorn, a simple yet elegant self-improvement framework that eliminates the need for external data or teacher supervision. By partitioning a single UMM into three collaborative roles: Proposer, Solver, and Judge, UniCorn generates high-quality interactions via self-play and employs cognitive pattern reconstruction to distill latent understanding into explicit generative signals. To validate the restoration of multimodal coherence, we introduce UniCycle, a cycle-consistency benchmark based on a Text to Image to Text reconstruction loop. Extensive experiments demonstrate that UniCorn achieves comprehensive and substantial improvements over the base model across six general image generation benchmarks. Notably, it achieves SOTA performance on TIIF(73.8), DPG(86.8), CompBench(88.5), and UniCycle while further delivering substantial gains of +5.0 on WISE and +6.5 on OneIG. These results highlight that our method significantly enhances T2I generation while maintaining robust comprehension, demonstrating the scalability of fully self-supervised refinement for unified multimodal intelligence.

preprint2026arXiv

VideoSeeker: Incentivizing Instance-level Video Understanding via Native Agentic Tool Invocation

Large Vision-Language Models (LVLMs) have shown significant progress in video understanding, yet they face substantial challenges in tasks requiring precise spatiotemporal localization at the instance level. Existing methods primarily rely on text prompts for human-model interaction, but these prompts struggle to provide precise spatial and temporal references, resulting in poor user experience. Furthermore, current approaches typically decouple visual perception from language reasoning, centering reasoning around language rather than visual content, which limits the model's ability to proactively perceive fine-grained visual evidence. To address these challenges, we propose VideoSeeker, a novel paradigm for instance-level video understanding through visual prompts. VideoSeeker seamlessly integrates agentic reasoning with instance-level video understanding tasks, enabling the model to proactively perceive and retrieve relevant video segments on demand. We construct a four-stage fully automated data synthesis pipeline to efficiently generate large-scale, high-quality instance-level video data. We internalize tool-calling and proactive perception capabilities into the model via cold-start supervision and RL training, building a powerful video understanding model. Experiments demonstrate that our model achieves an average improvement of +13.7% over baselines on instance-level video understanding tasks, surpassing powerful closed-source models such as GPT-4o and Gemini-2.5-Pro, while also showing effective transferability on general video understanding benchmarks. The relevant datasets and code will be released publicly.

preprint2022arXiv

Correlations between the deconfining and chiral transitions in holographic QCD

We consider an improved soft-wall AdS/QCD model coupled to an Einstein-dilaton system, which offers a way to study the deconfining and chiral transitions simultaneously. The correlation between these two transitions has been investigated in detail in the Einstein-dilaton-scalar system with the bulk scalar field representing the vacuum of matters in the flavor sector of the model. We find that the effects of the scaling dimension $Δ$ of the dual operator of the dilaton manifest in chiral transitions, although the equation of state can all be matched with the two-flavor lattice results for $Δ=2.5, 3, 3.5$ in the decoupling case of $β=0$. In the weak-coupling case with smaller $β$, both the equation of state and the chiral transition exhibit a crossover behavior and turn into first-order phase transitions with the increase of $β$.

preprint2022arXiv

Multi-class Classification with Fuzzy-feature Observations: Theory and Algorithms

The theoretical analysis of multi-class classification has proved that the existing multi-class classification methods can train a classifier with high classification accuracy on the test set, when the instances are precise in the training and test sets with same distribution and enough instances can be collected in the training set. However, one limitation with multi-class classification has not been solved: how to improve the classification accuracy of multi-class classification problems when only imprecise observations are available. Hence, in this paper, we propose a novel framework to address a new realistic problem called multi-class classification with imprecise observations (MCIMO), where we need to train a classifier with fuzzy-feature observations. Firstly, we give the theoretical analysis of the MCIMO problem based on fuzzy Rademacher complexity. Then, two practical algorithms based on support vector machine and neural networks are constructed to solve the proposed new problem. Experiments on both synthetic and real-world datasets verify the rationality of our theoretical analysis and the efficacy of the proposed algorithms.

preprint2021arXiv

Clarinet: A One-step Approach Towards Budget-friendly Unsupervised Domain Adaptation

In unsupervised domain adaptation (UDA), classifiers for the target domain are trained with massive true-label data from the source domain and unlabeled data from the target domain. However, it may be difficult to collect fully-true-label data in a source domain given a limited budget. To mitigate this problem, we consider a novel problem setting where the classifier for the target domain has to be trained with complementary-label data from the source domain and unlabeled data from the target domain named budget-friendly UDA (BFUDA). The key benefit is that it is much less costly to collect complementary-label source data (required by BFUDA) than collecting the true-label source data (required by ordinary UDA). To this end, the complementary label adversarial network (CLARINET) is proposed to solve the BFUDA problem. CLARINET maintains two deep networks simultaneously, where one focuses on classifying complementary-label source data and the other takes care of the source-to-target distributional adaptation. Experiments show that CLARINET significantly outperforms a series of competent baselines.

preprint2020arXiv

Bridging the Theoretical Bound and Deep Algorithms for Open Set Domain Adaptation

In the unsupervised open set domain adaptation (UOSDA), the target domain contains unknown classes that are not observed in the source domain. Researchers in this area aim to train a classifier to accurately: 1) recognize unknown target data (data with unknown classes) and, 2) classify other target data. To achieve this aim, a previous study has proven an upper bound of the target-domain risk, and the open set difference, as an important term in the upper bound, is used to measure the risk on unknown target data. By minimizing the upper bound, a shallow classifier can be trained to achieve the aim. However, if the classifier is very flexible (e.g., deep neural networks (DNNs)), the open set difference will converge to a negative value when minimizing the upper bound, which causes an issue where most target data are recognized as unknown data. To address this issue, we propose a new upper bound of target-domain risk for UOSDA, which includes four terms: source-domain risk, $ε$-open set difference ($Δ_ε$), a distributional discrepancy between domains, and a constant. Compared to the open set difference, $Δ_ε$ is more robust against the issue when it is being minimized, and thus we are able to use very flexible classifiers (i.e., DNNs). Then, we propose a new principle-guided deep UOSDA method that trains DNNs via minimizing the new upper bound. Specifically, source-domain risk and $Δ_ε$ are minimized by gradient descent, and the distributional discrepancy is minimized via a novel open-set conditional adversarial training strategy. Finally, compared to existing shallow and deep UOSDA methods, our method shows the state-of-the-art performance on several benchmark datasets, including digit recognition (MNIST, SVHN, USPS), object recognition (Office-31, Office-Home), and face recognition (PIE).

preprint2020arXiv

Equation of state and chiral transition in soft-wall AdS/QCD with more realistic gravitational background

We construct an improved soft-wall AdS/QCD model with a cubic coupling term of the dilaton and the bulk scalar field. The background fields in this model are solved from the Einstein-dilaton system with a nontrivial dilaton potential, which has been shown to be able to reproduce the equation of state from lattice QCD with two flavors. The chiral transition behaviors are investigated in the improved soft-wall AdS/QCD model with the solved gravitational background, and the crossover transition can be realized. Our study provides a possibility to address the deconfining and chiral phase transitions simultaneously in the bottom-up holographic framework.

preprint2020arXiv

How does the Combined Risk Affect the Performance of Unsupervised Domain Adaptation Approaches?

Unsupervised domain adaptation (UDA) aims to train a target classifier with labeled samples from the source domain and unlabeled samples from the target domain. Classical UDA learning bounds show that target risk is upper bounded by three terms: source risk, distribution discrepancy, and combined risk. Based on the assumption that the combined risk is a small fixed value, methods based on this bound train a target classifier by only minimizing estimators of the source risk and the distribution discrepancy. However, the combined risk may increase when minimizing both estimators, which makes the target risk uncontrollable. Hence the target classifier cannot achieve ideal performance if we fail to control the combined risk. To control the combined risk, the key challenge takes root in the unavailability of the labeled samples in the target domain. To address this key challenge, we propose a method named E-MixNet. E-MixNet employs enhanced mixup, a generic vicinal distribution, on the labeled source samples and pseudo-labeled target samples to calculate a proxy of the combined risk. Experiments show that the proxy can effectively curb the increase of the combined risk when minimizing the source risk and distribution discrepancy. Furthermore, we show that if the proxy of the combined risk is added into loss functions of four representative UDA methods, their performance is also improved.

preprint2020arXiv

Learning from a Complementary-label Source Domain: Theory and Algorithms

In unsupervised domain adaptation (UDA), a classifier for the target domain is trained with massive true-label data from the source domain and unlabeled data from the target domain. However, collecting fully-true-label data in the source domain is high-cost and sometimes impossible. Compared to the true labels, a complementary label specifies a class that a pattern does not belong to, hence collecting complementary labels would be less laborious than collecting true labels. Thus, in this paper, we propose a novel setting that the source domain is composed of complementary-label data, and a theoretical bound for it is first proved. We consider two cases of this setting, one is that the source domain only contains complementary-label data (completely complementary unsupervised domain adaptation, CC-UDA), and the other is that the source domain has plenty of complementary-label data and a small amount of true-label data (partly complementary unsupervised domain adaptation, PC-UDA). To this end, a complementary label adversarial network} (CLARINET) is proposed to solve CC-UDA and PC-UDA problems. CLARINET maintains two deep networks simultaneously, where one focuses on classifying complementary-label source data and the other takes care of source-to-target distributional adaptation. Experiments show that CLARINET significantly outperforms a series of competent baselines on handwritten-digits-recognition and objects-recognition tasks.

preprint2016arXiv

A holographic model for the baryon octet

By adopting the nonlinear realization of chiral symmetry, a holographic model for the baryon octet is proposed. The mass spectra of the baryon octet and their low-lying excited states are calculated, which show good consistency with experiments. The couplings of pion to nucleons are derived in two gauges and are shown to be equivalent with each other. It also shows that only derivative couplings of pion to nucleons appear in this holographic model. The coupling constant is then calculated.

preprint2016arXiv

Chiral phase transition and meson spectrum in improved soft-wall AdS/QCD

We investigate in detail the chiral thermal transition of QCD in an improved soft-wall AdS/QCD model with a simply modified 5D conformal mass of the bulk scalar field. We also present a calculation in this model for the light meson spectra and other low-energy characteristic quantities including the pion form factor, the pi-rho coupling constant and the decay constants of pi, rho, a_1, which are shown to result in a good agreement with experimental data except for the pion decay constant. The thermal behavior of chiral condensate is studied. It is found that such a simply improved soft-wall model incorporates the crossover behavior of chiral thermal transition indicated by lattice simulations. The expected chiral transition temperature can be obtained.

preprint2016arXiv

Infrared-Improved Soft-wall AdS/QCD Model for Mesons

We construct and investigate an infrared-improved soft-wall AdS/QCD model for mesons. Both linear confinement and chiral symmetry breaking of low energy QCD are well characterized in such an infrared-improved soft-wall AdS/QCD model. The model enables us to obtain a more consistent numerical prediction for the mass spectra of resonance scalar, pseudoscalar, vector and axial-vector mesons. In particular, the predicted mass for the lightest ground state scalar meson shows a good agreement with the experimental data. The model also provides a remarkable check for the Gell-Mann-Oakes-Renner relation and a sensible result for the space-like pion form factor.

preprint2016arXiv

IR-improved Soft-wall AdS/QCD Model for Baryons

We construct an infrared-improved soft-wall AdS/QCD model for baryons by considering the infrared-modified 5D conformal mass and Yukawa coupling of the bulk baryon field. The model is also built by taking into account the parity-doublet pattern for the excited baryons. When taking the bulk vacuum structure of the meson field to be the one obtained consistently in the infrared-improved soft-wall AdS/QCD model for mesons, we arrive at a consistent prediction for the baryon mass spectrum in even and odd parity. The prediction shows a remarkable agreement with the experimental data. We also perform a calculation for the $ρ(a_1)$ meson-nucleon coupling constant and obtain a consistent result in comparison with the experimental data and many other models.

preprint2015arXiv

Chiral and Deconfining Phase Transitions from Holographic QCD Study

A first attempt to accommodate the chiral and deconfining phase transitions of QCD in the bottom-up holographic framework is given. We constrain the relation between dilaton field $ϕ$ and metric warp factor $A_e$ and get several reasonable models in the Einstein-Dilaton system. Using the potential reconstruction approach, we solve the corresponding gravity background. Then we fit the background-related parameters by comparing the equation of state with the two-flavor lattice QCD results. After that we study the temperature dependent behavior of Polyakov loop and chiral condensate under those background solutions. We find that the results are in good agreement with the two-flavor lattice results. All the studies about the equation of state, the Polyakov loop and the chiral condensate signal crossover behavior of the phase transitions, which is consistent with the current understanding on the QCD phase transitions with physical quark mass. Furthermore, the extracted transition temperatures are comparable with the two-flavor lattice QCD results.

preprint2015arXiv

Chiral Phase Transition in the Soft-Wall Model of AdS/QCD

We investigate the chiral phase transition in the soft-wall model of AdS/QCD at zero chemical potential for two-flavor and three-flavor cases, respectively. We show that there is no spontaneous chiral symmetry breaking in the original soft-wall model. After detailed analysis, we find that in order to realize chiral symmetry breaking and restoration, both profiles for the scalar potential and the dilaton field are essential. The scalar potential determines the possible solution structure of the chiral condensate, except the mass term, it takes another quartic term for the two-flavor case, and for the three-flavor case, one has to take into account an extra cubic term due to the t'Hooft determinant interaction. The profile of the dilaton field reflects the gluodynamics, which is negative at a certain ultraviolet scale and approaches positive quadratic behavior at far infrared region. With this set-up, the spontaneous chiral symmetry breaking in the vacuum and its restoration at finite temperature can be realized perfectly. In the two-flavor case, it gives a second order chiral phase transition in the chiral limit, while the transition turns to be a crossover for any finite quark mass. In the case of three-flavor, the phase transition becomes a first order one in the chiral limit, while above sufficient large quark mass it turns to be a crossover again. This scenario agrees exactly with the current understanding on chiral phase transition from lattice QCD and other effective model studies.

preprint2015arXiv

Realization of chiral symmetry breaking and restoration in holographic QCD

With proper profiles of the scalar potential and the dilaton field, for the first time, the spontaneous chiral symmetry breaking in the vacuum and its restoration at finite temperature are correctly realized in the holographic QCD framework. In the chiral limit, a nonzero chiral condensate develops in the vacuum and decreases with temperature, and the phase transition is of 2nd order for two-flavor case and of 1st order for three-flavor case. In the case of explicit chiral symmetry breaking, in two-flavor case, the 2nd order phase transition turns to crossover with any nonzero current quark mass, and in three-flavor case, the 1st order phase transition turns to crossover at a finite current quark mass. The correct description of chiral symmetry breaking and restoration makes the holographic QCD models more powerful in dealing with non-perturbative QCD phenomena. This framework can be regarded as a general set up in application of AdS/CFT to describe conventional Ginzburg-Landau-Wilson type phase transitions, e.g. in condensed matter and cosmology systems.

preprint2014arXiv

Thermal Spectral Function and Deconfinement Temperature in Bulk Holographic AdS/QCD with Back Reaction of Bulk Vacuum

Based on the IR-improved bulk holographic AdS/QCD model which provides a consistent prediction for the mass spectra of resonance scalar, pseudoscalar, vector and axial vector mesons, we investigate its finite temperature behavior. By analyzing the spectral function of mesons and fitting it with a Breit-Wigner form, we perform an analysis for the critical temperature of mesons. The back-reaction effects of bulk vacuum are considered, the thermal mass spectral function of resonance mesons is calculated based on the back-reaction improved action. A reasonable melting temperature is found to be $T_c \simeq 150 \pm 7$ MeV, which is consistent with the recent results from lattice QCD simulations.

preprint2013arXiv

Asymmetric superradiant scattering and abnormal mode amplification induced by atomic density distortion

The superradiant Rayleigh scattering using a pump laser incident along the short axis of a Bose-Einstein condensate with a density distortion is studied, where the distortion is formed by shocking the condensate utilizing the residual magnetic force after the switching-off of the trapping potential. We find that very small variation of the atomic density distribution would induce remarkable asymmetrically populated scattering modes by the matter-wave superradiance with long time pulse. The optical field in the diluter region of the atomic cloud is more greatly amplified, which is not an ordinary mode amplification with the previous cognition. Our numerical simulations with the density envelop distortion are consistent with the experimental results. This supplies a useful method to reflect the geometric symmetries of the atomic density profile by the superradiance scattering.

preprint2013arXiv

Density Operator Description of Atomic Ordered Spatial Modes in Cavity QED

We present a quantum Monte-Carlo simulation for a pumped atom in a strong coupling cavity with dissipation, where two ordered spatial modes are formed for the atomic probability density, with the peaks distributed either only in the odd sites or only in the even ones of the lattice formed by the cavity field. A mixed state density operator model, which describes the coupling between different atomic spatial modes and the corresponding cavity field components, is proposed, which goes beyond the pure state interpretation. We develop a new decomposition treatment to derive the atomic spatial modes as well as the cavity field statistics from the simulation results for the steady state. With this treatment, we also investigate the dynamical process for the probabilities of the atomic spatial modes in the adiabatic limit. According to the analysis of the fitting error between the simulation results and the density operator model, the latter is a good description for the system.

preprint2011arXiv

Laser driving of Superradiant scattering at variable incidence angle

We study superradiant scattering from a Bose-Einstein condensate using a pump laser incident at variable angle and show the presence of asymmetrically populated scattering modes. Experimental data reveal that the direction of the pump laser plays a significant role in the formation of this asymmetry, result which is in good agreement with numerical simulations based on coupled Maxwell-Schrödinger equations. Our study complements the gap of previous work in which the pump laser was only applied along the short axis or the long axis of a condensate, and extends our knowledge about cooperative scattering processes.